2022-01-20 18:27:56 +00:00
// This file Copyright © 2005-2022 Transmission authors and contributors.
// It may be used under the MIT (SPDX: MIT) license.
// License text can be found in the licenses/ folder.
2007-09-16 01:02:06 +00:00
2018-09-30 10:37:30 +00:00
#include <libtransmission/transmission.h>
#include <libtransmission/utils.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
}
2022-05-14 19:00:55 +00:00
// Maximum supported localization is 9.22 EB, which is the maximum supported filesystem size by macOS, 8 EiB.
// https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/APFS_Guide/VolumeFormatComparison/VolumeFormatComparison.html
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
}
2022-05-14 19:00:55 +00:00
// Maximum supported localization is 9.22 EB, which is the maximum supported filesystem size by macOS, 8 EiB.
// https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/APFS_Guide/VolumeFormatComparison/VolumeFormatComparison.html
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
2022-04-21 14:28:38 +00:00
//figure out the magnitude 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")
2017-02-05 19:29:20 +00:00
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
2022-01-17 23:16:37 +00:00
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
}
2022-01-17 23:16:37 +00:00
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
}
2022-01-17 23:16:37 +00:00
if (ratio < 10.0)
2009-11-17 01:48:00 +00:00
{
2022-01-17 23:16:37 +00:00
return [NSString localizedStringWithFormat:@"%.2f", tr_truncd(ratio, 2)];
2009-11-17 01:48:00 +00:00
}
2022-01-17 23:16:37 +00:00
if (ratio < 100.0)
{
return [NSString localizedStringWithFormat:@"%.1f", tr_truncd(ratio, 1)];
}
return [NSString localizedStringWithFormat:@"%.0f", tr_truncd(ratio, 0)];
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
}
2022-05-14 19:00:55 +00:00
- (NSArray<NSString*>*)nonEmptyComponentsSeparatedByCharactersInSet:(NSCharacterSet*)separators
2011-09-19 00:48:30 +00:00
{
2022-05-14 19:00:55 +00:00
NSMutableArray<NSString*>* components = [NSMutableArray array];
for (NSString* evaluatedObject in [self componentsSeparatedByCharactersInSet:separators])
2011-09-19 01:37:43 +00:00
{
2022-05-14 19:00:55 +00:00
if (evaluatedObject.length > 0)
2011-09-19 01:37:43 +00:00
{
2022-05-14 19:00:55 +00:00
[components addObject:evaluatedObject];
2011-09-19 01:37:43 +00:00
}
2022-05-14 19:00:55 +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