2007-09-16 01:02:06 +00:00
/******************************************************************************
2019-01-11 18:36:19 +00:00
* Copyright (c) 2005-2019 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.
*****************************************************************************/
2018-09-30 10:37:30 +00:00
#include <libtransmission/transmission.h>
#include <libtransmission/utils.h>
2012-07-25 12:46:49 +00:00
#import "NSApplicationAdditions.h"
2007-09-16 01:02:06 +00:00
#import "NSStringAdditions.h"
2010-04-23 16:59:14 +00:00
2010-07-10 02:31:05 +00:00
@interface NSString (Private)
2021-08-15 09:41:48 +00:00
+ (NSString*)stringForFileSizeLion:(uint64_t)size showUnitUnless:(NSString*)notAllowedUnit unitsUsed:(NSString**)unitUsed;
2011-01-08 05:11:28 +00:00
2021-08-15 09:41:48 +00:00
+ (NSString*)stringForSpeed:(CGFloat)speed kb:(NSString*)kb mb:(NSString*)mb gb:(NSString*)gb;
2010-07-10 02:31:05 +00:00
@end
2007-09-16 01:02:06 +00:00
@implementation NSString (NSStringAdditions)
2021-08-15 09:41:48 +00:00
+ (NSString*)ellipsis
2007-09-16 01:02:06 +00:00
{
2017-07-08 08:06:32 +00:00
return @"\xE2\x80\xA6";
2007-09-16 01:02:06 +00:00
}
2021-08-15 09:41:48 +00:00
- (NSString*)stringByAppendingEllipsis
2007-09-16 01:02:06 +00:00
{
2021-08-15 09:41:48 +00:00
return [self stringByAppendingString:NSString.ellipsis];
2007-09-16 01:02:06 +00:00
}
2017-02-05 19:29:20 +00:00
#warning use localizedStringWithFormat: directly when 10.9-only and stringsdict translations are in place
2021-08-15 09:41:48 +00:00
+ (NSString*)formattedUInteger:(NSUInteger)value
2010-11-14 20:26:58 +00:00
{
2021-08-15 09:41:48 +00:00
return [NSString localizedStringWithFormat:@"%lu", value];
2010-11-14 20:26:58 +00:00
}
2012-07-25 12:46:49 +00:00
#warning should we take long long instead?
2021-08-15 09:41:48 +00:00
+ (NSString*)stringForFileSize:(uint64_t)size
2007-09-16 01:02:06 +00:00
{
2021-08-15 09:41:48 +00:00
return [NSByteCountFormatter stringFromByteCount:size countStyle:NSByteCountFormatterCountStyleFile];
2011-01-08 05:11:28 +00:00
}
2012-07-25 12:46:49 +00:00
#warning should we take long long instead?
2021-08-15 09:41:48 +00:00
+ (NSString*)stringForFilePartialSize:(uint64_t)partialSize fullSize:(uint64_t)fullSize
2011-01-08 05:11:28 +00:00
{
2021-08-15 09:41:48 +00:00
NSByteCountFormatter* fileSizeFormatter = [[NSByteCountFormatter alloc] init];
2017-01-24 17:53:16 +00:00
2021-08-15 09:41:48 +00:00
NSString* fullString = [fileSizeFormatter stringFromByteCount:fullSize];
2017-01-24 17:53:16 +00:00
2017-02-05 19:29:20 +00:00
//figure out the magniture of the two, since we can't rely on comparing the units because of localization and pluralization issues (for example, "1 byte of 2 bytes")
BOOL partialUnitsSame;
if (partialSize == 0)
2021-08-15 09:41:48 +00:00
{
2017-02-05 19:29:20 +00:00
partialUnitsSame = YES; //we want to just show "0" when we have no partial data, so always set to the same units
2021-08-15 09:41:48 +00:00
}
2012-07-25 12:46:49 +00:00
else
{
2021-08-15 09:41:48 +00:00
unsigned int const magnitudePartial = log(partialSize) / log(1000);
// we have to catch 0 with a special case, so might as well avoid the math for all of magnitude 0
unsigned int const magnitudeFull = fullSize < 1000 ? 0 : log(fullSize) / log(1000);
2017-02-05 19:29:20 +00:00
partialUnitsSame = magnitudePartial == magnitudeFull;
2012-07-25 12:46:49 +00:00
}
2017-01-24 17:53:16 +00:00
2021-08-07 07:27:56 +00:00
fileSizeFormatter.includesUnit = !partialUnitsSame;
2021-08-15 09:41:48 +00:00
NSString* partialString = [fileSizeFormatter stringFromByteCount:partialSize];
2017-02-05 19:29:20 +00:00
2021-08-15 09:41:48 +00:00
return [NSString stringWithFormat:NSLocalizedString(@"%@ of %@", "file size string"), partialString, fullString];
2007-09-16 01:02:06 +00:00
}
2021-08-15 09:41:48 +00:00
+ (NSString*)stringForSpeed:(CGFloat)speed
2007-09-16 01:02:06 +00:00
{
2021-08-15 09:41:48 +00:00
return [self stringForSpeed:speed kb:NSLocalizedString(@"KB/s", "Transfer speed (kilobytes per second)")
mb:NSLocalizedString(@"MB/s", "Transfer speed (megabytes per second)")
gb:NSLocalizedString(@"GB/s", "Transfer speed (gigabytes per second)")];
2007-09-16 01:02:06 +00:00
}
2021-08-15 09:41:48 +00:00
+ (NSString*)stringForSpeedAbbrev:(CGFloat)speed
2007-09-16 01:02:06 +00:00
{
2021-08-15 09:41:48 +00:00
return [self stringForSpeed:speed kb:@"K" mb:@"M" gb:@"G"];
2007-09-16 01:02:06 +00:00
}
2021-08-15 09:41:48 +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)
2021-08-15 09:41:48 +00:00
{
2007-09-16 01:02:06 +00:00
return NSLocalizedString(@"N/A", "No Ratio");
2021-08-15 09:41:48 +00:00
}
2009-11-17 01:48:00 +00:00
else if ((int)ratio == TR_RATIO_INF)
2021-08-15 09:41:48 +00:00
{
2017-07-08 08:06:32 +00:00
return @"\xE2\x88\x9E";
2021-08-15 09:41:48 +00:00
}
2009-11-17 01:48:00 +00:00
else
{
if (ratio < 10.0)
2021-08-15 09:41:48 +00:00
{
return [NSString localizedStringWithFormat:@"%.2f", tr_truncd(ratio, 2)];
}
2009-11-17 01:48:00 +00:00
else if (ratio < 100.0)
2021-08-15 09:41:48 +00:00
{
return [NSString localizedStringWithFormat:@"%.1f", tr_truncd(ratio, 1)];
}
2009-11-17 01:48:00 +00:00
else
2021-08-15 09:41:48 +00:00
{
return [NSString localizedStringWithFormat:@"%.0f", tr_truncd(ratio, 0)];
}
2009-11-17 01:48:00 +00:00
}
2007-09-16 01:02:06 +00:00
}
2021-08-15 09:41:48 +00:00
+ (NSString*)percentString:(CGFloat)progress longDecimals:(BOOL)longDecimals
2010-06-24 00:00:43 +00:00
{
if (progress >= 1.0)
2021-08-15 09:41:48 +00:00
{
return [NSString localizedStringWithFormat:@"%d%%", 100];
}
2010-06-24 00:00:43 +00:00
else if (longDecimals)
2021-08-15 09:41:48 +00:00
{
return [NSString localizedStringWithFormat:@"%.2f%%", tr_truncd(progress * 100.0, 2)];
}
2010-06-24 00:00:43 +00:00
else
2021-08-15 09:41:48 +00:00
{
return [NSString localizedStringWithFormat:@"%.1f%%", tr_truncd(progress * 100.0, 1)];
}
2010-06-24 00:00:43 +00:00
}
2021-08-15 09:41:48 +00:00
- (NSComparisonResult)compareNumeric:(NSString*)string
2008-06-27 05:40:22 +00:00
{
2021-08-15 09:41:48 +00:00
NSStringCompareOptions const comparisonOptions = NSNumericSearch | NSForcedOrderingSearch;
return [self compare:string options:comparisonOptions range:NSMakeRange(0, self.length) locale:NSLocale.currentLocale];
2007-09-16 01:02:06 +00:00
}
2021-08-15 09:41:48 +00:00
- (NSArray*)betterComponentsSeparatedByCharactersInSet:(NSCharacterSet*)separators
2011-09-19 00:48:30 +00:00
{
2021-08-15 09:41:48 +00:00
NSMutableArray* components = [NSMutableArray array];
2017-01-24 17:53:16 +00:00
2021-08-15 09:41:48 +00:00
NSCharacterSet* includededCharSet = separators.invertedSet;
2013-03-07 23:55:31 +00:00
NSUInteger index = 0;
2021-08-15 09:41:48 +00:00
NSUInteger const fullLength = self.length;
2013-03-07 23:55:31 +00:00
do
2011-09-19 01:37:43 +00:00
{
2021-08-15 09:41:48 +00:00
NSUInteger const start = [self rangeOfCharacterFromSet:includededCharSet options:0
range:NSMakeRange(index, fullLength - index)]
.location;
2013-03-07 23:55:31 +00:00
if (start == NSNotFound)
2021-08-15 09:41:48 +00:00
{
2013-03-07 23:55:31 +00:00
break;
2021-08-15 09:41:48 +00:00
}
2017-01-24 17:53:16 +00:00
2021-08-15 09:41:48 +00:00
NSRange const endRange = [self rangeOfCharacterFromSet:separators options:0 range:NSMakeRange(start, fullLength - start)];
2013-03-07 23:55:31 +00:00
if (endRange.location == NSNotFound)
2011-09-19 01:37:43 +00:00
{
2021-08-15 09:41:48 +00:00
[components addObject:[self substringFromIndex:start]];
2011-09-24 19:38:04 +00:00
break;
2011-09-19 01:37:43 +00:00
}
2017-01-24 17:53:16 +00:00
2021-08-15 09:41:48 +00:00
[components addObject:[self substringWithRange:NSMakeRange(start, endRange.location - start)]];
2017-01-24 17:53:16 +00:00
2013-03-07 23:55:31 +00:00
index = NSMaxRange(endRange);
2021-08-15 09:41:48 +00:00
} while (YES);
2017-01-24 17:53:16 +00:00
2011-09-19 00:48:30 +00:00
return components;
}
2007-09-16 01:02:06 +00:00
@end
2010-07-10 02:31:05 +00:00
@implementation NSString (Private)
2021-08-15 09:41:48 +00:00
+ (NSString*)stringForFileSizeLion:(uint64_t)size showUnitUnless:(NSString*)notAllowedUnit unitsUsed:(NSString**)unitUsed
2011-01-08 05:11:28 +00:00
{
double convertedSize;
2021-08-15 09:41:48 +00:00
NSString* unit;
2011-01-08 05:11:28 +00:00
NSUInteger decimals;
2011-10-06 00:30:40 +00:00
if (size < pow(1000, 2))
2011-01-08 05:11:28 +00:00
{
2011-10-06 00:30:40 +00:00
convertedSize = size / 1000.0;
2011-01-08 05:11:28 +00:00
unit = NSLocalizedString(@"KB", "File size - kilobytes");
2011-01-09 19:24:27 +00:00
decimals = convertedSize >= 10.0 ? 0 : 1;
2011-01-08 05:11:28 +00:00
}
2011-10-06 00:30:40 +00:00
else if (size < pow(1000, 3))
2011-01-08 05:11:28 +00:00
{
2011-10-06 00:30:40 +00:00
convertedSize = size / powf(1000.0, 2);
2011-01-08 05:11:28 +00:00
unit = NSLocalizedString(@"MB", "File size - megabytes");
decimals = 1;
}
2011-10-06 00:30:40 +00:00
else if (size < pow(1000, 4))
2011-01-08 05:11:28 +00:00
{
2011-10-06 00:30:40 +00:00
convertedSize = size / powf(1000.0, 3);
2011-01-08 05:11:28 +00:00
unit = NSLocalizedString(@"GB", "File size - gigabytes");
decimals = 2;
}
else
{
2011-10-06 00:30:40 +00:00
convertedSize = size / powf(1000.0, 4);
2011-01-08 05:11:28 +00:00
unit = NSLocalizedString(@"TB", "File size - terabytes");
2012-07-05 00:18:15 +00:00
decimals = 2;
2011-01-08 05:11:28 +00:00
}
2017-01-24 17:53:16 +00:00
2011-01-08 05:11:28 +00:00
//match Finder's behavior
2021-08-15 09:41:48 +00:00
NSNumberFormatter* numberFormatter = [[NSNumberFormatter alloc] init];
2021-08-07 07:27:56 +00:00
numberFormatter.numberStyle = NSNumberFormatterDecimalStyle;
numberFormatter.minimumFractionDigits = 0;
numberFormatter.maximumFractionDigits = decimals;
2017-01-24 17:53:16 +00:00
2021-08-15 09:41:48 +00:00
NSString* fileSizeString = [numberFormatter stringFromNumber:@(convertedSize)];
2017-01-24 17:53:16 +00:00
2021-08-15 09:41:48 +00:00
if (!notAllowedUnit || ![unit isEqualToString:notAllowedUnit])
{
fileSizeString = [fileSizeString stringByAppendingFormat:@" %@", unit];
}
2017-01-24 17:53:16 +00:00
2011-01-08 05:11:28 +00:00
if (unitUsed)
2021-08-15 09:41:48 +00:00
{
2011-01-08 05:11:28 +00:00
*unitUsed = unit;
2021-08-15 09:41:48 +00:00
}
2017-01-24 17:53:16 +00:00
2011-01-08 05:11:28 +00:00
return fileSizeString;
}
2021-08-15 09:41:48 +00:00
+ (NSString*)stringForSpeed:(CGFloat)speed kb:(NSString*)kb mb:(NSString*)mb gb:(NSString*)gb
2010-07-10 02:31:05 +00:00
{
if (speed <= 999.95) //0.0 KB/s to 999.9 KB/s
2021-08-15 09:41:48 +00:00
{
return [NSString localizedStringWithFormat:@"%.1f %@", speed, kb];
}
2017-01-24 17:53:16 +00:00
2011-10-06 00:30:40 +00:00
speed /= 1000.0;
2017-01-24 17:53:16 +00:00
2010-09-12 22:20:19 +00:00
if (speed <= 99.995) //1.00 MB/s to 99.99 MB/s
2021-08-15 09:41:48 +00:00
{
return [NSString localizedStringWithFormat:@"%.2f %@", speed, mb];
}
2010-07-10 02:31:05 +00:00
else if (speed <= 999.95) //100.0 MB/s to 999.9 MB/s
2021-08-15 09:41:48 +00:00
{
return [NSString localizedStringWithFormat:@"%.1f %@", speed, mb];
}
2010-07-10 02:31:05 +00:00
else //insane speeds
2021-08-15 09:41:48 +00:00
{
return [NSString localizedStringWithFormat:@"%.2f %@", (speed / 1000.0), gb];
}
2010-07-10 02:31:05 +00:00
}
@end