RunTime理解与实战(二)

上一篇我们已经对OC的Runtime做了简单的介绍,了解的其原理和API的使用RunTime理解与实战(一),这篇文章我们用runtime写一个json转模型的例子。后面会有完整的代码下载

从JSON映射到Model的原理

想一下平时我们是怎么使用类似这样子的库的,当我们有一个JSON的时候,我们把所有JSON的字段(比如name、page)全部写成对应的类中的属性。然后库会自动把你JSON对应字段的值赋值到这些对应的属性里去。属性我们用 @property 来定义,就意味着编译器会帮你生成对应的getset方法,我们使用的 . 其实也是在调用getset方法来实现赋值的。在 Objective-C 中有一个著名的函数 objc_msgSend(...) 我们所有的类似 [obj method] 的方法调用(发送消息)都会被转换成 objc_msgSend(...) 的方式来调用。

所以对于一个库来说,要调用你这个 Model 的 set 方法,用 objc_msgSend(...) 会容易的多,所以JSON映射到Model的原理其实就是调用这个函数而已。
所以整个流程就是,你给我一个 Model 类,我会用 runtime 提供的各种函数来拿到你所有的属性和对应的get``set,判断完相应的类型以后,调用objc_msgSend(...)。

json与字典的转换

//字典转字符串
+ (NSString*)DataTOjsonString:(id)object
{
    NSString *jsonString = nil;
    NSError *error;
    NSData *jsonData = [NSJSONSerialization dataWithJSONObject:object
                                                       options:NSJSONWritingPrettyPrinted 
// Pass 0 if you don't care about the readability of the generated string
                                                         error:&error];
    if (! jsonData) {
        NSLog(@"Got an error: %@", error);
    } else {
        jsonString = [[NSString alloc] initWithData:jsonData encoding:NSUTF8StringEncoding];
    }
    return jsonString;
}

//字符串转字典
+ (NSDictionary *)ww_dictionaryWithJSON:(id)json{
    if (!json || json == (id)kCFNull) {
        return nil;
    }
    NSDictionary *dic = nil;
    NSData *data = nil;
    if ([json isKindOfClass:[NSDictionary class]]) {
        dic = json;
    }else if ([json isKindOfClass:[NSString class]]) {
        data = [(NSString *)json dataUsingEncoding:NSUTF8StringEncoding];
    }else if ([json isKindOfClass:[NSData class]]) {
        data = json;
    }
    if (data) {
        dic = [NSJSONSerialization JSONObjectWithData:data 
                options:NSJSONReadingMutableLeaves error:nil];
        if (![dic isKindOfClass:[NSDictionary class]]) {
            dic = nil;
        }
    }
    return dic;
}

简单的字典转模型


//简单的转换
+ (instancetype)modelWithDict:(NSDictionary *)dict{
    id model = [[self alloc] init];
    unsigned int count = 0;
    //成员变量列表
    Ivar *ivars = class_copyIvarList(self, &count);
    for (int i = 0 ; i < count; i++) {
        Ivar ivar = ivars[i];
        
        NSString *ivarName = [NSString stringWithUTF8String:ivar_getName(ivar)];
        //去掉下划线
        ivarName = [ivarName substringFromIndex:1];
        id value = dict[ivarName];
        //nil值 会有崩溃
        [model setValue:value forKeyPath:ivarName];
    }
    
    return model;
}
use
//简单的转换
- (void)simpleness_jsonToModle{
    
    Department *dp = [[Department alloc] init];
    NSDictionary *dict = @{
                           @"employeeId" : @2,
                           @"name" : @"Emp2",
                           @"department" : dp
                           };
    
    
    Employee *el = [Employee modelWithDict:dict];
    NSLog(@"%@",el.name);
}

这样可以简单的把字典转成模型,但是却有几个缺点:扩展性差,内存消耗大,不能关联属性对象,异常没有处理等。但是通过这个简单的转换可以了解从JSON映射到Model的原理,正如文章开头所说。

优化

获取属性列表,因为最后需要通过KVC给属性赋值的。

//获取属性列表
+ (NSArray *)objectProperties {
    static const void * const kPropertyKey = &kPropertyKey;
    //runtime关联对象 减少性能开销
    NSMutableArray *properties = objc_getAssociatedObject(self, kPropertyKey);

    if (!properties) {
        properties = [NSMutableArray array];
        unsigned int count;
        //获取属性列表
        objc_property_t *propertyList = class_copyPropertyList([self class], &count);
        for (unsigned int i=0; i<count; i++) {
            const char *propertyName = property_getName(propertyList[i]); //获取属性名
            NSLog(@"property---->%@", [NSString stringWithUTF8String:propertyName]);
            
            [properties addObject:[NSString stringWithUTF8String:propertyName]];
        }
        objc_setAssociatedObject(self, kPropertyKey, properties, OBJC_ASSOCIATION_COPY);
    }
    return properties;
}

用一个枚举来自定义属性类型,判断哪些属性对象需要关联

typedef NS_ENUM(NSUInteger, WWPropertyType) {
    WWPropertyTypeUndefined,
    WWPropertyTypeInteger,
    WWPropertyTypeFloat,
    WWPropertyTypeString,
    WWPropertyTypeBoolean,
    WWPropertyTypeDate,
    WWPropertyTypeData,
    WWPropertyTypeArray,
    WWPropertyTypeRelationship
};

//属性类型 转为自定义类型
+ (NSDictionary *)propertyTypes {
    static const void * const kPropertyTypesKey = &kPropertyTypesKey;
    //runtime关联对象
    NSDictionary *result = objc_getAssociatedObject(self, kPropertyTypesKey);
    if (!result) {
        NSArray *properties = [self objectProperties];
        result = [[NSMutableDictionary alloc] initWithCapacity:properties.count];
        for (NSString *property in properties) {
            WWPropertyType type = [self propertyTypeOfClass:self propertyName:property];
            [(NSMutableDictionary *)result setObject:@(type) forKey:property];
        }
        objc_setAssociatedObject(self, kPropertyTypesKey, result, OBJC_ASSOCIATION_COPY);
    }
    return result;
}

自定义属性类型


//自定义属性类型
+ (WWPropertyType)propertyTypeOfClass:(Class)classType propertyName:(NSString *)propertyName {
    
    //属性的原始类型
    NSString *type = [WWReflection ww_propertyTypeOfClass:classType propertyName:propertyName];
    if ([@"int" isEqualToString:type] ||
        [@"unsigned" isEqualToString:type] ||
        [@"short" isEqualToString:type] ||
        [@"long" isEqualToString:type] ||
        [@"unsigned long" isEqualToString:type] ||
        [@"long long" isEqualToString:type] ||
        [@"unsigned long long" isEqualToString:type] ||
        [@"char" isEqualToString:type]) {
        return WWPropertyTypeInteger;
    } else if ([@"float" isEqualToString:type] ||
               [@"double" isEqualToString:type]) {
        return WWPropertyTypeFloat;
    } else if ([@"NSString" isEqualToString:type] ||
               [@"NSMutableString" isEqualToString:type]) {
        return WWPropertyTypeString;
    } else if ([@"bool" isEqualToString:type]) {
        return WWPropertyTypeBoolean;
    } else if ([@"NSDate" isEqualToString:type]) {
        return WWPropertyTypeDate;
    } else if ([@"NSData" isEqualToString:type] ||
               [@"NSMutableData" isEqualToString:type]) {
        return WWPropertyTypeData;
    } else if ([@"NSArray" isEqualToString:type] ||
               [@"NSMutableArray" isEqualToString:type]) {
        return WWPropertyTypeArray;
    }
    else {
        Class propertyClass = NSClassFromString(type);
        //这里只是简单的判断 最好是继承自己的基类
        if ([propertyClass isSubclassOfClass:[NSObject class]]) {
            return WWPropertyTypeRelationship;
        }
        return WWPropertyTypeUndefined;
    }
}

还需要一个方法来获取属性的数据类型:

+ (NSString *)ww_propertyTypeOfClass:(Class)classType propertyName:(NSString *)propertyName {
    static NSMutableDictionary *cache = nil;
    static dispatch_once_t pred;
    dispatch_once(&pred, ^{
        cache = [[NSMutableDictionary alloc] init];
    });
    @synchronized(cache) {
        NSMutableDictionary *propertyTypeMap = [cache objectForKey:NSStringFromClass(classType)];
        if (!propertyTypeMap) {
            propertyTypeMap = [[NSMutableDictionary alloc] init];
            [cache setObject:propertyTypeMap forKey:NSStringFromClass(classType)];
        }
        NSString *type = [propertyTypeMap objectForKey:propertyName];
        if (!type) {
            objc_property_t property = class_getProperty(classType, [propertyName UTF8String]);
            NSString *attributes = [NSString stringWithCString:property_getAttributes(property) encoding:NSUTF8StringEncoding];
            
            if ([attributes hasPrefix:@"T@"]) {
                NSArray *substrings = [attributes componentsSeparatedByString:@"\""];
                if ([substrings count] >= 2) {
                    type = [substrings objectAtIndex:1];
                } else {
                    type = @"id";
                }
            } else if ([attributes hasPrefix:@"T{"]) {
                type = @"struct";
            } else {
                if ([attributes hasPrefix:@"Ti"]) {
                    type = @"int";
                } else if ([attributes hasPrefix:@"TI"]) {
                    type = @"unsigned";
                } else if ([attributes hasPrefix:@"Ts"]) {
                    type = @"short";
                } else if ([attributes hasPrefix:@"Tl"]) {
                    type = @"long";
                } else if ([attributes hasPrefix:@"TL"]) {
                    type = @"unsigned long";
                } else if ([attributes hasPrefix:@"Tq"]) {
                    type = @"long long";
                } else if ([attributes hasPrefix:@"TQ"]) {
                    type = @"unsigned long long";
                } else if ([attributes hasPrefix:@"TB"]) {
                    type = @"bool";
                } else if ([attributes hasPrefix:@"Tf"]) {
                    type = @"float";
                } else if ([attributes hasPrefix:@"Td"]) {
                    type = @"double";
                } else if ([attributes hasPrefix:@"Tc"]) {
                    type = @"char";
                } else if ([attributes hasPrefix:@"T^i"]) {
                    type = @"int *";
                } else if ([attributes hasPrefix:@"T^I"]) {
                    type = @"unsigned *";
                } else if ([attributes hasPrefix:@"T^s"]) {
                    type = @"short *";
                } else if ([attributes hasPrefix:@"T^l"]) {
                    type = @"long *";
                } else if ([attributes hasPrefix:@"T^q"]) {
                    type = @"long long *";
                } else if ([attributes hasPrefix:@"T^Q"]) {
                    type = @"unsigned long long *";
                } else if ([attributes hasPrefix:@"T^B"]) {
                    type = @"bool *";
                } else if ([attributes hasPrefix:@"T^f"]) {
                    type = @"float *";
                } else if ([attributes hasPrefix:@"T^d"]) {
                    type = @"double *";
                } else if ([attributes hasPrefix:@"T*"]) {
                    type = @"char *";
                } else {
                    NSAssert(0, @"Unkonwn type");
                }
            }
            [propertyTypeMap setObject:type forKey:propertyName];
        }
        
        return type;
    }
}

最后递归调用


+ (instancetype)ww_objectWithDictionary:(NSDictionary *)dictionary {
    id object = [[self alloc] init];
    
    NSArray *objectProperties = [self objectProperties];
    NSDictionary *propertyTypes = [self propertyTypes];
    for (NSString *key in dictionary.allKeys) {
        if ([objectProperties containsObject:key]) {
            id value = [dictionary objectForKey:key];
            WWPropertyType propertyType = [[propertyTypes objectForKey:key] unsignedIntegerValue];
            //如果是属性关联的对象就 递归
            if (propertyType == WWPropertyTypeRelationship) {
                NSAssert([value isKindOfClass:[NSDictionary class]], @"");
                Class propertyClass = [[self propertyClasses] objectForKey:key];
                value = [propertyClass ww_objectWithDictionary:value];
            }
            [object setValue:value forKey:key];
        }
    }
    
    return object;
}

我们还可以方法交换调用

- (void)viewDidLoad {
    [super viewDidLoad];
    
    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{
    
        SEL simpleness_Sel = @selector(simpleness_jsonToModle);
        SEL complex_Sel = @selector(complex_dicToObject);
        //两个方法的Method
        Method simpleMethod = class_getInstanceMethod([self class], simpleness_Sel);
        Method complexMethod = class_getInstanceMethod([self class], complex_Sel);
        
        //首先动态添加方法,实现是被交换的方法,返回值表示添加成功还是失败
        BOOL isAdd = class_addMethod([self class], simpleness_Sel, method_getImplementation(complexMethod), method_getTypeEncoding(complexMethod));
        if (isAdd) {
            //如果成功,说明类中不存在这个方法的实现
            //将被交换方法的实现替换到这个并不存在的实现
            class_replaceMethod([self class], simpleness_Sel, method_getImplementation(simpleMethod), method_getTypeEncoding(simpleMethod));
        }else{
            //否则,交换两个方法的实现
            method_exchangeImplementations(simpleMethod, complexMethod);
        }
        
    });
    
    
    //方法交换后 这里实际调的是complex_dicToObject 的实现
    [self simpleness_jsonToModle];
    
//    [self complex_dicToObject];

}

可能这样介绍比较乱,可以下载项目,对照代码来看,还是比较简单的。
完整源码地址

当然,这里只是简单的运用runtime的知识,如果你想用更好更高效的json转模型,可以参考GitHub的YYmodel

如果你都看到这里了,请给我点个赞吧,你的点赞是我装逼(~ 啊不,坚持原创)的不竭动力。

另外.....

我的愿望是.......

世界和平.........

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,287评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,346评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,277评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,132评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,147评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,106评论 1 295
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,019评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,862评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,301评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,521评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,682评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,405评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,996评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,651评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,803评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,674评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,563评论 2 352

推荐阅读更多精彩内容