| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429 |
- //
- // FLEXUtility.m
- // Flipboard
- //
- // Created by Ryan Olson on 4/18/14.
- // Copyright (c) 2014 Flipboard. All rights reserved.
- //
- #import "FLEXUtility.h"
- #import "FLEXResources.h"
- #import <ImageIO/ImageIO.h>
- #import <zlib.h>
- #import <objc/runtime.h>
- @implementation FLEXUtility
- + (UIColor *)consistentRandomColorForObject:(id)object
- {
- CGFloat hue = (((NSUInteger)object >> 4) % 256) / 255.0;
- return [UIColor colorWithHue:hue saturation:1.0 brightness:1.0 alpha:1.0];
- }
- + (NSString *)descriptionForView:(UIView *)view includingFrame:(BOOL)includeFrame
- {
- NSString *description = [[view class] description];
-
- NSString *viewControllerDescription = [[[self viewControllerForView:view] class] description];
- if ([viewControllerDescription length] > 0) {
- description = [description stringByAppendingFormat:@" (%@)", viewControllerDescription];
- }
-
- if (includeFrame) {
- description = [description stringByAppendingFormat:@" %@", [self stringForCGRect:view.frame]];
- }
-
- if ([view.accessibilityLabel length] > 0) {
- description = [description stringByAppendingFormat:@" · %@", view.accessibilityLabel];
- }
-
- return description;
- }
- + (NSString *)stringForCGRect:(CGRect)rect
- {
- return [NSString stringWithFormat:@"{(%g, %g), (%g, %g)}", rect.origin.x, rect.origin.y, rect.size.width, rect.size.height];
- }
- + (UIViewController *)viewControllerForView:(UIView *)view
- {
- UIViewController *viewController = nil;
- SEL viewDelSel = NSSelectorFromString([NSString stringWithFormat:@"%@ewDelegate", @"_vi"]);
- if ([view respondsToSelector:viewDelSel]) {
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Warc-performSelector-leaks"
- viewController = [view performSelector:viewDelSel];
- #pragma clang diagnostic pop
- }
- return viewController;
- }
- + (UIViewController *)viewControllerForAncestralView:(UIView *)view{
- UIViewController *viewController = nil;
- SEL viewDelSel = NSSelectorFromString([NSString stringWithFormat:@"%@ewControllerForAncestor", @"_vi"]);
- if ([view respondsToSelector:viewDelSel]) {
- #pragma clang diagnostic push
- #pragma clang diagnostic ignored "-Warc-performSelector-leaks"
- viewController = [view performSelector:viewDelSel];
- #pragma clang diagnostic pop
- }
- return viewController;
- }
- + (NSString *)detailDescriptionForView:(UIView *)view
- {
- return [NSString stringWithFormat:@"frame %@", [self stringForCGRect:view.frame]];
- }
- + (UIImage *)circularImageWithColor:(UIColor *)color radius:(CGFloat)radius
- {
- CGFloat diameter = radius * 2.0;
- UIGraphicsBeginImageContextWithOptions(CGSizeMake(diameter, diameter), NO, 0.0);
- CGContextRef imageContext = UIGraphicsGetCurrentContext();
- CGContextSetFillColorWithColor(imageContext, [color CGColor]);
- CGContextFillEllipseInRect(imageContext, CGRectMake(0, 0, diameter, diameter));
- UIImage *circularImage = UIGraphicsGetImageFromCurrentImageContext();
- UIGraphicsEndImageContext();
- return circularImage;
- }
- + (UIColor *)scrollViewGrayColor
- {
- return [UIColor colorWithRed:239.0/255.0 green:239.0/255.0 blue:244.0/255.0 alpha:1.0];
- }
- + (UIColor *)hierarchyIndentPatternColor
- {
- static UIColor *patternColor = nil;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- UIImage *indentationPatternImage = [FLEXResources hierarchyIndentPattern];
- patternColor = [UIColor colorWithPatternImage:indentationPatternImage];
- });
- return patternColor;
- }
- + (NSString *)applicationImageName
- {
- return [NSBundle mainBundle].executablePath;
- }
- + (NSString *)applicationName
- {
- return [FLEXUtility applicationImageName].lastPathComponent;
- }
- + (NSString *)safeDescriptionForObject:(id)object
- {
- // Don't assume that we have an NSObject subclass.
- // Check to make sure the object responds to the description methods.
- NSString *description = nil;
- if ([object respondsToSelector:@selector(debugDescription)]) {
- description = [object debugDescription];
- } else if ([object respondsToSelector:@selector(description)]) {
- description = [object description];
- }
- return description;
- }
- + (UIFont *)defaultFontOfSize:(CGFloat)size
- {
- return [UIFont fontWithName:@"HelveticaNeue" size:size];
- }
- + (UIFont *)defaultTableViewCellLabelFont
- {
- return [self defaultFontOfSize:12.0];
- }
- + (NSString *)stringByEscapingHTMLEntitiesInString:(NSString *)originalString
- {
- static NSDictionary *escapingDictionary = nil;
- static NSRegularExpression *regex = nil;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- escapingDictionary = @{ @" " : @" ",
- @">" : @">",
- @"<" : @"<",
- @"&" : @"&",
- @"'" : @"'",
- @"\"" : @""",
- @"«" : @"«",
- @"»" : @"»"
- };
- regex = [NSRegularExpression regularExpressionWithPattern:@"(&|>|<|'|\"|«|»)" options:0 error:NULL];
- });
-
- NSMutableString *mutableString = [originalString mutableCopy];
-
- NSArray *matches = [regex matchesInString:mutableString options:0 range:NSMakeRange(0, [mutableString length])];
- for (NSTextCheckingResult *result in [matches reverseObjectEnumerator]) {
- NSString *foundString = [mutableString substringWithRange:result.range];
- NSString *replacementString = escapingDictionary[foundString];
- if (replacementString) {
- [mutableString replaceCharactersInRange:result.range withString:replacementString];
- }
- }
-
- return [mutableString copy];
- }
- + (UIInterfaceOrientationMask)infoPlistSupportedInterfaceOrientationsMask
- {
- NSArray *supportedOrientations = [[[NSBundle mainBundle] infoDictionary] objectForKey:@"UISupportedInterfaceOrientations"];
- UIInterfaceOrientationMask supportedOrientationsMask = 0;
- if ([supportedOrientations containsObject:@"UIInterfaceOrientationPortrait"]) {
- supportedOrientationsMask |= UIInterfaceOrientationMaskPortrait;
- }
- if ([supportedOrientations containsObject:@"UIInterfaceOrientationMaskLandscapeRight"]) {
- supportedOrientationsMask |= UIInterfaceOrientationMaskLandscapeRight;
- }
- if ([supportedOrientations containsObject:@"UIInterfaceOrientationMaskPortraitUpsideDown"]) {
- supportedOrientationsMask |= UIInterfaceOrientationMaskPortraitUpsideDown;
- }
- if ([supportedOrientations containsObject:@"UIInterfaceOrientationLandscapeLeft"]) {
- supportedOrientationsMask |= UIInterfaceOrientationMaskLandscapeLeft;
- }
- return supportedOrientationsMask;
- }
- + (NSString *)searchBarPlaceholderText
- {
- return @"Filter";
- }
- + (BOOL)isImagePathExtension:(NSString *)extension
- {
- // https://developer.apple.com/library/ios/documentation/uikit/reference/UIImage_Class/Reference/Reference.html#//apple_ref/doc/uid/TP40006890-CH3-SW3
- return [@[@"jpg", @"jpeg", @"png", @"gif", @"tiff", @"tif"] containsObject:extension];
- }
- + (UIImage *)thumbnailedImageWithMaxPixelDimension:(NSInteger)dimension fromImageData:(NSData *)data
- {
- UIImage *thumbnail = nil;
- CGImageSourceRef imageSource = CGImageSourceCreateWithData((__bridge CFDataRef)data, 0);
- if (imageSource) {
- NSDictionary *options = @{ (__bridge id)kCGImageSourceCreateThumbnailWithTransform : @YES,
- (__bridge id)kCGImageSourceCreateThumbnailFromImageAlways : @YES,
- (__bridge id)kCGImageSourceThumbnailMaxPixelSize : @(dimension) };
- CGImageRef scaledImageRef = CGImageSourceCreateThumbnailAtIndex(imageSource, 0, (__bridge CFDictionaryRef)options);
- if (scaledImageRef) {
- thumbnail = [UIImage imageWithCGImage:scaledImageRef];
- CFRelease(scaledImageRef);
- }
- CFRelease(imageSource);
- }
- return thumbnail;
- }
- + (NSString *)stringFromRequestDuration:(NSTimeInterval)duration
- {
- NSString *string = @"0s";
- if (duration > 0.0) {
- if (duration < 1.0) {
- string = [NSString stringWithFormat:@"%dms", (int)(duration * 1000)];
- } else if (duration < 10.0) {
- string = [NSString stringWithFormat:@"%.2fs", duration];
- } else {
- string = [NSString stringWithFormat:@"%.1fs", duration];
- }
- }
- return string;
- }
- + (NSString *)statusCodeStringFromURLResponse:(NSURLResponse *)response
- {
- NSString *httpResponseString = nil;
- if ([response isKindOfClass:[NSHTTPURLResponse class]]) {
- NSHTTPURLResponse *httpResponse = (NSHTTPURLResponse *)response;
- NSString *statusCodeDescription = nil;
- if (httpResponse.statusCode == 200) {
- // Prefer OK to the default "no error"
- statusCodeDescription = @"OK";
- } else {
- statusCodeDescription = [NSHTTPURLResponse localizedStringForStatusCode:httpResponse.statusCode];
- }
- httpResponseString = [NSString stringWithFormat:@"%ld %@", (long)httpResponse.statusCode, statusCodeDescription];
- }
- return httpResponseString;
- }
- + (NSDictionary *)dictionaryFromQuery:(NSString *)query
- {
- NSMutableDictionary *queryDictionary = [NSMutableDictionary dictionary];
- // [a=1, b=2, c=3]
- NSArray *queryComponents = [query componentsSeparatedByString:@"&"];
- for (NSString *keyValueString in queryComponents) {
- // [a, 1]
- NSArray *components = [keyValueString componentsSeparatedByString:@"="];
- if ([components count] == 2) {
- NSString *key = [[components firstObject] stringByRemovingPercentEncoding];
- id value = [[components lastObject] stringByRemovingPercentEncoding];
- // Handle multiple entries under the same key as an array
- id existingEntry = queryDictionary[key];
- if (existingEntry) {
- if ([existingEntry isKindOfClass:[NSArray class]]) {
- value = [existingEntry arrayByAddingObject:value];
- } else {
- value = @[existingEntry, value];
- }
- }
-
- [queryDictionary setObject:value forKey:key];
- }
- }
- return queryDictionary;
- }
- + (NSString *)prettyJSONStringFromData:(NSData *)data
- {
- NSString *prettyString = nil;
-
- id jsonObject = [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL];
- if ([NSJSONSerialization isValidJSONObject:jsonObject]) {
- prettyString = [[NSString alloc] initWithData:[NSJSONSerialization dataWithJSONObject:jsonObject options:NSJSONWritingPrettyPrinted error:NULL] encoding:NSUTF8StringEncoding];
- // NSJSONSerialization escapes forward slashes. We want pretty json, so run through and unescape the slashes.
- prettyString = [prettyString stringByReplacingOccurrencesOfString:@"\\/" withString:@"/"];
- } else {
- prettyString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];
- }
-
- return prettyString;
- }
- + (BOOL)isValidJSONData:(NSData *)data
- {
- return [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL] ? YES : NO;
- }
- // Thanks to the following links for help with this method
- // http://www.cocoanetics.com/2012/02/decompressing-files-into-memory/
- // https://github.com/nicklockwood/GZIP
- + (NSData *)inflatedDataFromCompressedData:(NSData *)compressedData
- {
- NSData *inflatedData = nil;
- NSUInteger compressedDataLength = [compressedData length];
- if (compressedDataLength > 0) {
- z_stream stream;
- stream.zalloc = Z_NULL;
- stream.zfree = Z_NULL;
- stream.avail_in = (uInt)compressedDataLength;
- stream.next_in = (void *)[compressedData bytes];
- stream.total_out = 0;
- stream.avail_out = 0;
- NSMutableData *mutableData = [NSMutableData dataWithLength:compressedDataLength * 1.5];
- if (inflateInit2(&stream, 15 + 32) == Z_OK) {
- int status = Z_OK;
- while (status == Z_OK) {
- if (stream.total_out >= [mutableData length]) {
- mutableData.length += compressedDataLength / 2;
- }
- stream.next_out = (uint8_t *)[mutableData mutableBytes] + stream.total_out;
- stream.avail_out = (uInt)([mutableData length] - stream.total_out);
- status = inflate(&stream, Z_SYNC_FLUSH);
- }
- if (inflateEnd(&stream) == Z_OK) {
- if (status == Z_STREAM_END) {
- mutableData.length = stream.total_out;
- inflatedData = [mutableData copy];
- }
- }
- }
- }
- return inflatedData;
- }
- + (NSArray *)allWindows
- {
- BOOL includeInternalWindows = YES;
- BOOL onlyVisibleWindows = NO;
- NSArray *allWindowsComponents = @[@"al", @"lWindo", @"wsIncl", @"udingInt", @"ernalWin", @"dows:o", @"nlyVisi", @"bleWin", @"dows:"];
- SEL allWindowsSelector = NSSelectorFromString([allWindowsComponents componentsJoinedByString:@""]);
- NSMethodSignature *methodSignature = [[UIWindow class] methodSignatureForSelector:allWindowsSelector];
- NSInvocation *invocation = [NSInvocation invocationWithMethodSignature:methodSignature];
- invocation.target = [UIWindow class];
- invocation.selector = allWindowsSelector;
- [invocation setArgument:&includeInternalWindows atIndex:2];
- [invocation setArgument:&onlyVisibleWindows atIndex:3];
- [invocation invoke];
- __unsafe_unretained NSArray *windows = nil;
- [invocation getReturnValue:&windows];
- return windows;
- }
- + (SEL)swizzledSelectorForSelector:(SEL)selector
- {
- return NSSelectorFromString([NSString stringWithFormat:@"_flex_swizzle_%x_%@", arc4random(), NSStringFromSelector(selector)]);
- }
- + (BOOL)instanceRespondsButDoesNotImplementSelector:(SEL)selector class:(Class)cls
- {
- if ([cls instancesRespondToSelector:selector]) {
- unsigned int numMethods = 0;
- Method *methods = class_copyMethodList(cls, &numMethods);
-
- BOOL implementsSelector = NO;
- for (int index = 0; index < numMethods; index++) {
- SEL methodSelector = method_getName(methods[index]);
- if (selector == methodSelector) {
- implementsSelector = YES;
- break;
- }
- }
-
- free(methods);
-
- if (!implementsSelector) {
- return YES;
- }
- }
-
- return NO;
- }
- + (void)replaceImplementationOfKnownSelector:(SEL)originalSelector onClass:(Class)class withBlock:(id)block swizzledSelector:(SEL)swizzledSelector
- {
- // This method is only intended for swizzling methods that are know to exist on the class.
- // Bail if that isn't the case.
- Method originalMethod = class_getInstanceMethod(class, originalSelector);
- if (!originalMethod) {
- return;
- }
-
- IMP implementation = imp_implementationWithBlock(block);
- class_addMethod(class, swizzledSelector, implementation, method_getTypeEncoding(originalMethod));
- Method newMethod = class_getInstanceMethod(class, swizzledSelector);
- method_exchangeImplementations(originalMethod, newMethod);
- }
- + (void)replaceImplementationOfSelector:(SEL)selector withSelector:(SEL)swizzledSelector forClass:(Class)cls withMethodDescription:(struct objc_method_description)methodDescription implementationBlock:(id)implementationBlock undefinedBlock:(id)undefinedBlock
- {
- if ([self instanceRespondsButDoesNotImplementSelector:selector class:cls]) {
- return;
- }
-
- IMP implementation = imp_implementationWithBlock((id)([cls instancesRespondToSelector:selector] ? implementationBlock : undefinedBlock));
-
- Method oldMethod = class_getInstanceMethod(cls, selector);
- if (oldMethod) {
- class_addMethod(cls, swizzledSelector, implementation, methodDescription.types);
-
- Method newMethod = class_getInstanceMethod(cls, swizzledSelector);
-
- method_exchangeImplementations(oldMethod, newMethod);
- } else {
- class_addMethod(cls, selector, implementation, methodDescription.types);
- }
- }
- @end
|