mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-06-16 05:55:20 +00:00
217 lines
8.1 KiB
Objective-C
217 lines
8.1 KiB
Objective-C
#import "UIDevice+PlatformInfo.h"
|
|
|
|
#include <sys/socket.h> // Per msqr
|
|
#include <sys/sysctl.h>
|
|
#include <net/if.h>
|
|
#include <net/if_dl.h>
|
|
|
|
@implementation UIDevice (PlatformInfo)
|
|
|
|
/*
|
|
Platforms
|
|
|
|
iFPGA -> ??
|
|
|
|
iPhone1,1 -> iPhone 1G, M68
|
|
iPhone1,2 -> iPhone 3G, N82
|
|
iPhone2,1 -> iPhone 3GS, N88
|
|
iPhone3,1 -> iPhone 4/AT&T, N89
|
|
iPhone3,2 -> iPhone 4/Other Carrier?, ??
|
|
iPhone3,3 -> iPhone 4/Verizon, TBD
|
|
iPhone4,1 -> (iPhone 4S/GSM), TBD
|
|
iPhone4,2 -> (iPhone 4S/CDMA), TBD
|
|
iPhone4,3 -> (iPhone 4S/???)
|
|
iPhone5,1 -> iPhone Next Gen, TBD
|
|
iPhone5,1 -> iPhone Next Gen, TBD
|
|
iPhone5,1 -> iPhone Next Gen, TBD
|
|
|
|
iPod1,1 -> iPod touch 1G, N45
|
|
iPod2,1 -> iPod touch 2G, N72
|
|
iPod2,2 -> Unknown, ??
|
|
iPod3,1 -> iPod touch 3G, N18
|
|
iPod4,1 -> iPod touch 4G, N80
|
|
|
|
// Thanks NSForge
|
|
iPad1,1 -> iPad 1G, WiFi and 3G, K48
|
|
iPad2,1 -> iPad 2G, WiFi, K93
|
|
iPad2,2 -> iPad 2G, GSM 3G, K94
|
|
iPad2,3 -> iPad 2G, CDMA 3G, K95
|
|
iPad3,1 -> (iPad 3G, WiFi)
|
|
iPad3,2 -> (iPad 3G, GSM)
|
|
iPad3,3 -> (iPad 3G, CDMA)
|
|
iPad4,1 -> (iPad 4G, WiFi)
|
|
iPad4,2 -> (iPad 4G, GSM)
|
|
iPad4,3 -> (iPad 4G, CDMA)
|
|
|
|
AppleTV2,1 -> AppleTV 2, K66
|
|
AppleTV3,1 -> AppleTV 3, ??
|
|
|
|
i386, x86_64 -> iPhone Simulator
|
|
*/
|
|
|
|
|
|
#pragma mark sysctlbyname utils
|
|
- (NSString *) getSysInfoByName:(char *)typeSpecifier
|
|
{
|
|
size_t size;
|
|
sysctlbyname(typeSpecifier, NULL, &size, NULL, 0);
|
|
|
|
char *answer = malloc(size);
|
|
sysctlbyname(typeSpecifier, answer, &size, NULL, 0);
|
|
|
|
NSString *results = [NSString stringWithCString:answer encoding: NSUTF8StringEncoding];
|
|
|
|
free(answer);
|
|
return results;
|
|
}
|
|
|
|
- (NSString *) platform
|
|
{
|
|
return [self getSysInfoByName:"hw.machine"];
|
|
}
|
|
|
|
#pragma mark sysctl utils
|
|
- (NSUInteger) getSysInfo: (uint) typeSpecifier
|
|
{
|
|
size_t size = sizeof(int);
|
|
int results;
|
|
int mib[2] = {CTL_HW, typeSpecifier};
|
|
sysctl(mib, 2, &results, &size, NULL, 0);
|
|
return (NSUInteger) results;
|
|
}
|
|
|
|
#pragma mark platform type and name utils
|
|
- (NSUInteger) platformType
|
|
{
|
|
NSString *platform = [self platform];
|
|
|
|
// The ever mysterious iFPGA
|
|
if ([platform isEqualToString:@"iFPGA"]) return UIDeviceIFPGA;
|
|
|
|
// iPhone
|
|
if ([platform isEqualToString:@"iPhone1,1"]) return UIDevice1GiPhone;
|
|
if ([platform isEqualToString:@"iPhone1,2"]) return UIDevice3GiPhone;
|
|
if ([platform hasPrefix:@"iPhone2"]) return UIDevice3GSiPhone;
|
|
if ([platform hasPrefix:@"iPhone3"]) return UIDevice4iPhone;
|
|
if ([platform hasPrefix:@"iPhone4"]) return UIDevice4SiPhone;
|
|
if ([platform hasPrefix:@"iPhone5"]) return UIDevice5iPhone;
|
|
if ([platform hasPrefix:@"iPhone6"]) return UIDevice5SiPhone;
|
|
|
|
if ([platform isEqualToString:@"iPhone7,1"]) return UIDevice6PlusiPhone;
|
|
if ([platform isEqualToString:@"iPhone7,2"]) return UIDevice6iPhone;
|
|
if ([platform isEqualToString:@"iPhone8,1"]) return UIDevice6siPhone;
|
|
if ([platform isEqualToString:@"iPhone8,2"]) return UIDevice6SPlusiPhone;
|
|
|
|
if ([platform isEqualToString:@"iPhone9,2"]) return UIDevice7PlusiPhone;
|
|
if ([platform isEqualToString:@"iPhone9,1"]) return UIDevice7iPhone;
|
|
if ([platform isEqualToString:@"iPhone9,3"]) return UIDevice7iPhone;
|
|
if ([platform isEqualToString:@"iPhone9,4"]) return UIDevice7PlusiPhone;
|
|
|
|
if ([platform isEqualToString:@"iPhone8,4"]) return UIDeviceSEPhone;
|
|
|
|
// iPod
|
|
if ([platform hasPrefix:@"iPod1"]) return UIDevice1GiPod;
|
|
if ([platform hasPrefix:@"iPod2"]) return UIDevice2GiPod;
|
|
if ([platform hasPrefix:@"iPod3"]) return UIDevice3GiPod;
|
|
if ([platform hasPrefix:@"iPod4"]) return UIDevice4GiPod;
|
|
if ([platform hasPrefix:@"iPod5"]) return UIDevice5GiPod;
|
|
if ([platform hasPrefix:@"iPod7"]) return UIDevice6GiPod;
|
|
|
|
// iPad
|
|
if ([platform hasPrefix:@"iPad1"]) return UIDevice1GiPad;
|
|
if ([platform hasPrefix:@"iPad2"]) return UIDevice2GiPad;
|
|
if ([platform hasPrefix:@"iPad3"]) return UIDevice3GiPad;
|
|
if ([platform hasPrefix:@"iPad4"]) return UIDevice4GiPad;
|
|
if ([platform hasPrefix:@"iPad5"]) return UIDevice5GiPad;
|
|
if ([platform hasPrefix:@"iPad6"]) return UIDevice6GiPad;
|
|
|
|
// Apple TV
|
|
if ([platform hasPrefix:@"AppleTV2"]) return UIDeviceAppleTV2;
|
|
if ([platform hasPrefix:@"AppleTV3"]) return UIDeviceAppleTV3;
|
|
|
|
if ([platform hasPrefix:@"iPhone"]) return UIDeviceUnknowniPhone;
|
|
if ([platform hasPrefix:@"iPod"]) return UIDeviceUnknowniPod;
|
|
if ([platform hasPrefix:@"iPad"]) return UIDeviceUnknowniPad;
|
|
if ([platform hasPrefix:@"AppleTV"]) return UIDeviceUnknownAppleTV;
|
|
|
|
// Simulator thanks Jordan Breeding
|
|
if ([platform hasSuffix:@"86"] || [platform isEqual:@"x86_64"])
|
|
{
|
|
BOOL smallerScreen = [[UIScreen mainScreen] bounds].size.width < 768;
|
|
return smallerScreen ? UIDeviceSimulatoriPhone : UIDeviceSimulatoriPad;
|
|
}
|
|
|
|
return UIDeviceUnknown;
|
|
}
|
|
|
|
- (NSString *) platformString
|
|
{
|
|
switch ([self platformType])
|
|
{
|
|
case UIDevice1GiPhone: return IPHONE_1G_NAMESTRING;
|
|
case UIDevice3GiPhone: return IPHONE_3G_NAMESTRING;
|
|
case UIDevice3GSiPhone: return IPHONE_3GS_NAMESTRING;
|
|
case UIDevice4iPhone: return IPHONE_4_NAMESTRING;
|
|
case UIDevice4SiPhone: return IPHONE_4S_NAMESTRING;
|
|
case UIDevice5iPhone: return IPHONE_5_NAMESTRING;
|
|
case UIDevice5SiPhone: return IPHONE_5S_NAMESTRING;
|
|
case UIDevice6iPhone: return IPHONE_6_NAMESTRING;
|
|
case UIDevice6PlusiPhone: return IPHONE_6Plus_NAMESTRING;
|
|
case UIDevice6siPhone: return IPHONE_6S_NAMESTRING;
|
|
case UIDevice6SPlusiPhone: return IPHONE_6SPlus_NAMESTRING;
|
|
case UIDevice7iPhone: return IPHONE_7_NAMESTRING;
|
|
case UIDeviceSEPhone: return IPHONE_SE_NAMESTRING;
|
|
case UIDevice7PlusiPhone: return IPHONE_7Plus_NAMESTRING;
|
|
|
|
case UIDeviceUnknowniPhone: return IPHONE_UNKNOWN_NAMESTRING;
|
|
|
|
case UIDevice1GiPod: return IPOD_1G_NAMESTRING;
|
|
case UIDevice2GiPod: return IPOD_2G_NAMESTRING;
|
|
case UIDevice3GiPod: return IPOD_3G_NAMESTRING;
|
|
case UIDevice4GiPod: return IPOD_4G_NAMESTRING;
|
|
case UIDevice5GiPod: return IPOD_5G_NAMESTRING;
|
|
case UIDevice6GiPod: return IPOD_6G_NAMESTRING;
|
|
case UIDeviceUnknowniPod: return IPOD_UNKNOWN_NAMESTRING;
|
|
|
|
case UIDevice1GiPad : return IPAD_1G_NAMESTRING;
|
|
case UIDevice2GiPad : return IPAD_2G_NAMESTRING;
|
|
case UIDevice3GiPad : return IPAD_3G_NAMESTRING;
|
|
case UIDevice4GiPad : return IPAD_4G_NAMESTRING;
|
|
case UIDevice5GiPad : return IPAD_5G_NAMESTRING;
|
|
case UIDevice6GiPad : return IPAD_6G_NAMESTRING;
|
|
case UIDeviceUnknowniPad : return IPAD_UNKNOWN_NAMESTRING;
|
|
|
|
case UIDeviceAppleTV2 : return APPLETV_2G_NAMESTRING;
|
|
case UIDeviceAppleTV3 : return APPLETV_3G_NAMESTRING;
|
|
case UIDeviceAppleTV4 : return APPLETV_4G_NAMESTRING;
|
|
case UIDeviceUnknownAppleTV: return APPLETV_UNKNOWN_NAMESTRING;
|
|
|
|
case UIDeviceSimulator: return SIMULATOR_NAMESTRING;
|
|
case UIDeviceSimulatoriPhone: return SIMULATOR_IPHONE_NAMESTRING;
|
|
case UIDeviceSimulatoriPad: return SIMULATOR_IPAD_NAMESTRING;
|
|
case UIDeviceSimulatorAppleTV: return SIMULATOR_APPLETV_NAMESTRING;
|
|
|
|
case UIDeviceIFPGA: return IFPGA_NAMESTRING;
|
|
|
|
default: return IOS_FAMILY_UNKNOWN_DEVICE;
|
|
}
|
|
}
|
|
|
|
- (BOOL) hasRetinaDisplay
|
|
{
|
|
return ([UIScreen mainScreen].scale == 2.0f);
|
|
}
|
|
|
|
- (UIDeviceFamily) deviceFamily
|
|
{
|
|
NSString *platform = [self platform];
|
|
if ([platform hasPrefix:@"iPhone"]) return UIDeviceFamilyiPhone;
|
|
if ([platform hasPrefix:@"iPod"]) return UIDeviceFamilyiPod;
|
|
if ([platform hasPrefix:@"iPad"]) return UIDeviceFamilyiPad;
|
|
if ([platform hasPrefix:@"AppleTV"]) return UIDeviceFamilyAppleTV;
|
|
|
|
return UIDeviceFamilyUnknown;
|
|
}
|
|
|
|
@end
|