mirror of https://github.com/oxen-io/session-ios
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.8 KiB
Objective-C
65 lines
1.8 KiB
Objective-C
//
|
|
// Copyright (c) 2017 Open Whisper Systems. All rights reserved.
|
|
//
|
|
|
|
#import "OWSFormat.h"
|
|
|
|
//#import "Environment.h"
|
|
//#import "HomeViewController.h"
|
|
//#import "PhoneNumber.h"
|
|
//#import "Signal-Swift.h"
|
|
//#import "StringUtil.h"
|
|
//#import <AVFoundation/AVFoundation.h>
|
|
//#import <SignalServiceKit/PhoneNumberUtil.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@implementation OWSFormat
|
|
|
|
+ (NSString *)formatInt:(int)value
|
|
{
|
|
static NSNumberFormatter *formatter = nil;
|
|
static dispatch_once_t onceToken;
|
|
dispatch_once(&onceToken, ^{
|
|
formatter = [NSNumberFormatter new];
|
|
formatter.numberStyle = NSNumberFormatterNoStyle;
|
|
});
|
|
return [formatter stringFromNumber:@(value)];
|
|
}
|
|
|
|
+ (NSString *)formatFileSize:(unsigned long)fileSize
|
|
{
|
|
const unsigned long kOneKilobyte = 1024;
|
|
const unsigned long kOneMegabyte = kOneKilobyte * kOneKilobyte;
|
|
|
|
NSNumberFormatter *numberFormatter = [NSNumberFormatter new];
|
|
numberFormatter.numberStyle = NSNumberFormatterDecimalStyle;
|
|
|
|
if (fileSize > kOneMegabyte * 10) {
|
|
return [[numberFormatter stringFromNumber:@((int)round(fileSize / (CGFloat)kOneMegabyte))]
|
|
stringByAppendingString:@" MB"];
|
|
} else if (fileSize > kOneKilobyte * 10) {
|
|
return [[numberFormatter stringFromNumber:@((int)round(fileSize / (CGFloat)kOneKilobyte))]
|
|
stringByAppendingString:@" KB"];
|
|
} else {
|
|
return [NSString stringWithFormat:@"%lu Bytes", fileSize];
|
|
}
|
|
}
|
|
|
|
+ (NSString *)formatDurationSeconds:(long)timeSeconds
|
|
{
|
|
long seconds = timeSeconds % 60;
|
|
long minutes = (timeSeconds / 60) % 60;
|
|
long hours = timeSeconds / 3600;
|
|
|
|
if (hours > 0) {
|
|
return [NSString stringWithFormat:@"%ld:%02ld:%02ld", hours, minutes, seconds];
|
|
} else {
|
|
return [NSString stringWithFormat:@"%ld:%02ld", minutes, seconds];
|
|
}
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|