1 | /****************************************************************************** |
---|
2 | * $Id: Torrent.m 10131 2010-02-07 17:37:01Z livings124 $ |
---|
3 | * |
---|
4 | * Copyright (c) 2006-2010 Transmission authors and contributors |
---|
5 | * |
---|
6 | * Permission is hereby granted, free of charge, to any person obtaining a |
---|
7 | * copy of this software and associated documentation files (the "Software"), |
---|
8 | * to deal in the Software without restriction, including without limitation |
---|
9 | * the rights to use, copy, modify, merge, publish, distribute, sublicense, |
---|
10 | * and/or sell copies of the Software, and to permit persons to whom the |
---|
11 | * Software is furnished to do so, subject to the following conditions: |
---|
12 | * |
---|
13 | * The above copyright notice and this permission notice shall be included in |
---|
14 | * all copies or substantial portions of the Software. |
---|
15 | * |
---|
16 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR |
---|
17 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, |
---|
18 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE |
---|
19 | * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER |
---|
20 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING |
---|
21 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER |
---|
22 | * DEALINGS IN THE SOFTWARE. |
---|
23 | *****************************************************************************/ |
---|
24 | |
---|
25 | #import "Torrent.h" |
---|
26 | #import "GroupsController.h" |
---|
27 | #import "FileListNode.h" |
---|
28 | #import "NSStringAdditions.h" |
---|
29 | #import "TrackerNode.h" |
---|
30 | #import "utils.h" //tr_httpIsValidURL |
---|
31 | |
---|
32 | @interface Torrent (Private) |
---|
33 | |
---|
34 | - (id) initWithPath: (NSString *) path hash: (NSString *) hashString torrentStruct: (tr_torrent *) torrentStruct |
---|
35 | magnetAddress: (NSString *) magnetAddress lib: (tr_session *) lib |
---|
36 | waitToStart: (NSNumber *) waitToStart |
---|
37 | groupValue: (NSNumber *) groupValue |
---|
38 | downloadFolder: (NSString *) downloadFolder legacyIncompleteFolder: (NSString *) incompleteFolder; |
---|
39 | |
---|
40 | - (void) createFileList; |
---|
41 | - (void) insertPath: (NSMutableArray *) components forParent: (FileListNode *) parent fileSize: (uint64_t) size |
---|
42 | index: (NSInteger) index flatList: (NSMutableArray *) flatFileList; |
---|
43 | |
---|
44 | - (void) completenessChange: (NSNumber *) status; |
---|
45 | - (void) ratioLimitHit; |
---|
46 | - (void) metadataRetrieved; |
---|
47 | |
---|
48 | - (NSString *) etaString; |
---|
49 | |
---|
50 | - (void) setTimeMachineExclude: (BOOL) exclude forPath: (NSString *) path; |
---|
51 | |
---|
52 | @end |
---|
53 | |
---|
54 | void completenessChangeCallback(tr_torrent * torrent, tr_completeness status, void * torrentData) |
---|
55 | { |
---|
56 | [(Torrent *)torrentData performSelectorOnMainThread: @selector(completenessChange:) |
---|
57 | withObject: [[NSNumber alloc] initWithInt: status] waitUntilDone: NO]; |
---|
58 | } |
---|
59 | |
---|
60 | void ratioLimitHitCallback(tr_torrent * torrent, void * torrentData) |
---|
61 | { |
---|
62 | [(Torrent *)torrentData performSelectorOnMainThread: @selector(ratioLimitHit) withObject: nil waitUntilDone: NO]; |
---|
63 | } |
---|
64 | |
---|
65 | void metadataCallback(tr_torrent * torrent, void * torrentData) |
---|
66 | { |
---|
67 | [(Torrent *)torrentData performSelectorOnMainThread: @selector(metadataRetrieved) withObject: nil waitUntilDone: NO]; |
---|
68 | } |
---|
69 | |
---|
70 | int trashDataFile(const char * filename) |
---|
71 | { |
---|
72 | if (filename != NULL) |
---|
73 | [Torrent trashFile: [NSString stringWithUTF8String: filename]]; |
---|
74 | return 0; |
---|
75 | } |
---|
76 | |
---|
77 | @implementation Torrent |
---|
78 | |
---|
79 | - (id) initWithPath: (NSString *) path location: (NSString *) location deleteTorrentFile: (BOOL) torrentDelete |
---|
80 | lib: (tr_session *) lib |
---|
81 | { |
---|
82 | self = [self initWithPath: path hash: nil torrentStruct: NULL magnetAddress: nil lib: lib |
---|
83 | waitToStart: nil groupValue: nil |
---|
84 | downloadFolder: location legacyIncompleteFolder: nil]; |
---|
85 | |
---|
86 | if (self) |
---|
87 | { |
---|
88 | if (torrentDelete && ![[self torrentLocation] isEqualToString: path]) |
---|
89 | [Torrent trashFile: path]; |
---|
90 | } |
---|
91 | return self; |
---|
92 | } |
---|
93 | |
---|
94 | - (id) initWithTorrentStruct: (tr_torrent *) torrentStruct location: (NSString *) location lib: (tr_session *) lib |
---|
95 | { |
---|
96 | self = [self initWithPath: nil hash: nil torrentStruct: torrentStruct magnetAddress: nil lib: lib |
---|
97 | waitToStart: nil groupValue: nil |
---|
98 | downloadFolder: location legacyIncompleteFolder: nil]; |
---|
99 | |
---|
100 | return self; |
---|
101 | } |
---|
102 | |
---|
103 | #warning need location (and use it)? |
---|
104 | - (id) initWithMagnetAddress: (NSString *) address location: (NSString *) location lib: (tr_session *) lib |
---|
105 | { |
---|
106 | self = [self initWithPath: nil hash: nil torrentStruct: nil magnetAddress: address |
---|
107 | lib: lib waitToStart: nil groupValue: nil |
---|
108 | downloadFolder: location legacyIncompleteFolder: nil]; |
---|
109 | |
---|
110 | return self; |
---|
111 | } |
---|
112 | |
---|
113 | - (id) initWithHistory: (NSDictionary *) history lib: (tr_session *) lib forcePause: (BOOL) pause |
---|
114 | { |
---|
115 | self = [self initWithPath: [history objectForKey: @"InternalTorrentPath"] |
---|
116 | hash: [history objectForKey: @"TorrentHash"] |
---|
117 | torrentStruct: NULL |
---|
118 | magnetAddress: nil |
---|
119 | lib: lib |
---|
120 | waitToStart: [history objectForKey: @"WaitToStart"] |
---|
121 | groupValue: [history objectForKey: @"GroupValue"] |
---|
122 | downloadFolder: [history objectForKey: @"DownloadFolder"] //upgrading from versions < 1.80 |
---|
123 | legacyIncompleteFolder: [[history objectForKey: @"UseIncompleteFolder"] boolValue] //upgrading from versions < 1.80 |
---|
124 | ? [history objectForKey: @"IncompleteFolder"] : nil]; |
---|
125 | |
---|
126 | if (self) |
---|
127 | { |
---|
128 | //start transfer |
---|
129 | NSNumber * active; |
---|
130 | if (!pause && (active = [history objectForKey: @"Active"]) && [active boolValue]) |
---|
131 | { |
---|
132 | fStat = tr_torrentStat(fHandle); |
---|
133 | [self startTransfer]; |
---|
134 | } |
---|
135 | |
---|
136 | //upgrading from versions < 1.30: get old added, activity, and done dates |
---|
137 | NSDate * date; |
---|
138 | if ((date = [history objectForKey: @"Date"])) |
---|
139 | tr_torrentSetAddedDate(fHandle, [date timeIntervalSince1970]); |
---|
140 | if ((date = [history objectForKey: @"DateActivity"])) |
---|
141 | tr_torrentSetActivityDate(fHandle, [date timeIntervalSince1970]); |
---|
142 | if ((date = [history objectForKey: @"DateCompleted"])) |
---|
143 | tr_torrentSetDoneDate(fHandle, [date timeIntervalSince1970]); |
---|
144 | |
---|
145 | //upgrading from versions < 1.60: get old stop ratio settings |
---|
146 | NSNumber * ratioSetting; |
---|
147 | if ((ratioSetting = [history objectForKey: @"RatioSetting"])) |
---|
148 | { |
---|
149 | switch ([ratioSetting intValue]) |
---|
150 | { |
---|
151 | case NSOnState: [self setRatioSetting: TR_RATIOLIMIT_SINGLE]; break; |
---|
152 | case NSOffState: [self setRatioSetting: TR_RATIOLIMIT_UNLIMITED]; break; |
---|
153 | case NSMixedState: [self setRatioSetting: TR_RATIOLIMIT_GLOBAL]; break; |
---|
154 | } |
---|
155 | } |
---|
156 | NSNumber * ratioLimit; |
---|
157 | if ((ratioLimit = [history objectForKey: @"RatioLimit"])) |
---|
158 | [self setRatioLimit: [ratioLimit floatValue]]; |
---|
159 | } |
---|
160 | return self; |
---|
161 | } |
---|
162 | |
---|
163 | - (NSDictionary *) history |
---|
164 | { |
---|
165 | return [NSDictionary dictionaryWithObjectsAndKeys: |
---|
166 | [self torrentLocation], @"InternalTorrentPath", |
---|
167 | [self hashString], @"TorrentHash", |
---|
168 | [NSNumber numberWithBool: [self isActive]], @"Active", |
---|
169 | [NSNumber numberWithBool: fWaitToStart], @"WaitToStart", |
---|
170 | [NSNumber numberWithInt: fGroupValue], @"GroupValue", nil]; |
---|
171 | } |
---|
172 | |
---|
173 | - (void) dealloc |
---|
174 | { |
---|
175 | [[NSNotificationCenter defaultCenter] removeObserver: self]; |
---|
176 | |
---|
177 | if (fFileStat) |
---|
178 | tr_torrentFilesFree(fFileStat, [self fileCount]); |
---|
179 | |
---|
180 | [fPreviousFinishedIndexes release]; |
---|
181 | [fPreviousFinishedIndexesDate release]; |
---|
182 | |
---|
183 | [fHashString release]; |
---|
184 | |
---|
185 | [fIcon release]; |
---|
186 | |
---|
187 | [fFileList release]; |
---|
188 | [fFlatFileList release]; |
---|
189 | |
---|
190 | [fTimeMachineExclude release]; |
---|
191 | |
---|
192 | [super dealloc]; |
---|
193 | } |
---|
194 | |
---|
195 | - (NSString *) description |
---|
196 | { |
---|
197 | return [@"Torrent: " stringByAppendingString: [self name]]; |
---|
198 | } |
---|
199 | |
---|
200 | - (void) closeRemoveTorrent |
---|
201 | { |
---|
202 | //allow the file to be index by Time Machine |
---|
203 | if (fTimeMachineExclude) |
---|
204 | { |
---|
205 | [self setTimeMachineExclude: NO forPath: fTimeMachineExclude]; |
---|
206 | [fTimeMachineExclude release]; |
---|
207 | fTimeMachineExclude = nil; |
---|
208 | } |
---|
209 | |
---|
210 | tr_torrentRemove(fHandle); |
---|
211 | } |
---|
212 | |
---|
213 | - (void) changeDownloadFolderBeforeUsing: (NSString *) folder |
---|
214 | { |
---|
215 | tr_torrentSetDownloadDir(fHandle, [folder UTF8String]); |
---|
216 | [self updateTimeMachineExclude]; |
---|
217 | } |
---|
218 | |
---|
219 | - (NSString *) currentDirectory |
---|
220 | { |
---|
221 | return [NSString stringWithUTF8String: tr_torrentGetCurrentDir(fHandle)]; |
---|
222 | } |
---|
223 | |
---|
224 | - (void) getAvailability: (int8_t *) tab size: (NSInteger) size |
---|
225 | { |
---|
226 | tr_torrentAvailability(fHandle, tab, size); |
---|
227 | } |
---|
228 | |
---|
229 | - (void) getAmountFinished: (float *) tab size: (NSInteger) size |
---|
230 | { |
---|
231 | tr_torrentAmountFinished(fHandle, tab, size); |
---|
232 | } |
---|
233 | |
---|
234 | - (NSIndexSet *) previousFinishedPieces |
---|
235 | { |
---|
236 | //if the torrent hasn't been seen in a bit, and therefore hasn't been refreshed, return nil |
---|
237 | if (fPreviousFinishedIndexesDate && [fPreviousFinishedIndexesDate timeIntervalSinceNow] > -2.0) |
---|
238 | return fPreviousFinishedIndexes; |
---|
239 | else |
---|
240 | return nil; |
---|
241 | } |
---|
242 | |
---|
243 | -(void) setPreviousFinishedPieces: (NSIndexSet *) indexes |
---|
244 | { |
---|
245 | [fPreviousFinishedIndexes release]; |
---|
246 | fPreviousFinishedIndexes = [indexes retain]; |
---|
247 | |
---|
248 | [fPreviousFinishedIndexesDate release]; |
---|
249 | fPreviousFinishedIndexesDate = indexes != nil ? [[NSDate alloc] init] : nil; |
---|
250 | } |
---|
251 | |
---|
252 | - (void) update |
---|
253 | { |
---|
254 | //get previous status values before update |
---|
255 | BOOL wasChecking = NO, wasError = NO, wasStalled = NO; |
---|
256 | if (fStat != NULL) |
---|
257 | { |
---|
258 | wasChecking = [self isChecking]; |
---|
259 | wasError = [self isError]; |
---|
260 | wasStalled = fStalled; |
---|
261 | } |
---|
262 | |
---|
263 | fStat = tr_torrentStat(fHandle); |
---|
264 | |
---|
265 | //check if stalled (stored because based on time and needs to check if it was previously stalled) |
---|
266 | fStalled = [self isActive] && [fDefaults boolForKey: @"CheckStalled"] |
---|
267 | && [self stalledMinutes] > [fDefaults integerForKey: @"StalledMinutes"]; |
---|
268 | |
---|
269 | //update queue for checking (from downloading to seeding), stalled, or error |
---|
270 | if ((wasChecking && ![self isChecking]) || (wasStalled != fStalled) || (!wasError && [self isError] && [self isActive])) |
---|
271 | [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateQueue" object: self]; |
---|
272 | |
---|
273 | //when the data first appears, update time machine exclusion |
---|
274 | if (!fTimeMachineExclude) |
---|
275 | [self updateTimeMachineExclude]; |
---|
276 | } |
---|
277 | |
---|
278 | - (void) startTransfer |
---|
279 | { |
---|
280 | fWaitToStart = NO; |
---|
281 | fFinishedSeeding = NO; |
---|
282 | |
---|
283 | if (![self isActive] && [self alertForRemainingDiskSpace]) |
---|
284 | { |
---|
285 | tr_torrentStart(fHandle); |
---|
286 | [self update]; |
---|
287 | } |
---|
288 | } |
---|
289 | |
---|
290 | - (void) stopTransfer |
---|
291 | { |
---|
292 | fWaitToStart = NO; |
---|
293 | |
---|
294 | if ([self isActive]) |
---|
295 | { |
---|
296 | tr_torrentStop(fHandle); |
---|
297 | [self update]; |
---|
298 | |
---|
299 | [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateQueue" object: self]; |
---|
300 | } |
---|
301 | } |
---|
302 | |
---|
303 | - (void) sleep |
---|
304 | { |
---|
305 | if ((fResumeOnWake = [self isActive])) |
---|
306 | tr_torrentStop(fHandle); |
---|
307 | } |
---|
308 | |
---|
309 | - (void) wakeUp |
---|
310 | { |
---|
311 | if (fResumeOnWake) |
---|
312 | tr_torrentStart(fHandle); |
---|
313 | } |
---|
314 | |
---|
315 | - (void) manualAnnounce |
---|
316 | { |
---|
317 | tr_torrentManualUpdate(fHandle); |
---|
318 | } |
---|
319 | |
---|
320 | - (BOOL) canManualAnnounce |
---|
321 | { |
---|
322 | return tr_torrentCanManualUpdate(fHandle); |
---|
323 | } |
---|
324 | |
---|
325 | - (void) resetCache |
---|
326 | { |
---|
327 | tr_torrentVerify(fHandle); |
---|
328 | [self update]; |
---|
329 | } |
---|
330 | |
---|
331 | - (BOOL) isMagnet |
---|
332 | { |
---|
333 | return !tr_torrentHasMetadata(fHandle); |
---|
334 | } |
---|
335 | |
---|
336 | - (NSString *) magnetLink |
---|
337 | { |
---|
338 | return [NSString stringWithUTF8String: tr_torrentGetMagnetLink(fHandle)]; |
---|
339 | } |
---|
340 | |
---|
341 | - (CGFloat) ratio |
---|
342 | { |
---|
343 | return fStat->ratio; |
---|
344 | } |
---|
345 | |
---|
346 | - (tr_ratiolimit) ratioSetting |
---|
347 | { |
---|
348 | return tr_torrentGetRatioMode(fHandle); |
---|
349 | } |
---|
350 | |
---|
351 | - (void) setRatioSetting: (tr_ratiolimit) setting |
---|
352 | { |
---|
353 | tr_torrentSetRatioMode(fHandle, setting); |
---|
354 | } |
---|
355 | |
---|
356 | - (CGFloat) ratioLimit |
---|
357 | { |
---|
358 | return tr_torrentGetRatioLimit(fHandle); |
---|
359 | } |
---|
360 | |
---|
361 | - (void) setRatioLimit: (CGFloat) limit |
---|
362 | { |
---|
363 | NSAssert(limit >= 0, @"Ratio cannot be negative"); |
---|
364 | tr_torrentSetRatioLimit(fHandle, limit); |
---|
365 | } |
---|
366 | |
---|
367 | - (BOOL) seedRatioSet |
---|
368 | { |
---|
369 | return tr_torrentGetSeedRatio(fHandle, NULL); |
---|
370 | } |
---|
371 | |
---|
372 | - (CGFloat) progressStopRatio |
---|
373 | { |
---|
374 | return fStat->percentRatio; |
---|
375 | } |
---|
376 | |
---|
377 | - (BOOL) usesSpeedLimit: (BOOL) upload |
---|
378 | { |
---|
379 | return tr_torrentUsesSpeedLimit(fHandle, upload ? TR_UP : TR_DOWN); |
---|
380 | } |
---|
381 | |
---|
382 | - (void) setUseSpeedLimit: (BOOL) use upload: (BOOL) upload |
---|
383 | { |
---|
384 | tr_torrentUseSpeedLimit(fHandle, upload ? TR_UP : TR_DOWN, use); |
---|
385 | } |
---|
386 | |
---|
387 | - (NSInteger) speedLimit: (BOOL) upload |
---|
388 | { |
---|
389 | return tr_torrentGetSpeedLimit(fHandle, upload ? TR_UP : TR_DOWN); |
---|
390 | } |
---|
391 | |
---|
392 | - (void) setSpeedLimit: (NSInteger) limit upload: (BOOL) upload |
---|
393 | { |
---|
394 | tr_torrentSetSpeedLimit(fHandle, upload ? TR_UP : TR_DOWN, limit); |
---|
395 | } |
---|
396 | |
---|
397 | - (BOOL) usesGlobalSpeedLimit |
---|
398 | { |
---|
399 | return tr_torrentUsesSessionLimits(fHandle); |
---|
400 | } |
---|
401 | |
---|
402 | - (void) setUseGlobalSpeedLimit: (BOOL) use |
---|
403 | { |
---|
404 | tr_torrentUseSessionLimits(fHandle, use); |
---|
405 | } |
---|
406 | |
---|
407 | - (void) setMaxPeerConnect: (uint16_t) count |
---|
408 | { |
---|
409 | NSAssert(count > 0, @"max peer count must be greater than 0"); |
---|
410 | |
---|
411 | tr_torrentSetPeerLimit(fHandle, count); |
---|
412 | } |
---|
413 | |
---|
414 | - (uint16_t) maxPeerConnect |
---|
415 | { |
---|
416 | return tr_torrentGetPeerLimit(fHandle); |
---|
417 | } |
---|
418 | |
---|
419 | - (void) setWaitToStart: (BOOL) wait |
---|
420 | { |
---|
421 | fWaitToStart = wait; |
---|
422 | } |
---|
423 | |
---|
424 | - (BOOL) waitingToStart |
---|
425 | { |
---|
426 | return fWaitToStart; |
---|
427 | } |
---|
428 | |
---|
429 | - (tr_priority_t) priority |
---|
430 | { |
---|
431 | return tr_torrentGetPriority(fHandle); |
---|
432 | } |
---|
433 | |
---|
434 | - (void) setPriority: (tr_priority_t) priority |
---|
435 | { |
---|
436 | return tr_torrentSetPriority(fHandle, priority); |
---|
437 | } |
---|
438 | |
---|
439 | #warning when 10.6-only use recycleURLs:completionHandler: |
---|
440 | + (void) trashFile: (NSString *) path |
---|
441 | { |
---|
442 | //attempt to move to trash |
---|
443 | if (![[NSWorkspace sharedWorkspace] performFileOperation: NSWorkspaceRecycleOperation |
---|
444 | source: [path stringByDeletingLastPathComponent] destination: @"" |
---|
445 | files: [NSArray arrayWithObject: [path lastPathComponent]] tag: nil]) |
---|
446 | { |
---|
447 | //if cannot trash, just delete it (will work if it's on a remote volume) |
---|
448 | NSError * error; |
---|
449 | if (![[NSFileManager defaultManager] removeItemAtPath: path error: &error]) |
---|
450 | NSLog(@"Could not trash %@: %@", path, [error localizedDescription]); |
---|
451 | } |
---|
452 | } |
---|
453 | |
---|
454 | - (void) trashData |
---|
455 | { |
---|
456 | tr_torrentDeleteLocalData(fHandle, trashDataFile); |
---|
457 | } |
---|
458 | |
---|
459 | - (void) moveTorrentDataFileTo: (NSString *) folder |
---|
460 | { |
---|
461 | NSString * oldFolder = [self currentDirectory]; |
---|
462 | if ([oldFolder isEqualToString: folder]) |
---|
463 | return; |
---|
464 | |
---|
465 | //check if moving inside itself |
---|
466 | NSArray * oldComponents = [oldFolder pathComponents], |
---|
467 | * newComponents = [folder pathComponents]; |
---|
468 | const NSInteger oldCount = [oldComponents count]; |
---|
469 | |
---|
470 | if (oldCount < [newComponents count] && [[newComponents objectAtIndex: oldCount] isEqualToString: [self name]] |
---|
471 | && [folder hasPrefix: oldFolder]) |
---|
472 | { |
---|
473 | NSAlert * alert = [[NSAlert alloc] init]; |
---|
474 | [alert setMessageText: NSLocalizedString(@"A folder cannot be moved to inside itself.", |
---|
475 | "Move inside itself alert -> title")]; |
---|
476 | [alert setInformativeText: [NSString stringWithFormat: |
---|
477 | NSLocalizedString(@"The move operation of \"%@\" cannot be done.", |
---|
478 | "Move inside itself alert -> message"), [self name]]]; |
---|
479 | [alert addButtonWithTitle: NSLocalizedString(@"OK", "Move inside itself alert -> button")]; |
---|
480 | |
---|
481 | [alert runModal]; |
---|
482 | [alert release]; |
---|
483 | |
---|
484 | return; |
---|
485 | } |
---|
486 | |
---|
487 | volatile int status; |
---|
488 | tr_torrentSetLocation(fHandle, [folder UTF8String], YES, NULL, &status); |
---|
489 | |
---|
490 | while (status == TR_LOC_MOVING) //block while moving (for now) |
---|
491 | [NSThread sleepForTimeInterval: 0.05]; |
---|
492 | |
---|
493 | if (status == TR_LOC_DONE) |
---|
494 | [[NSNotificationCenter defaultCenter] postNotificationName: @"UpdateStats" object: nil]; |
---|
495 | else |
---|
496 | { |
---|
497 | NSAlert * alert = [[NSAlert alloc] init]; |
---|
498 | [alert setMessageText: NSLocalizedString(@"There was an error moving the data file.", "Move error alert -> title")]; |
---|
499 | [alert setInformativeText: [NSString stringWithFormat: |
---|
500 | NSLocalizedString(@"The move operation of \"%@\" cannot be done.", "Move error alert -> message"), [self name]]]; |
---|
501 | [alert addButtonWithTitle: NSLocalizedString(@"OK", "Move error alert -> button")]; |
---|
502 | |
---|
503 | [alert runModal]; |
---|
504 | [alert release]; |
---|
505 | } |
---|
506 | |
---|
507 | [self updateTimeMachineExclude]; |
---|
508 | } |
---|
509 | |
---|
510 | - (void) copyTorrentFileTo: (NSString *) path |
---|
511 | { |
---|
512 | [[NSFileManager defaultManager] copyItemAtPath: [self torrentLocation] toPath: path error: NULL]; |
---|
513 | } |
---|
514 | |
---|
515 | - (BOOL) alertForRemainingDiskSpace |
---|
516 | { |
---|
517 | if ([self allDownloaded] || ![fDefaults boolForKey: @"WarningRemainingSpace"]) |
---|
518 | return YES; |
---|
519 | |
---|
520 | NSString * downloadFolder = [self currentDirectory], * volumeName; |
---|
521 | if ((volumeName = [[[NSFileManager defaultManager] componentsToDisplayForPath: downloadFolder] objectAtIndex: 0])) |
---|
522 | { |
---|
523 | NSDictionary * systemAttributes = [[NSFileManager defaultManager] attributesOfFileSystemForPath: downloadFolder error: NULL]; |
---|
524 | uint64_t remainingSpace = [[systemAttributes objectForKey: NSFileSystemFreeSize] unsignedLongLongValue]; |
---|
525 | |
---|
526 | //if the remaining space is greater than the size left, then there is enough space regardless of preallocation |
---|
527 | if (remainingSpace < [self sizeLeft] && remainingSpace < tr_torrentGetBytesLeftToAllocate(fHandle)) |
---|
528 | { |
---|
529 | NSAlert * alert = [[NSAlert alloc] init]; |
---|
530 | [alert setMessageText: [NSString stringWithFormat: |
---|
531 | NSLocalizedString(@"Not enough remaining disk space to download \"%@\" completely.", |
---|
532 | "Torrent disk space alert -> title"), [self name]]]; |
---|
533 | [alert setInformativeText: [NSString stringWithFormat: NSLocalizedString(@"The transfer will be paused." |
---|
534 | " Clear up space on %@ or deselect files in the torrent inspector to continue.", |
---|
535 | "Torrent disk space alert -> message"), volumeName]]; |
---|
536 | [alert addButtonWithTitle: NSLocalizedString(@"OK", "Torrent disk space alert -> button")]; |
---|
537 | [alert addButtonWithTitle: NSLocalizedString(@"Download Anyway", "Torrent disk space alert -> button")]; |
---|
538 | |
---|
539 | [alert setShowsSuppressionButton: YES]; |
---|
540 | [[alert suppressionButton] setTitle: NSLocalizedString(@"Do not check disk space again", |
---|
541 | "Torrent disk space alert -> button")]; |
---|
542 | |
---|
543 | const NSInteger result = [alert runModal]; |
---|
544 | if ([[alert suppressionButton] state] == NSOnState) |
---|
545 | [fDefaults setBool: NO forKey: @"WarningRemainingSpace"]; |
---|
546 | [alert release]; |
---|
547 | |
---|
548 | return result != NSAlertFirstButtonReturn; |
---|
549 | } |
---|
550 | } |
---|
551 | return YES; |
---|
552 | } |
---|
553 | |
---|
554 | - (NSImage *) icon |
---|
555 | { |
---|
556 | if ([self isMagnet]) |
---|
557 | return [NSImage imageNamed: @"Magnet.png"]; |
---|
558 | |
---|
559 | #warning replace 'fldr' stuff with NSImageNameFolder on 10.6 |
---|
560 | if (!fIcon) |
---|
561 | fIcon = [[[NSWorkspace sharedWorkspace] iconForFileType: [self isFolder] ? NSFileTypeForHFSTypeCode('fldr') |
---|
562 | : [[self name] pathExtension]] retain]; |
---|
563 | return fIcon; |
---|
564 | } |
---|
565 | |
---|
566 | - (NSString *) name |
---|
567 | { |
---|
568 | return fInfo->name != NULL ? [NSString stringWithUTF8String: fInfo->name] : fHashString; |
---|
569 | } |
---|
570 | |
---|
571 | - (BOOL) isFolder |
---|
572 | { |
---|
573 | return fInfo->isMultifile; |
---|
574 | } |
---|
575 | |
---|
576 | - (uint64_t) size |
---|
577 | { |
---|
578 | return fInfo->totalSize; |
---|
579 | } |
---|
580 | |
---|
581 | - (uint64_t) sizeLeft |
---|
582 | { |
---|
583 | return fStat->leftUntilDone; |
---|
584 | } |
---|
585 | |
---|
586 | - (NSMutableArray *) allTrackerStats |
---|
587 | { |
---|
588 | int count; |
---|
589 | tr_tracker_stat * stats = tr_torrentTrackers(fHandle, &count); |
---|
590 | |
---|
591 | NSMutableArray * trackers = [NSMutableArray arrayWithCapacity: (count > 0 ? count + stats[count-1].tier : 0)]; |
---|
592 | |
---|
593 | int prevTier = -1; |
---|
594 | for (int i=0; i < count; ++i) |
---|
595 | { |
---|
596 | if (stats[i].tier != prevTier) |
---|
597 | { |
---|
598 | [trackers addObject: [NSDictionary dictionaryWithObjectsAndKeys: [NSNumber numberWithInteger: stats[i].tier], @"Tier", |
---|
599 | [self name], @"Name", nil]]; |
---|
600 | prevTier = stats[i].tier; |
---|
601 | } |
---|
602 | |
---|
603 | TrackerNode * tracker = [[TrackerNode alloc] initWithTrackerStat: &stats[i]]; |
---|
604 | [trackers addObject: tracker]; |
---|
605 | [tracker release]; |
---|
606 | } |
---|
607 | |
---|
608 | tr_torrentTrackersFree(stats, count); |
---|
609 | return trackers; |
---|
610 | } |
---|
611 | |
---|
612 | - (NSArray *) allTrackersFlat |
---|
613 | { |
---|
614 | NSMutableArray * allTrackers = [NSMutableArray arrayWithCapacity: fInfo->trackerCount]; |
---|
615 | |
---|
616 | for (NSInteger i=0; i < fInfo->trackerCount; i++) |
---|
617 | [allTrackers addObject: [NSString stringWithUTF8String: fInfo->trackers[i].announce]]; |
---|
618 | |
---|
619 | return allTrackers; |
---|
620 | } |
---|
621 | |
---|
622 | - (BOOL) addTrackerToNewTier: (NSString *) tracker |
---|
623 | { |
---|
624 | tracker = [tracker stringByTrimmingCharactersInSet: [NSCharacterSet whitespaceAndNewlineCharacterSet]]; |
---|
625 | |
---|
626 | if ([tracker rangeOfString: @"://"].location == NSNotFound) |
---|
627 | tracker = [@"http://" stringByAppendingString: tracker]; |
---|
628 | |
---|
629 | //recreate the tracker structure |
---|
630 | const int oldTrackerCount = fInfo->trackerCount; |
---|
631 | tr_tracker_info * trackerStructs = tr_new(tr_tracker_info, oldTrackerCount+1); |
---|
632 | for (NSUInteger i=0; i < oldTrackerCount; ++i) |
---|
633 | { |
---|
634 | trackerStructs[i] = fInfo->trackers[i]; |
---|
635 | trackerStructs[i].id = i; |
---|
636 | } |
---|
637 | |
---|
638 | trackerStructs[oldTrackerCount].announce = (char *)[tracker UTF8String]; |
---|
639 | trackerStructs[oldTrackerCount].tier = trackerStructs[oldTrackerCount-1].tier + 1; |
---|
640 | trackerStructs[oldTrackerCount].id = oldTrackerCount; |
---|
641 | |
---|
642 | const BOOL success = tr_torrentSetAnnounceList(fHandle, trackerStructs, oldTrackerCount+1); |
---|
643 | tr_free(trackerStructs); |
---|
644 | |
---|
645 | return success; |
---|
646 | } |
---|
647 | |
---|
648 | - (void) removeTrackersWithIdentifiers: (NSIndexSet *) removeIdentifiers |
---|
649 | { |
---|
650 | //recreate the tracker structure |
---|
651 | tr_tracker_info * trackerStructs = tr_new(tr_tracker_info, fInfo->trackerCount); |
---|
652 | |
---|
653 | NSUInteger newCount = 0; |
---|
654 | for (NSUInteger i = 0; i < fInfo->trackerCount; i++) |
---|
655 | { |
---|
656 | if (![removeIdentifiers containsIndex: fInfo->trackers[i].id]) |
---|
657 | { |
---|
658 | trackerStructs[newCount] = fInfo->trackers[i]; |
---|
659 | trackerStructs[newCount].id = newCount++; |
---|
660 | } |
---|
661 | } |
---|
662 | |
---|
663 | const BOOL success = tr_torrentSetAnnounceList(fHandle, trackerStructs, newCount); |
---|
664 | NSAssert(success, @"Removing tracker addresses failed"); |
---|
665 | |
---|
666 | tr_free(trackerStructs); |
---|
667 | } |
---|
668 | |
---|
669 | - (NSString *) comment |
---|
670 | { |
---|
671 | return fInfo->comment ? [NSString stringWithUTF8String: fInfo->comment] : @""; |
---|
672 | } |
---|
673 | |
---|
674 | - (NSString *) creator |
---|
675 | { |
---|
676 | return fInfo->creator ? [NSString stringWithUTF8String: fInfo->creator] : @""; |
---|
677 | } |
---|
678 | |
---|
679 | - (NSDate *) dateCreated |
---|
680 | { |
---|
681 | NSInteger date = fInfo->dateCreated; |
---|
682 | return date > 0 ? [NSDate dateWithTimeIntervalSince1970: date] : nil; |
---|
683 | } |
---|
684 | |
---|
685 | - (NSInteger) pieceSize |
---|
686 | { |
---|
687 | return fInfo->pieceSize; |
---|
688 | } |
---|
689 | |
---|
690 | - (NSInteger) pieceCount |
---|
691 | { |
---|
692 | return fInfo->pieceCount; |
---|
693 | } |
---|
694 | |
---|
695 | - (NSString *) hashString |
---|
696 | { |
---|
697 | return fHashString; |
---|
698 | } |
---|
699 | |
---|
700 | - (BOOL) privateTorrent |
---|
701 | { |
---|
702 | return fInfo->isPrivate; |
---|
703 | } |
---|
704 | |
---|
705 | - (NSString *) torrentLocation |
---|
706 | { |
---|
707 | return fInfo->torrent ? [NSString stringWithUTF8String: fInfo->torrent] : @""; |
---|
708 | } |
---|
709 | |
---|
710 | - (NSString *) dataLocation |
---|
711 | { |
---|
712 | if ([self isMagnet]) |
---|
713 | return nil; |
---|
714 | |
---|
715 | if ([self isFolder]) |
---|
716 | { |
---|
717 | NSString * dataLocation = [[self currentDirectory] stringByAppendingPathComponent: [self name]]; |
---|
718 | |
---|
719 | if (![[NSFileManager defaultManager] fileExistsAtPath: dataLocation]) |
---|
720 | return nil; |
---|
721 | |
---|
722 | return dataLocation; |
---|
723 | } |
---|
724 | else |
---|
725 | { |
---|
726 | char * location = tr_torrentFindFile(fHandle, 0); |
---|
727 | if (location == NULL) |
---|
728 | return nil; |
---|
729 | |
---|
730 | NSString * dataLocation = [NSString stringWithUTF8String: location]; |
---|
731 | free(location); |
---|
732 | |
---|
733 | return dataLocation; |
---|
734 | } |
---|
735 | } |
---|
736 | |
---|
737 | - (NSString *) fileLocation: (FileListNode *) node |
---|
738 | { |
---|
739 | if ([node isFolder]) |
---|
740 | { |
---|
741 | NSString * basePath = [[node path] stringByAppendingPathComponent: [node name]]; |
---|
742 | NSString * dataLocation = [[self currentDirectory] stringByAppendingPathComponent: basePath]; |
---|
743 | |
---|
744 | if (![[NSFileManager defaultManager] fileExistsAtPath: dataLocation]) |
---|
745 | return nil; |
---|
746 | |
---|
747 | return dataLocation; |
---|
748 | } |
---|
749 | else |
---|
750 | { |
---|
751 | char * location = tr_torrentFindFile(fHandle, [[node indexes] firstIndex]); |
---|
752 | if (location == NULL) |
---|
753 | return nil; |
---|
754 | |
---|
755 | NSString * dataLocation = [NSString stringWithUTF8String: location]; |
---|
756 | free(location); |
---|
757 | |
---|
758 | return dataLocation; |
---|
759 | } |
---|
760 | } |
---|
761 | |
---|
762 | - (CGFloat) progress |
---|
763 | { |
---|
764 | return fStat->percentComplete; |
---|
765 | } |
---|
766 | |
---|
767 | - (CGFloat) progressDone |
---|
768 | { |
---|
769 | return fStat->percentDone; |
---|
770 | } |
---|
771 | |
---|
772 | - (CGFloat) progressLeft |
---|
773 | { |
---|
774 | if ([self size] == 0) //magnet links |
---|
775 | return 0.0; |
---|
776 | |
---|
777 | return (CGFloat)[self sizeLeft] / [self size]; |
---|
778 | } |
---|
779 | |
---|
780 | - (CGFloat) checkingProgress |
---|
781 | { |
---|
782 | return fStat->recheckProgress; |
---|
783 | } |
---|
784 | |
---|
785 | - (NSInteger) eta |
---|
786 | { |
---|
787 | return fStat->eta; |
---|
788 | } |
---|
789 | |
---|
790 | - (CGFloat) availableDesired |
---|
791 | { |
---|
792 | return (CGFloat)fStat->desiredAvailable / [self sizeLeft]; |
---|
793 | } |
---|
794 | |
---|
795 | - (BOOL) isActive |
---|
796 | { |
---|
797 | return fStat->activity != TR_STATUS_STOPPED; |
---|
798 | } |
---|
799 | |
---|
800 | - (BOOL) isSeeding |
---|
801 | { |
---|
802 | return fStat->activity == TR_STATUS_SEED; |
---|
803 | } |
---|
804 | |
---|
805 | - (BOOL) isChecking |
---|
806 | { |
---|
807 | return fStat->activity == TR_STATUS_CHECK || fStat->activity == TR_STATUS_CHECK_WAIT; |
---|
808 | } |
---|
809 | |
---|
810 | - (BOOL) isCheckingWaiting |
---|
811 | { |
---|
812 | return fStat->activity == TR_STATUS_CHECK_WAIT; |
---|
813 | } |
---|
814 | |
---|
815 | - (BOOL) allDownloaded |
---|
816 | { |
---|
817 | return [self sizeLeft] == 0 && ![self isMagnet]; |
---|
818 | } |
---|
819 | |
---|
820 | - (BOOL) isComplete |
---|
821 | { |
---|
822 | return [self progress] >= 1.0; |
---|
823 | } |
---|
824 | |
---|
825 | - (BOOL) isError |
---|
826 | { |
---|
827 | return fStat->error == TR_STAT_LOCAL_ERROR; |
---|
828 | } |
---|
829 | |
---|
830 | - (BOOL) isAnyErrorOrWarning |
---|
831 | { |
---|
832 | return fStat->error != TR_STAT_OK; |
---|
833 | } |
---|
834 | |
---|
835 | - (NSString *) errorMessage |
---|
836 | { |
---|
837 | if (![self isAnyErrorOrWarning]) |
---|
838 | return @""; |
---|
839 | |
---|
840 | NSString * error; |
---|
841 | if (!(error = [NSString stringWithUTF8String: fStat->errorString]) |
---|
842 | && !(error = [NSString stringWithCString: fStat->errorString encoding: NSISOLatin1StringEncoding])) |
---|
843 | error = [NSString stringWithFormat: @"(%@)", NSLocalizedString(@"unreadable error", "Torrent -> error string unreadable")]; |
---|
844 | |
---|
845 | //libtransmission uses "Set Location", Mac client uses "Move data file to..." - very hacky! |
---|
846 | error = [error stringByReplacingOccurrencesOfString: @"Set Location" withString: [@"Move Data File To" stringByAppendingEllipsis]]; |
---|
847 | |
---|
848 | return error; |
---|
849 | } |
---|
850 | |
---|
851 | - (NSArray *) peers |
---|
852 | { |
---|
853 | int totalPeers; |
---|
854 | tr_peer_stat * peers = tr_torrentPeers(fHandle, &totalPeers); |
---|
855 | |
---|
856 | NSMutableArray * peerDicts = [NSMutableArray arrayWithCapacity: totalPeers]; |
---|
857 | |
---|
858 | for (int i = 0; i < totalPeers; i++) |
---|
859 | { |
---|
860 | tr_peer_stat * peer = &peers[i]; |
---|
861 | NSMutableDictionary * dict = [NSMutableDictionary dictionaryWithCapacity: 11]; |
---|
862 | |
---|
863 | [dict setObject: [self name] forKey: @"Name"]; |
---|
864 | [dict setObject: [NSNumber numberWithInt: peer->from] forKey: @"From"]; |
---|
865 | [dict setObject: [NSString stringWithUTF8String: peer->addr] forKey: @"IP"]; |
---|
866 | [dict setObject: [NSNumber numberWithInt: peer->port] forKey: @"Port"]; |
---|
867 | [dict setObject: [NSNumber numberWithFloat: peer->progress] forKey: @"Progress"]; |
---|
868 | [dict setObject: [NSNumber numberWithBool: peer->isSeed] forKey: @"Seed"]; |
---|
869 | [dict setObject: [NSNumber numberWithBool: peer->isEncrypted] forKey: @"Encryption"]; |
---|
870 | [dict setObject: [NSString stringWithUTF8String: peer->client] forKey: @"Client"]; |
---|
871 | [dict setObject: [NSString stringWithUTF8String: peer->flagStr] forKey: @"Flags"]; |
---|
872 | |
---|
873 | if (peer->isUploadingTo) |
---|
874 | [dict setObject: [NSNumber numberWithFloat: peer->rateToPeer] forKey: @"UL To Rate"]; |
---|
875 | if (peer->isDownloadingFrom) |
---|
876 | [dict setObject: [NSNumber numberWithFloat: peer->rateToClient] forKey: @"DL From Rate"]; |
---|
877 | |
---|
878 | [peerDicts addObject: dict]; |
---|
879 | } |
---|
880 | |
---|
881 | tr_torrentPeersFree(peers, totalPeers); |
---|
882 | |
---|
883 | return peerDicts; |
---|
884 | } |
---|
885 | |
---|
886 | - (NSUInteger) webSeedCount |
---|
887 | { |
---|
888 | return fInfo->webseedCount; |
---|
889 | } |
---|
890 | |
---|
891 | - (NSArray *) webSeeds |
---|
892 | { |
---|
893 | NSMutableArray * webSeeds = [NSMutableArray arrayWithCapacity: fInfo->webseedCount]; |
---|
894 | |
---|
895 | float * dlSpeeds = tr_torrentWebSpeeds(fHandle); |
---|
896 | |
---|
897 | for (NSInteger i = 0; i < fInfo->webseedCount; i++) |
---|
898 | { |
---|
899 | NSMutableDictionary * dict = [NSMutableDictionary dictionaryWithCapacity: 3]; |
---|
900 | |
---|
901 | [dict setObject: [self name] forKey: @"Name"]; |
---|
902 | [dict setObject: [NSString stringWithUTF8String: fInfo->webseeds[i]] forKey: @"Address"]; |
---|
903 | |
---|
904 | if (dlSpeeds[i] != -1.0) |
---|
905 | [dict setObject: [NSNumber numberWithFloat: dlSpeeds[i]] forKey: @"DL From Rate"]; |
---|
906 | |
---|
907 | [webSeeds addObject: dict]; |
---|
908 | } |
---|
909 | |
---|
910 | tr_free(dlSpeeds); |
---|
911 | |
---|
912 | return webSeeds; |
---|
913 | } |
---|
914 | |
---|
915 | - (NSString *) progressString |
---|
916 | { |
---|
917 | if ([self isMagnet]) |
---|
918 | { |
---|
919 | NSString * progressString = fStat->metadataPercentComplete > 0.0 |
---|
920 | ? [NSString localizedStringWithFormat: NSLocalizedString(@"%.2f%% of torrent metadata retrieved", |
---|
921 | "Torrent -> progress string"), 100.0 * fStat->metadataPercentComplete] |
---|
922 | : NSLocalizedString(@"torrent metadata needed", "Torrent -> progress string"); |
---|
923 | |
---|
924 | return [NSString stringWithFormat: @"%@ - %@", NSLocalizedString(@"Magnetized transfer", "Torrent -> progress string"), |
---|
925 | progressString]; |
---|
926 | } |
---|
927 | |
---|
928 | NSString * string; |
---|
929 | |
---|
930 | if (![self allDownloaded]) |
---|
931 | { |
---|
932 | CGFloat progress; |
---|
933 | if ([self isFolder] && [fDefaults boolForKey: @"DisplayStatusProgressSelected"]) |
---|
934 | { |
---|
935 | string = [NSString stringWithFormat: NSLocalizedString(@"%@ of %@ selected", "Torrent -> progress string"), |
---|
936 | [NSString stringForFileSize: [self haveTotal]], [NSString stringForFileSize: [self totalSizeSelected]]]; |
---|
937 | progress = 100.0 * [self progressDone]; |
---|
938 | } |
---|
939 | else |
---|
940 | { |
---|
941 | string = [NSString stringWithFormat: NSLocalizedString(@"%@ of %@", "Torrent -> progress string"), |
---|
942 | [NSString stringForFileSize: [self haveTotal]], [NSString stringForFileSize: [self size]]]; |
---|
943 | progress = 100.0 * [self progress]; |
---|
944 | } |
---|
945 | |
---|
946 | string = [NSString localizedStringWithFormat: @"%@ (%.2f%%)", string, progress]; |
---|
947 | } |
---|
948 | else |
---|
949 | { |
---|
950 | NSString * downloadString; |
---|
951 | if (![self isComplete]) //only multifile possible |
---|
952 | { |
---|
953 | if ([fDefaults boolForKey: @"DisplayStatusProgressSelected"]) |
---|
954 | downloadString = [NSString stringWithFormat: NSLocalizedString(@"%@ selected", "Torrent -> progress string"), |
---|
955 | [NSString stringForFileSize: [self haveTotal]]]; |
---|
956 | else |
---|
957 | { |
---|
958 | downloadString = [NSString stringWithFormat: NSLocalizedString(@"%@ of %@", "Torrent -> progress string"), |
---|
959 | [NSString stringForFileSize: [self haveTotal]], [NSString stringForFileSize: [self size]]]; |
---|
960 | |
---|
961 | downloadString = [NSString localizedStringWithFormat: @"%@ (%.2f%%)", downloadString, 100.0 * [self progress]]; |
---|
962 | } |
---|
963 | } |
---|
964 | else |
---|
965 | downloadString = [NSString stringForFileSize: [self size]]; |
---|
966 | |
---|
967 | NSString * uploadString = [NSString stringWithFormat: NSLocalizedString(@"uploaded %@ (Ratio: %@)", |
---|
968 | "Torrent -> progress string"), [NSString stringForFileSize: [self uploadedTotal]], |
---|
969 | [NSString stringForRatio: [self ratio]]]; |
---|
970 | |
---|
971 | string = [downloadString stringByAppendingFormat: @", %@", uploadString]; |
---|
972 | } |
---|
973 | |
---|
974 | //add time when downloading |
---|
975 | if (fStat->activity == TR_STATUS_DOWNLOAD || ([self isSeeding] && [self seedRatioSet])) |
---|
976 | string = [string stringByAppendingFormat: @" - %@", [self etaString]]; |
---|
977 | |
---|
978 | return string; |
---|
979 | } |
---|
980 | |
---|
981 | - (NSString *) statusString |
---|
982 | { |
---|
983 | NSString * string; |
---|
984 | |
---|
985 | if ([self isAnyErrorOrWarning]) |
---|
986 | { |
---|
987 | switch (fStat->error) |
---|
988 | { |
---|
989 | case TR_STAT_LOCAL_ERROR: string = NSLocalizedString(@"Error", "Torrent -> status string"); break; |
---|
990 | case TR_STAT_TRACKER_ERROR: string = NSLocalizedString(@"Tracker returned an error", "Torrent -> status string"); break; |
---|
991 | case TR_STAT_TRACKER_WARNING: string = NSLocalizedString(@"Tracker returned a warning", "Torrent -> status string"); break; |
---|
992 | default: NSAssert(NO, @"unknown error state"); |
---|
993 | } |
---|
994 | |
---|
995 | NSString * errorString = [self errorMessage]; |
---|
996 | if (errorString && ![errorString isEqualToString: @""]) |
---|
997 | string = [string stringByAppendingFormat: @": %@", errorString]; |
---|
998 | } |
---|
999 | else |
---|
1000 | { |
---|
1001 | switch (fStat->activity) |
---|
1002 | { |
---|
1003 | case TR_STATUS_STOPPED: |
---|
1004 | if (fWaitToStart) |
---|
1005 | { |
---|
1006 | string = ![self allDownloaded] |
---|
1007 | ? [NSLocalizedString(@"Waiting to download", "Torrent -> status string") stringByAppendingEllipsis] |
---|
1008 | : [NSLocalizedString(@"Waiting to seed", "Torrent -> status string") stringByAppendingEllipsis]; |
---|
1009 | } |
---|
1010 | else if (fFinishedSeeding) |
---|
1011 | string = NSLocalizedString(@"Seeding complete", "Torrent -> status string"); |
---|
1012 | else |
---|
1013 | string = NSLocalizedString(@"Paused", "Torrent -> status string"); |
---|
1014 | break; |
---|
1015 | |
---|
1016 | case TR_STATUS_CHECK_WAIT: |
---|
1017 | string = [NSLocalizedString(@"Waiting to check existing data", "Torrent -> status string") stringByAppendingEllipsis]; |
---|
1018 | break; |
---|
1019 | |
---|
1020 | case TR_STATUS_CHECK: |
---|
1021 | string = [NSString localizedStringWithFormat: @"%@ (%.2f%%)", |
---|
1022 | NSLocalizedString(@"Checking existing data", "Torrent -> status string"), 100.0 * [self checkingProgress]]; |
---|
1023 | break; |
---|
1024 | |
---|
1025 | case TR_STATUS_DOWNLOAD: |
---|
1026 | if ([self totalPeersConnected] != 1) |
---|
1027 | string = [NSString stringWithFormat: NSLocalizedString(@"Downloading from %d of %d peers", |
---|
1028 | "Torrent -> status string"), [self peersSendingToUs], [self totalPeersConnected]]; |
---|
1029 | else |
---|
1030 | string = [NSString stringWithFormat: NSLocalizedString(@"Downloading from %d of 1 peer", |
---|
1031 | "Torrent -> status string"), [self peersSendingToUs]]; |
---|
1032 | |
---|
1033 | const NSInteger webSeedCount = fStat->webseedsSendingToUs; |
---|
1034 | if (webSeedCount > 0) |
---|
1035 | { |
---|
1036 | NSString * webSeedString; |
---|
1037 | if (webSeedCount == 1) |
---|
1038 | webSeedString = NSLocalizedString(@"web seed", "Torrent -> status string"); |
---|
1039 | else |
---|
1040 | webSeedString = [NSString stringWithFormat: NSLocalizedString(@"%d web seeds", "Torrent -> status string"), |
---|
1041 | webSeedCount]; |
---|
1042 | |
---|
1043 | string = [string stringByAppendingFormat: @" + %@", webSeedString]; |
---|
1044 | } |
---|
1045 | |
---|
1046 | break; |
---|
1047 | |
---|
1048 | case TR_STATUS_SEED: |
---|
1049 | if ([self totalPeersConnected] != 1) |
---|
1050 | string = [NSString stringWithFormat: NSLocalizedString(@"Seeding to %d of %d peers", "Torrent -> status string"), |
---|
1051 | [self peersGettingFromUs], [self totalPeersConnected]]; |
---|
1052 | else |
---|
1053 | string = [NSString stringWithFormat: NSLocalizedString(@"Seeding to %d of 1 peer", "Torrent -> status string"), |
---|
1054 | [self peersGettingFromUs]]; |
---|
1055 | } |
---|
1056 | |
---|
1057 | if (fStalled) |
---|
1058 | string = [NSLocalizedString(@"Stalled", "Torrent -> status string") stringByAppendingFormat: @", %@", string]; |
---|
1059 | } |
---|
1060 | |
---|
1061 | //append even if error |
---|
1062 | if ([self isActive] && ![self isChecking]) |
---|
1063 | { |
---|
1064 | if (fStat->activity == TR_STATUS_DOWNLOAD) |
---|
1065 | string = [string stringByAppendingFormat: @" - %@: %@, %@: %@", |
---|
1066 | NSLocalizedString(@"DL", "Torrent -> status string"), [NSString stringForSpeed: [self downloadRate]], |
---|
1067 | NSLocalizedString(@"UL", "Torrent -> status string"), [NSString stringForSpeed: [self uploadRate]]]; |
---|
1068 | else |
---|
1069 | string = [string stringByAppendingFormat: @" - %@: %@", |
---|
1070 | NSLocalizedString(@"UL", "Torrent -> status string"), [NSString stringForSpeed: [self uploadRate]]]; |
---|
1071 | } |
---|
1072 | |
---|
1073 | return string; |
---|
1074 | } |
---|
1075 | |
---|
1076 | - (NSString *) shortStatusString |
---|
1077 | { |
---|
1078 | NSString * string; |
---|
1079 | |
---|
1080 | switch (fStat->activity) |
---|
1081 | { |
---|
1082 | case TR_STATUS_STOPPED: |
---|
1083 | if (fWaitToStart) |
---|
1084 | { |
---|
1085 | string = ![self allDownloaded] |
---|
1086 | ? [NSLocalizedString(@"Waiting to download", "Torrent -> status string") stringByAppendingEllipsis] |
---|
1087 | : [NSLocalizedString(@"Waiting to seed", "Torrent -> status string") stringByAppendingEllipsis]; |
---|
1088 | } |
---|
1089 | else if (fFinishedSeeding) |
---|
1090 | string = NSLocalizedString(@"Seeding complete", "Torrent -> status string"); |
---|
1091 | else |
---|
1092 | string = NSLocalizedString(@"Paused", "Torrent -> status string"); |
---|
1093 | break; |
---|
1094 | |
---|
1095 | case TR_STATUS_CHECK_WAIT: |
---|
1096 | string = [NSLocalizedString(@"Waiting to check existing data", "Torrent -> status string") stringByAppendingEllipsis]; |
---|
1097 | break; |
---|
1098 | |
---|
1099 | case TR_STATUS_CHECK: |
---|
1100 | string = [NSString localizedStringWithFormat: @"%@ (%.2f%%)", |
---|
1101 | NSLocalizedString(@"Checking existing data", "Torrent -> status string"), 100.0 * [self checkingProgress]]; |
---|
1102 | break; |
---|
1103 | |
---|
1104 | case TR_STATUS_DOWNLOAD: |
---|
1105 | string = [NSString stringWithFormat: @"%@: %@, %@: %@", |
---|
1106 | NSLocalizedString(@"DL", "Torrent -> status string"), [NSString stringForSpeed: [self downloadRate]], |
---|
1107 | NSLocalizedString(@"UL", "Torrent -> status string"), [NSString stringForSpeed: [self uploadRate]]]; |
---|
1108 | break; |
---|
1109 | |
---|
1110 | case TR_STATUS_SEED: |
---|
1111 | string = [NSString stringWithFormat: @"%@: %@, %@: %@", |
---|
1112 | NSLocalizedString(@"Ratio", "Torrent -> status string"), [NSString stringForRatio: [self ratio]], |
---|
1113 | NSLocalizedString(@"UL", "Torrent -> status string"), [NSString stringForSpeed: [self uploadRate]]]; |
---|
1114 | } |
---|
1115 | |
---|
1116 | return string; |
---|
1117 | } |
---|
1118 | |
---|
1119 | - (NSString *) remainingTimeString |
---|
1120 | { |
---|
1121 | if (fStat->activity == TR_STATUS_DOWNLOAD || ([self isSeeding] && [self seedRatioSet])) |
---|
1122 | return [self etaString]; |
---|
1123 | else |
---|
1124 | return [self shortStatusString]; |
---|
1125 | } |
---|
1126 | |
---|
1127 | - (NSString *) stateString |
---|
1128 | { |
---|
1129 | switch (fStat->activity) |
---|
1130 | { |
---|
1131 | case TR_STATUS_STOPPED: |
---|
1132 | return NSLocalizedString(@"Paused", "Torrent -> status string"); |
---|
1133 | |
---|
1134 | case TR_STATUS_CHECK: |
---|
1135 | return [NSString localizedStringWithFormat: @"%@ (%.2f%%)", |
---|
1136 | NSLocalizedString(@"Checking existing data", "Torrent -> status string"), 100.0 * [self checkingProgress]]; |
---|
1137 | |
---|
1138 | case TR_STATUS_CHECK_WAIT: |
---|
1139 | return [NSLocalizedString(@"Waiting to check existing data", "Torrent -> status string") stringByAppendingEllipsis]; |
---|
1140 | |
---|
1141 | case TR_STATUS_DOWNLOAD: |
---|
1142 | return NSLocalizedString(@"Downloading", "Torrent -> status string"); |
---|
1143 | |
---|
1144 | case TR_STATUS_SEED: |
---|
1145 | return NSLocalizedString(@"Seeding", "Torrent -> status string"); |
---|
1146 | } |
---|
1147 | } |
---|
1148 | |
---|
1149 | - (NSInteger) totalPeersConnected |
---|
1150 | { |
---|
1151 | return fStat->peersConnected; |
---|
1152 | } |
---|
1153 | |
---|
1154 | - (NSInteger) totalPeersTracker |
---|
1155 | { |
---|
1156 | return fStat->peersFrom[TR_PEER_FROM_TRACKER]; |
---|
1157 | } |
---|
1158 | |
---|
1159 | - (NSInteger) totalPeersIncoming |
---|
1160 | { |
---|
1161 | return fStat->peersFrom[TR_PEER_FROM_INCOMING]; |
---|
1162 | } |
---|
1163 | |
---|
1164 | - (NSInteger) totalPeersCache |
---|
1165 | { |
---|
1166 | return fStat->peersFrom[TR_PEER_FROM_RESUME]; |
---|
1167 | } |
---|
1168 | |
---|
1169 | - (NSInteger) totalPeersPex |
---|
1170 | { |
---|
1171 | return fStat->peersFrom[TR_PEER_FROM_PEX]; |
---|
1172 | } |
---|
1173 | |
---|
1174 | - (NSInteger) totalPeersDHT |
---|
1175 | { |
---|
1176 | return fStat->peersFrom[TR_PEER_FROM_DHT]; |
---|
1177 | } |
---|
1178 | |
---|
1179 | - (NSInteger) totalPeersLTEP |
---|
1180 | { |
---|
1181 | return fStat->peersFrom[TR_PEER_FROM_LTEP]; |
---|
1182 | } |
---|
1183 | |
---|
1184 | - (NSInteger) totalPeersKnown |
---|
1185 | { |
---|
1186 | return fStat->peersKnown; |
---|
1187 | } |
---|
1188 | |
---|
1189 | - (NSInteger) peersSendingToUs |
---|
1190 | { |
---|
1191 | return fStat->peersSendingToUs; |
---|
1192 | } |
---|
1193 | |
---|
1194 | - (NSInteger) peersGettingFromUs |
---|
1195 | { |
---|
1196 | return fStat->peersGettingFromUs; |
---|
1197 | } |
---|
1198 | |
---|
1199 | - (CGFloat) downloadRate |
---|
1200 | { |
---|
1201 | return fStat->pieceDownloadSpeed; |
---|
1202 | } |
---|
1203 | |
---|
1204 | - (CGFloat) uploadRate |
---|
1205 | { |
---|
1206 | return fStat->pieceUploadSpeed; |
---|
1207 | } |
---|
1208 | |
---|
1209 | - (CGFloat) totalRate |
---|
1210 | { |
---|
1211 | return [self downloadRate] + [self uploadRate]; |
---|
1212 | } |
---|
1213 | |
---|
1214 | - (uint64_t) haveVerified |
---|
1215 | { |
---|
1216 | return fStat->haveValid; |
---|
1217 | } |
---|
1218 | |
---|
1219 | - (uint64_t) haveTotal |
---|
1220 | { |
---|
1221 | return [self haveVerified] + fStat->haveUnchecked; |
---|
1222 | } |
---|
1223 | |
---|
1224 | - (uint64_t) totalSizeSelected |
---|
1225 | { |
---|
1226 | return fStat->sizeWhenDone; |
---|
1227 | } |
---|
1228 | |
---|
1229 | - (uint64_t) downloadedTotal |
---|
1230 | { |
---|
1231 | return fStat->downloadedEver; |
---|
1232 | } |
---|
1233 | |
---|
1234 | - (uint64_t) uploadedTotal |
---|
1235 | { |
---|
1236 | return fStat->uploadedEver; |
---|
1237 | } |
---|
1238 | |
---|
1239 | - (uint64_t) failedHash |
---|
1240 | { |
---|
1241 | return fStat->corruptEver; |
---|
1242 | } |
---|
1243 | |
---|
1244 | - (NSInteger) groupValue |
---|
1245 | { |
---|
1246 | return fGroupValue; |
---|
1247 | } |
---|
1248 | |
---|
1249 | - (void) setGroupValue: (NSInteger) goupValue |
---|
1250 | { |
---|
1251 | fGroupValue = goupValue; |
---|
1252 | } |
---|
1253 | |
---|
1254 | - (NSInteger) groupOrderValue |
---|
1255 | { |
---|
1256 | return [[GroupsController groups] rowValueForIndex: fGroupValue]; |
---|
1257 | } |
---|
1258 | |
---|
1259 | - (void) checkGroupValueForRemoval: (NSNotification *) notification |
---|
1260 | { |
---|
1261 | if (fGroupValue != -1 && [[[notification userInfo] objectForKey: @"Index"] integerValue] == fGroupValue) |
---|
1262 | fGroupValue = -1; |
---|
1263 | } |
---|
1264 | |
---|
1265 | - (NSArray *) fileList |
---|
1266 | { |
---|
1267 | return fFileList; |
---|
1268 | } |
---|
1269 | |
---|
1270 | - (NSArray *) flatFileList |
---|
1271 | { |
---|
1272 | return fFlatFileList; |
---|
1273 | } |
---|
1274 | |
---|
1275 | - (NSInteger) fileCount |
---|
1276 | { |
---|
1277 | return fInfo->fileCount; |
---|
1278 | } |
---|
1279 | |
---|
1280 | - (void) updateFileStat |
---|
1281 | { |
---|
1282 | if (fFileStat) |
---|
1283 | tr_torrentFilesFree(fFileStat, [self fileCount]); |
---|
1284 | |
---|
1285 | fFileStat = tr_torrentFiles(fHandle, NULL); |
---|
1286 | } |
---|
1287 | |
---|
1288 | - (CGFloat) fileProgress: (FileListNode *) node |
---|
1289 | { |
---|
1290 | if ([self fileCount] == 1 || [self isComplete]) |
---|
1291 | return [self progress]; |
---|
1292 | |
---|
1293 | if (!fFileStat) |
---|
1294 | [self updateFileStat]; |
---|
1295 | |
---|
1296 | NSIndexSet * indexSet = [node indexes]; |
---|
1297 | |
---|
1298 | if ([indexSet count] == 1) |
---|
1299 | return fFileStat[[indexSet firstIndex]].progress; |
---|
1300 | |
---|
1301 | uint64_t have = 0; |
---|
1302 | for (NSInteger index = [indexSet firstIndex]; index != NSNotFound; index = [indexSet indexGreaterThanIndex: index]) |
---|
1303 | have += fFileStat[index].bytesCompleted; |
---|
1304 | |
---|
1305 | NSAssert([node size], @"directory in torrent file has size 0"); |
---|
1306 | return (CGFloat)have / [node size]; |
---|
1307 | } |
---|
1308 | |
---|
1309 | - (BOOL) canChangeDownloadCheckForFile: (NSUInteger) index |
---|
1310 | { |
---|
1311 | NSAssert2(index < [self fileCount], @"Index %d is greater than file count %d", index, [self fileCount]); |
---|
1312 | |
---|
1313 | if ([self fileCount] == 1 || [self isComplete]) |
---|
1314 | return NO; |
---|
1315 | |
---|
1316 | if (!fFileStat) |
---|
1317 | [self updateFileStat]; |
---|
1318 | |
---|
1319 | return fFileStat[index].progress < 1.0; |
---|
1320 | } |
---|
1321 | |
---|
1322 | - (BOOL) canChangeDownloadCheckForFiles: (NSIndexSet *) indexSet |
---|
1323 | { |
---|
1324 | if ([self fileCount] == 1 || [self isComplete]) |
---|
1325 | return NO; |
---|
1326 | |
---|
1327 | if (!fFileStat) |
---|
1328 | [self updateFileStat]; |
---|
1329 | |
---|
1330 | for (NSUInteger index = [indexSet firstIndex]; index != NSNotFound; index = [indexSet indexGreaterThanIndex: index]) |
---|
1331 | if (fFileStat[index].progress < 1.0) |
---|
1332 | return YES; |
---|
1333 | return NO; |
---|
1334 | } |
---|
1335 | |
---|
1336 | - (NSInteger) checkForFiles: (NSIndexSet *) indexSet |
---|
1337 | { |
---|
1338 | NSAssert(indexSet != nil, @"indexSet must not be nil"); |
---|
1339 | |
---|
1340 | BOOL onState = NO, offState = NO; |
---|
1341 | for (NSUInteger index = [indexSet firstIndex]; index != NSNotFound; index = [indexSet indexGreaterThanIndex: index]) |
---|
1342 | { |
---|
1343 | if (tr_torrentGetFileDL(fHandle, index) || ![self canChangeDownloadCheckForFile: index]) |
---|
1344 | onState = YES; |
---|
1345 | else |
---|
1346 | offState = YES; |
---|
1347 | |
---|
1348 | if (onState && offState) |
---|
1349 | return NSMixedState; |
---|
1350 | } |
---|
1351 | return onState ? NSOnState : NSOffState; |
---|
1352 | } |
---|
1353 | |
---|
1354 | - (void) setFileCheckState: (NSInteger) state forIndexes: (NSIndexSet *) indexSet |
---|
1355 | { |
---|
1356 | NSUInteger count = [indexSet count]; |
---|
1357 | tr_file_index_t * files = malloc(count * sizeof(tr_file_index_t)); |
---|
1358 | for (NSUInteger index = [indexSet firstIndex], i = 0; index != NSNotFound; index = [indexSet indexGreaterThanIndex: index], i++) |
---|
1359 | files[i] = index; |
---|
1360 | |
---|
1361 | tr_torrentSetFileDLs(fHandle, files, count, state != NSOffState); |
---|
1362 | free(files); |
---|
1363 | |
---|
1364 | [self update]; |
---|
1365 | [[NSNotificationCenter defaultCenter] postNotificationName: @"TorrentFileCheckChange" object: self]; |
---|
1366 | } |
---|
1367 | |
---|
1368 | - (void) setFilePriority: (tr_priority_t) priority forIndexes: (NSIndexSet *) indexSet |
---|
1369 | { |
---|
1370 | const NSUInteger count = [indexSet count]; |
---|
1371 | tr_file_index_t * files = tr_malloc(count * sizeof(tr_file_index_t)); |
---|
1372 | for (NSUInteger index = [indexSet firstIndex], i = 0; index != NSNotFound; index = [indexSet indexGreaterThanIndex: index], i++) |
---|
1373 | files[i] = index; |
---|
1374 | |
---|
1375 | tr_torrentSetFilePriorities(fHandle, files, count, priority); |
---|
1376 | tr_free(files); |
---|
1377 | } |
---|
1378 | |
---|
1379 | - (BOOL) hasFilePriority: (tr_priority_t) priority forIndexes: (NSIndexSet *) indexSet |
---|
1380 | { |
---|
1381 | for (NSUInteger index = [indexSet firstIndex]; index != NSNotFound; index = [indexSet indexGreaterThanIndex: index]) |
---|
1382 | if (priority == tr_torrentGetFilePriority(fHandle, index) && [self canChangeDownloadCheckForFile: index]) |
---|
1383 | return YES; |
---|
1384 | return NO; |
---|
1385 | } |
---|
1386 | |
---|
1387 | - (NSSet *) filePrioritiesForIndexes: (NSIndexSet *) indexSet |
---|
1388 | { |
---|
1389 | BOOL low = NO, normal = NO, high = NO; |
---|
1390 | NSMutableSet * priorities = [NSMutableSet setWithCapacity: MIN([indexSet count], 3)]; |
---|
1391 | |
---|
1392 | for (NSUInteger index = [indexSet firstIndex]; index != NSNotFound; index = [indexSet indexGreaterThanIndex: index]) |
---|
1393 | { |
---|
1394 | if (![self canChangeDownloadCheckForFile: index]) |
---|
1395 | continue; |
---|
1396 | |
---|
1397 | const tr_priority_t priority = tr_torrentGetFilePriority(fHandle, index); |
---|
1398 | if (priority == TR_PRI_LOW) |
---|
1399 | { |
---|
1400 | if (low) |
---|
1401 | continue; |
---|
1402 | low = YES; |
---|
1403 | } |
---|
1404 | else if (priority == TR_PRI_HIGH) |
---|
1405 | { |
---|
1406 | if (high) |
---|
1407 | continue; |
---|
1408 | high = YES; |
---|
1409 | } |
---|
1410 | else |
---|
1411 | { |
---|
1412 | if (normal) |
---|
1413 | continue; |
---|
1414 | normal = YES; |
---|
1415 | } |
---|
1416 | |
---|
1417 | [priorities addObject: [NSNumber numberWithInteger: priority]]; |
---|
1418 | if (low && normal && high) |
---|
1419 | break; |
---|
1420 | } |
---|
1421 | return priorities; |
---|
1422 | } |
---|
1423 | |
---|
1424 | - (NSDate *) dateAdded |
---|
1425 | { |
---|
1426 | const time_t date = fStat->addedDate; |
---|
1427 | return [NSDate dateWithTimeIntervalSince1970: date]; |
---|
1428 | } |
---|
1429 | |
---|
1430 | - (NSDate *) dateCompleted |
---|
1431 | { |
---|
1432 | const time_t date = fStat->doneDate; |
---|
1433 | return date != 0 ? [NSDate dateWithTimeIntervalSince1970: date] : nil; |
---|
1434 | } |
---|
1435 | |
---|
1436 | - (NSDate *) dateActivity |
---|
1437 | { |
---|
1438 | const time_t date = fStat->activityDate; |
---|
1439 | return date != 0 ? [NSDate dateWithTimeIntervalSince1970: date] : nil; |
---|
1440 | } |
---|
1441 | |
---|
1442 | - (NSDate *) dateActivityOrAdd |
---|
1443 | { |
---|
1444 | NSDate * date = [self dateActivity]; |
---|
1445 | return date ? date : [self dateAdded]; |
---|
1446 | } |
---|
1447 | |
---|
1448 | - (NSInteger) stalledMinutes |
---|
1449 | { |
---|
1450 | const time_t start = fStat->startDate; |
---|
1451 | if (start == 0) |
---|
1452 | return -1; |
---|
1453 | |
---|
1454 | NSDate * started = [NSDate dateWithTimeIntervalSince1970: start], |
---|
1455 | * activity = [self dateActivity]; |
---|
1456 | |
---|
1457 | NSDate * laterDate = activity ? [started laterDate: activity] : started; |
---|
1458 | |
---|
1459 | return ABS([laterDate timeIntervalSinceNow]) / 60; |
---|
1460 | } |
---|
1461 | |
---|
1462 | - (BOOL) isStalled |
---|
1463 | { |
---|
1464 | return fStalled; |
---|
1465 | } |
---|
1466 | |
---|
1467 | - (void) updateTimeMachineExclude |
---|
1468 | { |
---|
1469 | NSString * currentLocation = ![self allDownloaded] ? [self dataLocation] : nil; |
---|
1470 | |
---|
1471 | //return if the locations are the same |
---|
1472 | if (fTimeMachineExclude && currentLocation && [fTimeMachineExclude isEqualToString: currentLocation]) |
---|
1473 | return; |
---|
1474 | |
---|
1475 | //remove old location... |
---|
1476 | if (fTimeMachineExclude) |
---|
1477 | { |
---|
1478 | [self setTimeMachineExclude: NO forPath: fTimeMachineExclude]; |
---|
1479 | [fTimeMachineExclude release]; |
---|
1480 | fTimeMachineExclude = nil; |
---|
1481 | } |
---|
1482 | |
---|
1483 | //...set new location |
---|
1484 | if (currentLocation) |
---|
1485 | { |
---|
1486 | [self setTimeMachineExclude: YES forPath: currentLocation]; |
---|
1487 | fTimeMachineExclude = [currentLocation retain]; |
---|
1488 | } |
---|
1489 | } |
---|
1490 | |
---|
1491 | - (NSInteger) stateSortKey |
---|
1492 | { |
---|
1493 | if (![self isActive]) //paused |
---|
1494 | { |
---|
1495 | if (fWaitToStart) |
---|
1496 | return 1; |
---|
1497 | else |
---|
1498 | return 0; |
---|
1499 | } |
---|
1500 | else if ([self isSeeding]) //seeding |
---|
1501 | return 10; |
---|
1502 | else //downloading |
---|
1503 | return 20; |
---|
1504 | } |
---|
1505 | |
---|
1506 | - (NSString *) trackerSortKey |
---|
1507 | { |
---|
1508 | int count; |
---|
1509 | tr_tracker_stat * stats = tr_torrentTrackers(fHandle, &count); |
---|
1510 | |
---|
1511 | NSString * best = nil; |
---|
1512 | |
---|
1513 | for (int i=0; i < count; ++i) |
---|
1514 | { |
---|
1515 | NSString * tracker = [NSString stringWithUTF8String: stats[i].host]; |
---|
1516 | if (!best || [tracker localizedCaseInsensitiveCompare: best] == NSOrderedAscending) |
---|
1517 | best = tracker; |
---|
1518 | } |
---|
1519 | |
---|
1520 | tr_torrentTrackersFree(stats, count); |
---|
1521 | return best; |
---|
1522 | } |
---|
1523 | |
---|
1524 | - (tr_torrent *) torrentStruct |
---|
1525 | { |
---|
1526 | return fHandle; |
---|
1527 | } |
---|
1528 | |
---|
1529 | - (NSURL *) previewItemURL |
---|
1530 | { |
---|
1531 | NSString * location = [self dataLocation]; |
---|
1532 | return location ? [NSURL fileURLWithPath: location] : nil; |
---|
1533 | } |
---|
1534 | |
---|
1535 | @end |
---|
1536 | |
---|
1537 | @implementation Torrent (Private) |
---|
1538 | |
---|
1539 | - (id) initWithPath: (NSString *) path hash: (NSString *) hashString torrentStruct: (tr_torrent *) torrentStruct |
---|
1540 | magnetAddress: (NSString *) magnetAddress lib: (tr_session *) lib |
---|
1541 | waitToStart: (NSNumber *) waitToStart |
---|
1542 | groupValue: (NSNumber *) groupValue |
---|
1543 | downloadFolder: (NSString *) downloadFolder legacyIncompleteFolder: (NSString *) incompleteFolder |
---|
1544 | { |
---|
1545 | if (!(self = [super init])) |
---|
1546 | return nil; |
---|
1547 | |
---|
1548 | fDefaults = [NSUserDefaults standardUserDefaults]; |
---|
1549 | |
---|
1550 | if (torrentStruct) |
---|
1551 | fHandle = torrentStruct; |
---|
1552 | else |
---|
1553 | { |
---|
1554 | //set libtransmission settings for initialization |
---|
1555 | tr_ctor * ctor = tr_ctorNew(lib); |
---|
1556 | |
---|
1557 | tr_ctorSetPaused(ctor, TR_FORCE, YES); |
---|
1558 | if (downloadFolder) |
---|
1559 | tr_ctorSetDownloadDir(ctor, TR_FORCE, [downloadFolder UTF8String]); |
---|
1560 | if (incompleteFolder) |
---|
1561 | tr_ctorSetIncompleteDir(ctor, [incompleteFolder UTF8String]); |
---|
1562 | |
---|
1563 | tr_parse_result result = TR_PARSE_ERR; |
---|
1564 | if (path) |
---|
1565 | result = tr_ctorSetMetainfoFromFile(ctor, [path UTF8String]); |
---|
1566 | |
---|
1567 | if (result != TR_PARSE_OK && magnetAddress) |
---|
1568 | result = tr_ctorSetMetainfoFromMagnetLink(ctor, [magnetAddress UTF8String]); |
---|
1569 | |
---|
1570 | //backup - shouldn't be needed after upgrade to 1.70 |
---|
1571 | if (result != TR_PARSE_OK && hashString) |
---|
1572 | result = tr_ctorSetMetainfoFromHash(ctor, [hashString UTF8String]); |
---|
1573 | |
---|
1574 | if (result == TR_PARSE_OK) |
---|
1575 | fHandle = tr_torrentNew(ctor, NULL); |
---|
1576 | |
---|
1577 | tr_ctorFree(ctor); |
---|
1578 | |
---|
1579 | if (!fHandle) |
---|
1580 | { |
---|
1581 | [self release]; |
---|
1582 | return nil; |
---|
1583 | } |
---|
1584 | } |
---|
1585 | |
---|
1586 | fInfo = tr_torrentInfo(fHandle); |
---|
1587 | |
---|
1588 | tr_torrentSetCompletenessCallback(fHandle, completenessChangeCallback, self); |
---|
1589 | tr_torrentSetRatioLimitHitCallback(fHandle, ratioLimitHitCallback, self); |
---|
1590 | tr_torrentSetMetadataCallback(fHandle, metadataCallback, self); |
---|
1591 | |
---|
1592 | fHashString = [[NSString alloc] initWithUTF8String: fInfo->hashString]; |
---|
1593 | |
---|
1594 | fFinishedSeeding = NO; |
---|
1595 | |
---|
1596 | fWaitToStart = waitToStart && [waitToStart boolValue]; |
---|
1597 | fResumeOnWake = NO; |
---|
1598 | |
---|
1599 | //don't do after this point - it messes with auto-group functionality |
---|
1600 | if (![self isMagnet]) |
---|
1601 | [self createFileList]; |
---|
1602 | |
---|
1603 | fGroupValue = groupValue ? [groupValue intValue] : [[GroupsController groups] groupIndexForTorrent: self]; |
---|
1604 | |
---|
1605 | [[NSNotificationCenter defaultCenter] addObserver: self selector: @selector(checkGroupValueForRemoval:) |
---|
1606 | name: @"GroupValueRemoved" object: nil]; |
---|
1607 | |
---|
1608 | fTimeMachineExclude = nil; |
---|
1609 | [self update]; |
---|
1610 | |
---|
1611 | return self; |
---|
1612 | } |
---|
1613 | |
---|
1614 | - (void) createFileList |
---|
1615 | { |
---|
1616 | NSAssert(![self isMagnet], @"Cannot create a file list until the torrent is demagnetized"); |
---|
1617 | |
---|
1618 | if ([self isFolder]) |
---|
1619 | { |
---|
1620 | NSInteger count = [self fileCount]; |
---|
1621 | NSMutableArray * fileList = [NSMutableArray arrayWithCapacity: count], |
---|
1622 | * flatFileList = [NSMutableArray arrayWithCapacity: count]; |
---|
1623 | |
---|
1624 | for (NSInteger i = 0; i < count; i++) |
---|
1625 | { |
---|
1626 | tr_file * file = &fInfo->files[i]; |
---|
1627 | |
---|
1628 | NSString * fullPath = [NSString stringWithUTF8String: file->name]; |
---|
1629 | NSArray * pathComponents = [fullPath pathComponents]; |
---|
1630 | NSAssert1([pathComponents count] >= 2, @"Not enough components in path %@", fullPath); |
---|
1631 | |
---|
1632 | NSString * path = [pathComponents objectAtIndex: 0]; |
---|
1633 | NSString * name = [pathComponents objectAtIndex: 1]; |
---|
1634 | |
---|
1635 | if ([pathComponents count] > 2) |
---|
1636 | { |
---|
1637 | //determine if folder node already exists |
---|
1638 | FileListNode * node; |
---|
1639 | for (node in fileList) |
---|
1640 | if ([[node name] isEqualToString: name] && [node isFolder]) |
---|
1641 | break; |
---|
1642 | |
---|
1643 | if (!node) |
---|
1644 | { |
---|
1645 | node = [[FileListNode alloc] initWithFolderName: name path: path]; |
---|
1646 | [fileList addObject: node]; |
---|
1647 | [node release]; |
---|
1648 | } |
---|
1649 | |
---|
1650 | NSMutableArray * trimmedComponents = [NSMutableArray arrayWithArray: [pathComponents subarrayWithRange: |
---|
1651 | NSMakeRange(2, [pathComponents count]-2)]]; |
---|
1652 | |
---|
1653 | [node insertIndex: i withSize: file->length]; |
---|
1654 | [self insertPath: trimmedComponents forParent: node fileSize: file->length index: i flatList: flatFileList]; |
---|
1655 | } |
---|
1656 | else |
---|
1657 | { |
---|
1658 | FileListNode * node = [[FileListNode alloc] initWithFileName: name path: path size: file->length index: i]; |
---|
1659 | [fileList addObject: node]; |
---|
1660 | [flatFileList addObject: node]; |
---|
1661 | [node release]; |
---|
1662 | } |
---|
1663 | } |
---|
1664 | |
---|
1665 | fFileList = [[NSArray alloc] initWithArray: fileList]; |
---|
1666 | fFlatFileList = [[NSArray alloc] initWithArray: flatFileList]; |
---|
1667 | } |
---|
1668 | else |
---|
1669 | { |
---|
1670 | FileListNode * node = [[FileListNode alloc] initWithFileName: [self name] path: @"" size: [self size] index: 0]; |
---|
1671 | fFileList = [[NSArray arrayWithObject: node] retain]; |
---|
1672 | fFlatFileList = [fFileList retain]; |
---|
1673 | [node release]; |
---|
1674 | } |
---|
1675 | } |
---|
1676 | |
---|
1677 | - (void) insertPath: (NSMutableArray *) components forParent: (FileListNode *) parent fileSize: (uint64_t) size |
---|
1678 | index: (NSInteger) index flatList: (NSMutableArray *) flatFileList |
---|
1679 | { |
---|
1680 | NSString * name = [components objectAtIndex: 0]; |
---|
1681 | const BOOL isFolder = [components count] > 1; |
---|
1682 | |
---|
1683 | FileListNode * node = nil; |
---|
1684 | if (isFolder) |
---|
1685 | { |
---|
1686 | for (node in [parent children]) |
---|
1687 | if ([[node name] isEqualToString: name] && [node isFolder]) |
---|
1688 | break; |
---|
1689 | } |
---|
1690 | |
---|
1691 | //create new folder or file if it doesn't already exist |
---|
1692 | if (!node) |
---|
1693 | { |
---|
1694 | NSString * path = [[parent path] stringByAppendingPathComponent: [parent name]]; |
---|
1695 | if (isFolder) |
---|
1696 | node = [[FileListNode alloc] initWithFolderName: name path: path]; |
---|
1697 | else |
---|
1698 | { |
---|
1699 | node = [[FileListNode alloc] initWithFileName: name path: path size: size index: index]; |
---|
1700 | [flatFileList addObject: node]; |
---|
1701 | } |
---|
1702 | |
---|
1703 | [parent insertChild: node]; |
---|
1704 | [node release]; |
---|
1705 | } |
---|
1706 | |
---|
1707 | if (isFolder) |
---|
1708 | { |
---|
1709 | [node insertIndex: index withSize: size]; |
---|
1710 | |
---|
1711 | [components removeObjectAtIndex: 0]; |
---|
1712 | [self insertPath: components forParent: node fileSize: size index: index flatList: flatFileList]; |
---|
1713 | } |
---|
1714 | } |
---|
1715 | |
---|
1716 | //status has been retained |
---|
1717 | - (void) completenessChange: (NSNumber *) status |
---|
1718 | { |
---|
1719 | fStat = tr_torrentStat(fHandle); //don't call update yet to avoid auto-stop |
---|
1720 | |
---|
1721 | switch ([status intValue]) |
---|
1722 | { |
---|
1723 | case TR_SEED: |
---|
1724 | case TR_PARTIAL_SEED: |
---|
1725 | [[NSNotificationCenter defaultCenter] postNotificationName: @"TorrentFinishedDownloading" object: self]; |
---|
1726 | break; |
---|
1727 | |
---|
1728 | case TR_LEECH: |
---|
1729 | [[NSNotificationCenter defaultCenter] postNotificationName: @"TorrentRestartedDownloading" object: self]; |
---|
1730 | break; |
---|
1731 | } |
---|
1732 | [status release]; |
---|
1733 | |
---|
1734 | [self update]; |
---|
1735 | [self updateTimeMachineExclude]; |
---|
1736 | } |
---|
1737 | |
---|
1738 | - (void) ratioLimitHit |
---|
1739 | { |
---|
1740 | fStat = tr_torrentStat(fHandle); |
---|
1741 | |
---|
1742 | [[NSNotificationCenter defaultCenter] postNotificationName: @"TorrentStoppedForRatio" object: self]; |
---|
1743 | |
---|
1744 | fFinishedSeeding = YES; |
---|
1745 | } |
---|
1746 | |
---|
1747 | - (void) metadataRetrieved |
---|
1748 | { |
---|
1749 | fStat = tr_torrentStat(fHandle); |
---|
1750 | |
---|
1751 | [self createFileList]; |
---|
1752 | |
---|
1753 | [[NSNotificationCenter defaultCenter] postNotificationName: @"ResetInspector" object: self]; |
---|
1754 | } |
---|
1755 | |
---|
1756 | - (NSString *) etaString |
---|
1757 | { |
---|
1758 | const NSInteger eta = [self eta]; |
---|
1759 | switch (eta) |
---|
1760 | { |
---|
1761 | case TR_ETA_NOT_AVAIL: |
---|
1762 | case TR_ETA_UNKNOWN: |
---|
1763 | return NSLocalizedString(@"remaining time unknown", "Torrent -> eta string"); |
---|
1764 | default: |
---|
1765 | return [NSString stringWithFormat: NSLocalizedString(@"%@ remaining", "Torrent -> eta string"), |
---|
1766 | [NSString timeString: eta showSeconds: YES maxFields: 2]]; |
---|
1767 | } |
---|
1768 | } |
---|
1769 | |
---|
1770 | - (void) setTimeMachineExclude: (BOOL) exclude forPath: (NSString *) path |
---|
1771 | { |
---|
1772 | CSBackupSetItemExcluded((CFURLRef)[NSURL fileURLWithPath: path], exclude, true); |
---|
1773 | } |
---|
1774 | |
---|
1775 | @end |
---|