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.
		
		
		
		
		
			
		
			
				
	
	
		
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Swift
		
	
			
		
		
	
	
			45 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Swift
		
	
// Copyright © 2022 Rangeproof Pty Ltd. All rights reserved.
 | 
						|
 | 
						|
import Foundation
 | 
						|
 | 
						|
public enum Format {
 | 
						|
    private static let fileSizeFormatter: NumberFormatter = {
 | 
						|
        let result: NumberFormatter = NumberFormatter()
 | 
						|
        result.numberStyle = .decimal
 | 
						|
        result.minimumFractionDigits = 0
 | 
						|
        result.maximumFractionDigits = 1
 | 
						|
        
 | 
						|
        return result
 | 
						|
    }()
 | 
						|
    private static let durationFormatter: DateComponentsFormatter = {
 | 
						|
        let formatter = DateComponentsFormatter()
 | 
						|
        formatter.unitsStyle = .positional
 | 
						|
        formatter.allowedUnits = [.minute, .second ]
 | 
						|
        formatter.zeroFormattingBehavior = [ .pad ]
 | 
						|
 | 
						|
        return formatter
 | 
						|
    }()
 | 
						|
    private static let oneKilobyte: Double = 1024;
 | 
						|
    private static let oneMegabyte: Double = (oneKilobyte * oneKilobyte)
 | 
						|
    
 | 
						|
    public static func fileSize(_ fileSize: UInt) -> String {
 | 
						|
        let fileSizeDouble: Double = Double(fileSize)
 | 
						|
        
 | 
						|
        switch fileSizeDouble {
 | 
						|
            case oneMegabyte...Double.greatestFiniteMagnitude:
 | 
						|
                return (Format.fileSizeFormatter
 | 
						|
                    .string(from: NSNumber(floatLiteral: (fileSizeDouble / oneMegabyte)))?
 | 
						|
                    .appending("MB") ?? "n/a")
 | 
						|
            
 | 
						|
            default:
 | 
						|
                return (Format.fileSizeFormatter
 | 
						|
                    .string(from: NSNumber(floatLiteral: max(0.1, (fileSizeDouble / oneKilobyte))))?
 | 
						|
                    .appending("KB") ?? "n/a")
 | 
						|
        }
 | 
						|
    }
 | 
						|
    
 | 
						|
    public static func duration(_ duration: TimeInterval) -> String {
 | 
						|
        return (Format.durationFormatter.string(from: duration) ?? "0:00")
 | 
						|
    }
 | 
						|
}
 |