2006-07-16 19:39:23 +00:00
|
|
|
/******************************************************************************
|
2007-08-20 16:34:21 +00:00
|
|
|
* $Id: StringAdditions.m 2869 2007-08-19 03:03:28Z livings124 $
|
2006-07-16 19:39:23 +00:00
|
|
|
*
|
2007-04-03 02:22:25 +00:00
|
|
|
* Copyright (c) 2005-2007 Transmission authors and contributors
|
2006-07-16 19:39:23 +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.
|
|
|
|
*****************************************************************************/
|
|
|
|
|
2007-08-20 16:34:21 +00:00
|
|
|
#import "NSStringAdditions.h"
|
2006-12-30 19:24:09 +00:00
|
|
|
#import <transmission.h>
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-08-20 16:34:21 +00:00
|
|
|
@implementation NSString (NSStringAdditions)
|
2006-07-16 19:39:23 +00:00
|
|
|
|
|
|
|
+ (NSString *) ellipsis
|
|
|
|
{
|
|
|
|
return [NSString stringWithUTF8String: "\xE2\x80\xA6"];
|
|
|
|
}
|
|
|
|
|
|
|
|
- (NSString *) stringByAppendingEllipsis
|
|
|
|
{
|
|
|
|
return [self stringByAppendingString: [NSString ellipsis]];
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSString *) stringForFileSize: (uint64_t) size
|
|
|
|
{
|
|
|
|
if (size < 1024)
|
2006-10-24 20:34:13 +00:00
|
|
|
return [NSString stringWithFormat: NSLocalizedString(@"%lld bytes", "File size"), size];
|
2006-07-16 19:39:23 +00:00
|
|
|
|
2007-08-04 01:48:34 +00:00
|
|
|
float convertedSize;
|
2006-07-16 19:39:23 +00:00
|
|
|
NSString * unit;
|
|
|
|
if (size < 1048576)
|
|
|
|
{
|
2007-08-04 01:48:34 +00:00
|
|
|
convertedSize = size / 1024.0;
|
2006-10-24 20:34:13 +00:00
|
|
|
unit = NSLocalizedString(@" KB", "File size (beware of leading space)");
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
else if (size < 1073741824)
|
|
|
|
{
|
2007-08-04 01:48:34 +00:00
|
|
|
convertedSize = size / 1048576.0;
|
2006-10-24 20:34:13 +00:00
|
|
|
unit = NSLocalizedString(@" MB", "File size (beware of leading space)");
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2007-08-04 01:48:34 +00:00
|
|
|
convertedSize = size / 1073741824.0;
|
2006-10-24 20:34:13 +00:00
|
|
|
unit = NSLocalizedString(@" GB", "File size (beware of leading space)");
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NSString * sizeString;
|
|
|
|
//attempt to have values with 3 digits
|
|
|
|
if (convertedSize < 10.0)
|
|
|
|
sizeString = [NSString stringWithFormat: @"%.2f", convertedSize];
|
|
|
|
else if (convertedSize < 100.0)
|
|
|
|
sizeString = [NSString stringWithFormat: @"%.1f", convertedSize];
|
|
|
|
else
|
|
|
|
sizeString = [NSString stringWithFormat: @"%.0f", convertedSize];
|
|
|
|
|
|
|
|
return [sizeString stringByAppendingString: unit];
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSString *) stringForSpeed: (float) speed
|
|
|
|
{
|
2007-03-15 12:46:51 +00:00
|
|
|
if (speed < 0)
|
|
|
|
return NSLocalizedString(@"error", "Transfer speed invalid");
|
|
|
|
|
2007-01-18 06:22:15 +00:00
|
|
|
return [[self stringForSpeedAbbrev: speed] stringByAppendingString:
|
|
|
|
NSLocalizedString(@"B/s", "Transfer speed (Bytes per second)")];
|
2006-07-16 19:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSString *) stringForSpeedAbbrev: (float) speed
|
|
|
|
{
|
2007-03-15 12:46:51 +00:00
|
|
|
if (speed < 0)
|
|
|
|
return NSLocalizedString(@"error", "Transfer speed invalid");
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
if (speed < 1000.0) //0.0 K to 999.9 K
|
|
|
|
return [NSString stringWithFormat: @"%.1f K", speed];
|
|
|
|
else if (speed < 102400.0) //0.98 M to 99.99 M
|
|
|
|
return [NSString stringWithFormat: @"%.2f M", speed / 1024.0];
|
|
|
|
else if (speed < 1024000.0) //100.0 M to 999.9 M
|
|
|
|
return [NSString stringWithFormat: @"%.1f M", speed / 1024.0];
|
|
|
|
else //insane speeds
|
|
|
|
return [NSString stringWithFormat: @"%.2f G", speed / 1048576.0];
|
|
|
|
}
|
|
|
|
|
2006-12-30 19:24:09 +00:00
|
|
|
+ (NSString *) stringForRatio: (float) ratio
|
2006-07-16 19:39:23 +00:00
|
|
|
{
|
2006-12-30 19:24:09 +00:00
|
|
|
if (ratio == TR_RATIO_NA)
|
|
|
|
return NSLocalizedString(@"N/A", "No Ratio");
|
2007-03-15 12:46:51 +00:00
|
|
|
else if (ratio < 0)
|
|
|
|
return NSLocalizedString(@"error", "Ratio invalid");
|
2007-04-20 23:51:15 +00:00
|
|
|
else;
|
2007-03-15 12:46:51 +00:00
|
|
|
|
|
|
|
if (ratio < 10.0)
|
2006-07-16 19:39:23 +00:00
|
|
|
return [NSString stringWithFormat: @"%.2f", ratio];
|
|
|
|
else if (ratio < 100.0)
|
|
|
|
return [NSString stringWithFormat: @"%.1f", ratio];
|
|
|
|
else
|
|
|
|
return [NSString stringWithFormat: @"%.0f", ratio];
|
|
|
|
}
|
|
|
|
|
2006-08-14 23:39:51 +00:00
|
|
|
- (NSComparisonResult) compareIP: (NSString *) string
|
|
|
|
{
|
2006-08-30 21:40:36 +00:00
|
|
|
NSArray * selfSections = [self componentsSeparatedByString: @"."],
|
|
|
|
* newSections = [string componentsSeparatedByString: @"."];
|
|
|
|
|
|
|
|
if ([selfSections count] != [newSections count])
|
2007-02-09 12:52:32 +00:00
|
|
|
return [selfSections count] > [newSections count] ? NSOrderedDescending : NSOrderedAscending;
|
2006-08-30 21:40:36 +00:00
|
|
|
|
|
|
|
NSEnumerator * selfSectionsEnum = [selfSections objectEnumerator], * newSectionsEnum = [newSections objectEnumerator];
|
|
|
|
NSString * selfString, * newString;
|
2006-08-14 23:39:51 +00:00
|
|
|
NSComparisonResult result;
|
2006-08-30 21:40:36 +00:00
|
|
|
while ((selfString = [selfSectionsEnum nextObject]) && (newString = [newSectionsEnum nextObject]))
|
2006-08-14 23:39:51 +00:00
|
|
|
if ((result = [selfString compare: newString options: NSNumericSearch]) != NSOrderedSame)
|
|
|
|
return result;
|
|
|
|
|
2006-08-30 21:40:36 +00:00
|
|
|
return NSOrderedSame;
|
2006-08-14 23:39:51 +00:00
|
|
|
}
|
|
|
|
|
2007-05-10 03:24:45 +00:00
|
|
|
- (NSComparisonResult) clientCompare: (NSString *) string
|
|
|
|
{
|
|
|
|
BOOL selfBlank = [self isEqualToString: @""],
|
|
|
|
newBlank = [string isEqualToString: @""];
|
|
|
|
|
|
|
|
if (selfBlank && newBlank)
|
|
|
|
return NSOrderedSame;
|
|
|
|
else if (selfBlank)
|
|
|
|
return NSOrderedDescending;
|
|
|
|
else if (newBlank)
|
|
|
|
return NSOrderedAscending;
|
|
|
|
else
|
|
|
|
return [self caseInsensitiveCompare: string];
|
|
|
|
}
|
|
|
|
|
2006-07-16 19:39:23 +00:00
|
|
|
@end
|