2007-09-16 01:02:06 +00:00
|
|
|
/******************************************************************************
|
2007-11-26 19:10:53 +00:00
|
|
|
* $Id$
|
2007-09-16 01:02:06 +00:00
|
|
|
*
|
2010-01-01 21:12:04 +00:00
|
|
|
* Copyright (c) 2005-2010 Transmission authors and contributors
|
2007-09-16 01:02:06 +00:00
|
|
|
*
|
|
|
|
* 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 "NSStringAdditions.h"
|
2009-09-16 02:18:23 +00:00
|
|
|
#import "NSApplicationAdditions.h"
|
2010-04-23 16:59:14 +00:00
|
|
|
|
2007-09-16 01:02:06 +00:00
|
|
|
#import <transmission.h>
|
2010-04-23 16:59:14 +00:00
|
|
|
#import "utils.h"
|
2007-09-16 01:02:06 +00:00
|
|
|
|
|
|
|
@implementation NSString (NSStringAdditions)
|
|
|
|
|
|
|
|
+ (NSString *) ellipsis
|
|
|
|
{
|
|
|
|
return [NSString stringWithUTF8String: "\xE2\x80\xA6"];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) stringByAppendingEllipsis
|
|
|
|
{
|
|
|
|
return [self stringByAppendingString: [NSString ellipsis]];
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSString *) stringForFileSize: (uint64_t) size
|
|
|
|
{
|
2007-11-26 19:10:53 +00:00
|
|
|
if (size < 1024)
|
2009-09-18 03:49:55 +00:00
|
|
|
{
|
|
|
|
if (size != 1)
|
|
|
|
return [NSString stringWithFormat: @"%lld %@", size, NSLocalizedString(@"bytes", "File size - bytes")];
|
|
|
|
else
|
|
|
|
return NSLocalizedString(@"1 byte", "File size - bytes");
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
|
2008-10-25 21:49:06 +00:00
|
|
|
CGFloat convertedSize;
|
2007-09-16 01:02:06 +00:00
|
|
|
NSString * unit;
|
2008-10-25 21:49:06 +00:00
|
|
|
if (size < pow(1024, 2))
|
2007-11-26 19:10:53 +00:00
|
|
|
{
|
2009-11-07 22:57:37 +00:00
|
|
|
convertedSize = size / 1024.0;
|
2008-03-24 02:38:00 +00:00
|
|
|
unit = NSLocalizedString(@"KB", "File size - kilobytes");
|
2007-11-26 19:10:53 +00:00
|
|
|
}
|
2008-10-25 21:49:06 +00:00
|
|
|
else if (size < pow(1024, 3))
|
2007-11-26 19:10:53 +00:00
|
|
|
{
|
2009-11-07 22:57:37 +00:00
|
|
|
convertedSize = size / (CGFloat)pow(1024, 2);
|
2008-03-24 02:38:00 +00:00
|
|
|
unit = NSLocalizedString(@"MB", "File size - megabytes");
|
2007-11-26 19:10:53 +00:00
|
|
|
}
|
2008-10-25 21:49:06 +00:00
|
|
|
else if (size < pow(1024, 4))
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2009-11-07 22:57:37 +00:00
|
|
|
convertedSize = size / (CGFloat)pow(1024, 3);
|
2008-03-24 02:38:00 +00:00
|
|
|
unit = NSLocalizedString(@"GB", "File size - gigabytes");
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
2007-10-10 23:17:44 +00:00
|
|
|
else
|
|
|
|
{
|
2009-11-07 22:57:37 +00:00
|
|
|
convertedSize = size / (CGFloat)pow(1024, 4);
|
2008-03-24 02:38:00 +00:00
|
|
|
unit = NSLocalizedString(@"TB", "File size - terabytes");
|
2007-10-10 23:17:44 +00:00
|
|
|
}
|
2007-09-26 16:18:18 +00:00
|
|
|
|
|
|
|
//attempt to have minimum of 3 digits with at least 1 decimal
|
2009-11-07 22:57:37 +00:00
|
|
|
return convertedSize <= 9.995 ? [NSString localizedStringWithFormat: @"%.2f %@", convertedSize, unit]
|
2008-04-07 02:17:45 +00:00
|
|
|
: [NSString localizedStringWithFormat: @"%.1f %@", convertedSize, unit];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2008-10-25 21:49:06 +00:00
|
|
|
+ (NSString *) stringForSpeed: (CGFloat) speed
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2007-12-13 04:39:07 +00:00
|
|
|
return [[self stringForSpeedAbbrev: speed] stringByAppendingString: NSLocalizedString(@"B/s", "Transfer speed (Bytes per second)")];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2008-10-25 21:49:06 +00:00
|
|
|
+ (NSString *) stringForSpeedAbbrev: (CGFloat) speed
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2009-11-17 01:48:00 +00:00
|
|
|
if (speed <= 999.95) //0.0 K to 999.9 K
|
2008-04-07 02:17:45 +00:00
|
|
|
return [NSString localizedStringWithFormat: @"%.1f K", speed];
|
|
|
|
|
2009-11-17 01:48:00 +00:00
|
|
|
speed /= 1024.0;
|
2008-04-07 02:17:45 +00:00
|
|
|
|
2009-11-17 01:48:00 +00:00
|
|
|
if (speed <= 99.995) //0.98 M to 99.99 M
|
2008-04-07 02:17:45 +00:00
|
|
|
return [NSString localizedStringWithFormat: @"%.2f M", speed];
|
2009-11-17 01:48:00 +00:00
|
|
|
else if (speed <= 999.95) //100.0 M to 999.9 M
|
2008-04-07 02:17:45 +00:00
|
|
|
return [NSString localizedStringWithFormat: @"%.1f M", speed];
|
2007-09-16 01:02:06 +00:00
|
|
|
else //insane speeds
|
2009-12-12 18:52:03 +00:00
|
|
|
return [NSString localizedStringWithFormat: @"%.2f G", (speed / 1024.0)];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2008-10-25 21:49:06 +00:00
|
|
|
+ (NSString *) stringForRatio: (CGFloat) ratio
|
2009-03-05 04:31:30 +00:00
|
|
|
{
|
2009-03-05 04:59:24 +00:00
|
|
|
//N/A is different than libtransmission's
|
2009-11-17 01:48:00 +00:00
|
|
|
if ((int)ratio == TR_RATIO_NA)
|
2007-09-16 01:02:06 +00:00
|
|
|
return NSLocalizedString(@"N/A", "No Ratio");
|
2009-11-17 01:48:00 +00:00
|
|
|
else if ((int)ratio == TR_RATIO_INF)
|
|
|
|
return [NSString stringWithUTF8String: "\xE2\x88\x9E"];
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (ratio < 10.0)
|
|
|
|
return [NSString localizedStringWithFormat: @"%.2f", tr_truncd(ratio, 2)];
|
|
|
|
else if (ratio < 100.0)
|
|
|
|
return [NSString localizedStringWithFormat: @"%.1f", tr_truncd(ratio, 1)];
|
|
|
|
else
|
|
|
|
return [NSString localizedStringWithFormat: @"%.0f", tr_truncd(ratio, 0)];
|
|
|
|
}
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
2008-02-22 15:29:20 +00:00
|
|
|
+ (NSString *) timeString: (uint64_t) seconds showSeconds: (BOOL) showSeconds
|
|
|
|
{
|
2008-11-03 03:41:49 +00:00
|
|
|
return [NSString timeString: seconds showSeconds: showSeconds maxFields: NSUIntegerMax];
|
2008-02-22 15:29:20 +00:00
|
|
|
}
|
|
|
|
|
2008-11-04 01:31:24 +00:00
|
|
|
+ (NSString *) timeString: (uint64_t) seconds showSeconds: (BOOL) showSeconds maxFields: (NSUInteger) max
|
2008-02-22 15:29:20 +00:00
|
|
|
{
|
2009-12-31 03:19:54 +00:00
|
|
|
NSAssert(max > 0, @"Cannot generate a time string with no fields");
|
|
|
|
|
2008-02-24 15:16:13 +00:00
|
|
|
NSMutableArray * timeArray = [NSMutableArray arrayWithCapacity: MIN(max, 4)];
|
2009-10-26 23:43:15 +00:00
|
|
|
NSUInteger remaining = seconds; //causes problems for some users when it's a uint64_t
|
2008-02-22 15:29:20 +00:00
|
|
|
|
2009-12-31 03:19:54 +00:00
|
|
|
if (seconds >= (24 * 60 * 60))
|
2008-02-22 15:29:20 +00:00
|
|
|
{
|
2009-10-26 23:57:09 +00:00
|
|
|
const NSUInteger days = remaining / (24 * 60 * 60);
|
2008-02-22 15:29:20 +00:00
|
|
|
if (days == 1)
|
|
|
|
[timeArray addObject: NSLocalizedString(@"1 day", "time string")];
|
|
|
|
else
|
2008-02-26 00:28:22 +00:00
|
|
|
[timeArray addObject: [NSString stringWithFormat: NSLocalizedString(@"%u days", "time string"), days]];
|
2008-10-25 21:49:06 +00:00
|
|
|
remaining %= (24 * 60 * 60);
|
2008-02-22 15:29:20 +00:00
|
|
|
max--;
|
|
|
|
}
|
2008-10-25 21:49:06 +00:00
|
|
|
if (max > 0 && seconds >= (60 * 60))
|
2008-02-22 15:29:20 +00:00
|
|
|
{
|
2008-10-25 21:49:06 +00:00
|
|
|
[timeArray addObject: [NSString stringWithFormat: NSLocalizedString(@"%u hr", "time string"), remaining / (60 * 60)]];
|
|
|
|
remaining %= (60 * 60);
|
2008-02-22 15:29:20 +00:00
|
|
|
max--;
|
|
|
|
}
|
|
|
|
if (max > 0 && (!showSeconds || seconds >= 60))
|
|
|
|
{
|
2008-02-26 00:28:22 +00:00
|
|
|
[timeArray addObject: [NSString stringWithFormat: NSLocalizedString(@"%u min", "time string"), remaining / 60]];
|
2008-02-22 15:29:20 +00:00
|
|
|
remaining %= 60;
|
|
|
|
max--;
|
|
|
|
}
|
|
|
|
if (max > 0 && showSeconds)
|
2008-02-26 00:28:22 +00:00
|
|
|
[timeArray addObject: [NSString stringWithFormat: NSLocalizedString(@"%u sec", "time string"), remaining]];
|
2008-02-22 15:29:20 +00:00
|
|
|
|
|
|
|
return [timeArray componentsJoinedByString: @" "];
|
|
|
|
}
|
|
|
|
|
2009-12-10 04:44:21 +00:00
|
|
|
//also used in InfoWindow.xib and MessageWindow.xib
|
2008-06-27 05:15:50 +00:00
|
|
|
- (NSComparisonResult) compareFinder: (NSString *) string
|
2007-09-16 01:02:06 +00:00
|
|
|
{
|
2009-09-16 02:18:23 +00:00
|
|
|
if ([NSApp isOnSnowLeopardOrBetter])
|
|
|
|
return [self localizedStandardCompare: string];
|
|
|
|
else
|
|
|
|
{
|
2009-12-12 18:52:03 +00:00
|
|
|
const NSStringCompareOptions comparisonOptions = NSCaseInsensitiveSearch | NSNumericSearch | NSWidthInsensitiveSearch
|
|
|
|
| NSForcedOrderingSearch;
|
2009-09-16 02:18:23 +00:00
|
|
|
return [self compare: string options: comparisonOptions range: NSMakeRange(0, [self length]) locale: [NSLocale currentLocale]];
|
|
|
|
}
|
2008-06-27 05:15:50 +00:00
|
|
|
}
|
|
|
|
|
2008-06-27 05:40:22 +00:00
|
|
|
- (NSComparisonResult) compareNumeric: (NSString *) string
|
|
|
|
{
|
2009-12-12 18:52:03 +00:00
|
|
|
const NSStringCompareOptions comparisonOptions = NSNumericSearch | NSForcedOrderingSearch;
|
2008-06-27 05:40:22 +00:00
|
|
|
return [self compare: string options: comparisonOptions range: NSMakeRange(0, [self length]) locale: [NSLocale currentLocale]];
|
2007-09-16 01:02:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|