-
Notifications
You must be signed in to change notification settings - Fork 5
/
Torrent.m
216 lines (191 loc) · 6.66 KB
/
Torrent.m
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
/******************************************************************************
* Nativa - MacOS X UI for rtorrent
* http://www.aramzamzam.net
*
* Copyright Solomenchuk V. 2010.
* Solomenchuk Vladimir <[email protected]>
*
* Licensed under the GPL, Version 3.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.gnu.org/licenses/gpl-3.0.html
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*****************************************************************************/
#import "Torrent.h"
#import "NativaConstants.h"
#import "BEncoding.h"
#import "FileListNode.h"
@implementation Torrent
@synthesize name,
size,
thash,
state,
speedDownload,
speedUpload,
dataLocation,
uploadRate,
downloadRate,
totalPeersSeed,
totalPeersLeech,
totalPeersDisconnected,
priority,
isFolder,
error,
groupName,
file,
trackers,
flatFileList,
comment;
+ (id)torrentWithData:(NSData *) encodedData
{
Torrent *result = [[Torrent alloc] init];
id decodedData = [BEncoding objectFromEncodedData:encodedData withTypeAdvisor:(GEBEncodedTypeAdvisor)^(NSArray *keyStack) {
if ([[keyStack lastObject] isEqualToString:@"pieces"])
return GEBEncodedDataType;
else if ([[keyStack lastObject] isEqualToString:@"info"])
return GEBEncodedDataType;
else {
return GEBEncodedStringType;
}
}];
NSData *info = [decodedData valueForKey:@"info"];
result.name = [info valueForKey:@"name"];
result.size = [[info valueForKey:@"length"] integerValue];
NSArray* fileNames = [info valueForKey:@"files"];
FileListNode *root;
NSMutableArray* flatFiles = [NSMutableArray arrayWithCapacity:[fileNames count]];
uint64_t torrentSize = 0;
if (fileNames != nil)
{
NSMutableDictionary *folders = [NSMutableDictionary dictionary];
root = [[FileListNode alloc] initWithFolderName:result.name path:result.name];
int fileIndex = 0;
for (NSDictionary *f in fileNames)
{
FileListNode *parent = root;
NSArray *fileList = [f valueForKey:@"path"];
NSString *fileName = [fileList lastObject];
uint64_t fileSize = [[f valueForKey:@"length"] unsignedLongLongValue];
torrentSize += fileSize;
for (NSString *pe in fileList)
{
NSString *path = [NSString stringWithFormat:@"%@/%@", [parent path], pe];
if (pe == fileName)
{
FileListNode *file = [[FileListNode alloc] initWithFileName:fileName
path: path
size: fileSize
index: fileIndex];
[parent insertChild:file];
[flatFiles addObject:file];
[file release];
}
else
{
FileListNode *folder = [folders objectForKey:path];
if (folder == nil)
{
folder = [[FileListNode alloc] initWithFolderName:pe path:path];
[parent insertChild:folder];
parent = folder;
[folders setObject:folder forKey:path];
[folder release];
}
}
}
fileIndex++;
}
}
else
{
root = [[FileListNode alloc] initWithFileName:result.name
path: result.name
size: result.size
index: 0];
[flatFiles addObject:root];
}
result.size += torrentSize;
result.file = root;
result.flatFileList = flatFiles;
[root release];
NSString *trackerUrl = [decodedData valueForKey:@"announce"];
NSMutableArray *trackersList = trackerUrl == nil?nil:[NSMutableArray arrayWithObjects:
trackerUrl,
nil];
NSArray *trackerUrls = [decodedData valueForKey:@"announce-list"];
if (trackerUrls != nil)
{
if (trackersList == nil)
trackersList = [NSMutableArray arrayWithArray:trackerUrls];
else
[trackersList addObjectsFromArray:trackerUrls];
}
result.trackers = trackersList;
result.comment = [decodedData valueForKey:@"comment"];
return [result autorelease];
}
- (void)dealloc
{
[self setName:nil];
[self setThash:nil];
[_icon release];
[self setDataLocation:nil];
[self setError:nil];
[self setGroupName:nil];
[self setTrackers:nil];
[self setFile:nil];
[self setFlatFileList:nil];
[self setComment:nil];
[super dealloc];
}
- (NSUInteger)hash;
{
return [thash hash];
}
- (BOOL)isEqual:(id)anObject
{
if ([anObject isKindOfClass: [Torrent class]])
return [[anObject thash] isEqualToString: thash];
else
return NO;
}
- (void) update: (Torrent *) anotherItem;
{
self.state = anotherItem.state;
self.speedUpload = anotherItem.speedUpload;
self.speedDownload = anotherItem.speedDownload;
self.uploadRate = anotherItem.uploadRate;
self.downloadRate = anotherItem.downloadRate;
self.totalPeersSeed=anotherItem.totalPeersSeed;
self.totalPeersLeech=anotherItem.totalPeersLeech;
self.totalPeersDisconnected=anotherItem.totalPeersDisconnected;
self.dataLocation = (anotherItem.dataLocation == nil?self.dataLocation:anotherItem.dataLocation);
self.priority = anotherItem.priority;
self.error = anotherItem.error;
self.groupName = anotherItem.groupName;
}
- (double) progress
{
return ((float)downloadRate/(float)size);
}
- (NSImage*) icon
{
if (!_icon)
_icon = [[[NSWorkspace sharedWorkspace] iconForFileType: [self isFolder] ? NSFileTypeForHFSTypeCode('fldr')
: [[self name] pathExtension]] retain];
return _icon;
}
- (CGFloat) ratio
{
if (downloadRate == 0)
return NI_RATIO_NA;
else
return (CGFloat)uploadRate/(CGFloat)downloadRate;
}
@end