2006-03-23 12:39:39 +00:00
|
|
|
/******************************************************************************
|
|
|
|
* Copyright (c) 2005-2006 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.
|
|
|
|
*****************************************************************************/
|
2006-01-20 01:13:21 +00:00
|
|
|
|
|
|
|
#import "StringAdditions.h"
|
|
|
|
#import "Utils.h"
|
|
|
|
|
|
|
|
@implementation NSString (StringAdditions)
|
|
|
|
|
2006-03-23 12:39:39 +00:00
|
|
|
+ (NSString *) stringWithInt: (int) value
|
|
|
|
{
|
|
|
|
return [NSString stringWithFormat: @"%d", value];
|
|
|
|
}
|
|
|
|
|
2006-01-20 01:13:21 +00:00
|
|
|
+ (NSString *) stringForFileSize: (uint64_t) size
|
|
|
|
{
|
|
|
|
if (size < 1024)
|
2006-03-28 10:36:56 +00:00
|
|
|
{
|
|
|
|
/* 0 to 1023 bytes */
|
2006-01-20 01:13:21 +00:00
|
|
|
return [NSString stringWithFormat: @"%lld bytes", size];
|
2006-03-28 10:36:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NSString * unit;
|
|
|
|
if (size < 1048576)
|
|
|
|
{
|
|
|
|
unit = @" KB";
|
|
|
|
}
|
2006-01-20 01:13:21 +00:00
|
|
|
else if (size < 1073741824)
|
2006-03-28 10:36:56 +00:00
|
|
|
{
|
|
|
|
unit = @" MB";
|
|
|
|
size /= 1024;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
unit = @" GB";
|
|
|
|
size /= 1048576;
|
|
|
|
}
|
|
|
|
|
|
|
|
NSString * value;
|
|
|
|
if (size < 10240)
|
|
|
|
/* 1.00 to 9.99 XB */
|
|
|
|
value = [NSString stringWithFormat: @"%lld.%02lld",
|
|
|
|
size / 1024, ( size % 1024 ) * 100 / 1024];
|
|
|
|
else if (size < 102400)
|
|
|
|
/* 10.0 to 99.9 XB */
|
2006-03-28 15:38:53 +00:00
|
|
|
value = [NSString stringWithFormat: @"%lld.%lld",
|
2006-03-28 10:36:56 +00:00
|
|
|
size / 1024, ( size % 1024 ) * 10 / 1024];
|
2006-01-20 01:13:21 +00:00
|
|
|
else
|
2006-03-28 10:36:56 +00:00
|
|
|
/* 100+ XB */
|
|
|
|
value = [NSString stringWithFormat: @"%lld", size / 1024];
|
|
|
|
|
|
|
|
return [value stringByAppendingString: unit];
|
2006-01-20 01:13:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSString *) stringForSpeed: (float) speed
|
2006-02-08 17:44:07 +00:00
|
|
|
{
|
|
|
|
return [[self stringForSpeedAbbrev: speed]
|
|
|
|
stringByAppendingString: @"B/s"];
|
|
|
|
}
|
|
|
|
|
|
|
|
+ (NSString *) stringForSpeedAbbrev: (float) speed
|
2006-01-20 01:13:21 +00:00
|
|
|
{
|
2006-02-09 06:38:09 +00:00
|
|
|
if (speed < 1000) /* 0.0 K to 999.9 K */
|
2006-02-08 17:44:07 +00:00
|
|
|
return [NSString stringWithFormat: @"%.1f K", speed];
|
2006-02-09 06:38:09 +00:00
|
|
|
else if (speed < 102400) /* 0.98 M to 99.99 M */
|
2006-02-08 17:44:07 +00:00
|
|
|
return [NSString stringWithFormat: @"%.2f M", speed / 1024];
|
2006-02-09 06:38:09 +00:00
|
|
|
else if (speed < 1024000) /* 100.0 M to 999.9 M */
|
|
|
|
return [NSString stringWithFormat: @"%.1f M", speed / 1024];
|
|
|
|
else /* Insane speeds */
|
2006-02-08 17:44:07 +00:00
|
|
|
return [NSString stringWithFormat: @"%.2f G", speed / 1048576];
|
2006-01-20 01:13:21 +00:00
|
|
|
}
|
|
|
|
|
2006-02-08 09:49:06 +00:00
|
|
|
+ (NSString *) stringForRatio: (uint64_t) down upload: (uint64_t) up
|
2006-02-07 05:02:45 +00:00
|
|
|
{
|
|
|
|
if( !down && !up )
|
|
|
|
return @"N/A";
|
|
|
|
if( !down )
|
2006-02-08 09:49:06 +00:00
|
|
|
return [NSString stringWithUTF8String: "\xE2\x88\x9E"];
|
2006-02-07 05:02:45 +00:00
|
|
|
|
|
|
|
float ratio = (float) up / (float) down;
|
|
|
|
if( ratio < 10.0 )
|
|
|
|
return [NSString stringWithFormat: @"%.2f", ratio];
|
|
|
|
else if( ratio < 100.0 )
|
|
|
|
return [NSString stringWithFormat: @"%.1f", ratio];
|
|
|
|
else
|
|
|
|
return [NSString stringWithFormat: @"%.0f", ratio];
|
|
|
|
}
|
|
|
|
|
2006-01-20 01:13:21 +00:00
|
|
|
- (NSString *) stringFittingInWidth: (float) width
|
|
|
|
withAttributes: (NSDictionary *) attributes
|
|
|
|
{
|
2006-02-09 13:44:14 +00:00
|
|
|
int i;
|
2006-02-10 05:59:19 +00:00
|
|
|
float realWidth = [self sizeWithAttributes: attributes].width;
|
|
|
|
|
|
|
|
/* The whole string fits */
|
|
|
|
if( realWidth <= width )
|
2006-02-09 13:44:14 +00:00
|
|
|
return self;
|
2006-02-10 05:59:19 +00:00
|
|
|
|
|
|
|
/* Width is too small */
|
|
|
|
if ( [NS_ELLIPSIS sizeWithAttributes: attributes].width > width )
|
|
|
|
return @"";
|
|
|
|
|
|
|
|
/* Don't worry about ellipsis until the end */
|
|
|
|
width -= [NS_ELLIPSIS sizeWithAttributes: attributes].width;
|
2006-02-09 13:44:14 +00:00
|
|
|
|
|
|
|
/* Approximate how many characters we'll need to drop... */
|
2006-02-10 05:59:19 +00:00
|
|
|
i = [self length] * (width / realWidth);
|
2006-02-09 13:44:14 +00:00
|
|
|
|
|
|
|
/* ... then refine it */
|
2006-02-10 05:59:19 +00:00
|
|
|
NSString * newString = [self substringToIndex: i];
|
|
|
|
realWidth = [newString sizeWithAttributes: attributes].width;
|
2006-02-09 13:44:14 +00:00
|
|
|
|
2006-02-10 05:59:19 +00:00
|
|
|
if( realWidth < width )
|
2006-02-09 13:44:14 +00:00
|
|
|
{
|
2006-02-10 05:59:19 +00:00
|
|
|
NSString * smallerString;
|
|
|
|
do
|
2006-02-09 13:44:14 +00:00
|
|
|
{
|
2006-02-10 05:59:19 +00:00
|
|
|
smallerString = newString;
|
|
|
|
newString = [self substringToIndex: ++i];
|
|
|
|
} while ([newString sizeWithAttributes: attributes].width <= width);
|
|
|
|
|
|
|
|
newString = smallerString;
|
2006-02-09 13:44:14 +00:00
|
|
|
}
|
2006-02-10 05:59:19 +00:00
|
|
|
else if( realWidth > width )
|
2006-02-09 13:44:14 +00:00
|
|
|
{
|
2006-02-10 05:59:19 +00:00
|
|
|
do
|
2006-02-09 13:44:14 +00:00
|
|
|
{
|
2006-02-10 05:59:19 +00:00
|
|
|
newString = [self substringToIndex: --i];
|
|
|
|
} while ([newString sizeWithAttributes: attributes].width > width);
|
2006-02-09 13:44:14 +00:00
|
|
|
}
|
2006-02-10 05:59:19 +00:00
|
|
|
else;
|
|
|
|
|
|
|
|
return [newString stringByAppendingString: NS_ELLIPSIS];
|
2006-01-20 01:13:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@end
|