transmission/macosx/TrackerNode.m

148 lines
5.3 KiB
Mathematica
Raw Normal View History

/******************************************************************************
* $Id$
*
* Copyright (c) 2009 Transmission authors and contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*****************************************************************************/
#import "TrackerNode.h"
#import "NSApplicationAdditions.h"
#import "NSStringAdditions.h"
@implementation TrackerNode
- (id) initWithTrackerStat: (tr_tracker_stat *) stat
{
if ((self = [super init]))
{
fStat = *stat;
}
return self;
}
- (id) copyWithZone: (NSZone *) zone
{
//this object is essentially immutable after initial setup
return [self retain];
}
- (NSString *) host
{
return [NSString stringWithUTF8String: fStat.host];
}
- (NSString *) fullAnnounceAddress
{
return [NSString stringWithUTF8String: fStat.announce];
}
- (NSInteger) totalSeeders
{
return fStat.seederCount;
}
- (NSInteger) totalLeechers
{
return fStat.leecherCount;
}
- (NSInteger) totalDownloaded
{
return fStat.downloadCount;
}
- (NSString *) lastAnnounceStatusString
{
NSString * dateString;
if (fStat.hasAnnounced && fStat.lastAnnounceTime != 0)
{
NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateStyle: NSDateFormatterFullStyle];
[dateFormatter setTimeStyle: NSDateFormatterShortStyle];
if ([NSApp isOnSnowLeopardOrBetter])
[dateFormatter setDoesRelativeDateFormatting: YES];
dateString = [dateFormatter stringFromDate: [NSDate dateWithTimeIntervalSince1970: fStat.lastAnnounceTime]];
[dateFormatter release];
}
else
dateString = NSLocalizedString(@"N/A", "Tracker last announce");
if (fStat.hasAnnounced && !fStat.lastAnnounceSucceeded)
2009-09-28 14:51:13 +00:00
dateString = [NSLocalizedString(@"Announce error", "Tracker last announce") stringByAppendingFormat: @": %@ - %@",
[NSString stringWithUTF8String: fStat.lastAnnounceResult], dateString];
else
{
2009-09-28 14:51:13 +00:00
dateString = [NSLocalizedString(@"Last Announce", "Tracker last announce") stringByAppendingFormat: @": %@", dateString];
if (fStat.hasAnnounced && fStat.lastAnnounceSucceeded)
2009-09-28 03:19:11 +00:00
{
NSString * peerString = [NSString stringWithFormat: NSLocalizedString(@"got %d peers", "Tracker last announce"),
fStat.lastAnnouncePeerCount];
dateString = [dateString stringByAppendingFormat: @" (%@)", peerString];
}
}
return dateString;
}
- (NSString *) nextAnnounceStatusString
{
if (fStat.isAnnouncing)
return [NSLocalizedString(@"Announce in progress", "Tracker next announce") stringByAppendingEllipsis];
else if (fStat.willAnnounce)
return [NSString stringWithFormat: NSLocalizedString(@"Next announce in %@", "Tracker next announce"),
[NSString timeString: fStat.nextAnnounceTime - [[NSDate date] timeIntervalSince1970] showSeconds: YES]];
2009-09-28 03:19:11 +00:00
else if (fStat.isActive)
return NSLocalizedString(@"Announce not scheduled", "Tracker next announce");
2009-09-28 03:19:11 +00:00
else
return NSLocalizedString(@"Tracker will be used as a backup", "Tracker next announce");
}
- (NSString *) lastScrapeStatusString
{
NSString * dateString;
if (fStat.hasScraped && fStat.lastScrapeTime != 0)
{
NSDateFormatter * dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setDateStyle: NSDateFormatterFullStyle];
[dateFormatter setTimeStyle: NSDateFormatterShortStyle];
if ([NSApp isOnSnowLeopardOrBetter])
[dateFormatter setDoesRelativeDateFormatting: YES];
dateString = [dateFormatter stringFromDate: [NSDate dateWithTimeIntervalSince1970: fStat.lastScrapeTime]];
[dateFormatter release];
}
else
2009-09-28 14:51:13 +00:00
dateString = NSLocalizedString(@"N/A", "Tracker last scrape");
if (fStat.hasScraped && !fStat.lastScrapeSucceeded)
2009-09-28 14:51:13 +00:00
dateString = [NSLocalizedString(@"Scrape error", "Tracker last scrape") stringByAppendingFormat: @": %@ - %@",
[NSString stringWithUTF8String: fStat.lastScrapeResult], dateString];
else
2009-09-28 14:51:13 +00:00
dateString = [NSLocalizedString(@"Last Scrape", "Tracker last scrape") stringByAppendingFormat: @": %@", dateString];
return dateString;
}
@end