83 lines
2.3 KiB
Objective-C
83 lines
2.3 KiB
Objective-C
#ifdef SHOULD_COMPILE_LOOKIN_SERVER
|
|
|
|
//
|
|
// LookinObject.m
|
|
// Lookin
|
|
//
|
|
// Created by Li Kai on 2019/4/20.
|
|
// https://lookin.work
|
|
//
|
|
|
|
#import "LookinObject.h"
|
|
#import "LookinIvarTrace.h"
|
|
#import "NSArray+Lookin.h"
|
|
#import "NSString+Lookin.h"
|
|
|
|
#if TARGET_OS_IPHONE
|
|
#import "NSObject+LookinServer.h"
|
|
#endif
|
|
|
|
@implementation LookinObject
|
|
|
|
#if TARGET_OS_IPHONE
|
|
+ (instancetype)instanceWithObject:(NSObject *)object {
|
|
LookinObject *lookinObj = [LookinObject new];
|
|
lookinObj.oid = [object lks_registerOid];
|
|
|
|
lookinObj.memoryAddress = [NSString stringWithFormat:@"%p", object];
|
|
lookinObj.classChainList = [object lks_classChainList];
|
|
|
|
lookinObj.specialTrace = object.lks_specialTrace;
|
|
lookinObj.ivarTraces = object.lks_ivarTraces;
|
|
|
|
return lookinObj;
|
|
}
|
|
#endif
|
|
|
|
#pragma mark - <NSCopying>
|
|
|
|
- (id)copyWithZone:(NSZone *)zone {
|
|
LookinObject *newObject = [[LookinObject allocWithZone:zone] init];
|
|
newObject.oid = self.oid;
|
|
newObject.memoryAddress = self.memoryAddress;
|
|
newObject.classChainList = self.classChainList;
|
|
newObject.specialTrace = self.specialTrace;
|
|
newObject.ivarTraces = [self.ivarTraces lookin_map:^id(NSUInteger idx, LookinIvarTrace *value) {
|
|
return value.copy;
|
|
}];
|
|
return newObject;
|
|
}
|
|
|
|
#pragma mark - <NSSecureCoding>
|
|
|
|
- (void)encodeWithCoder:(NSCoder *)aCoder {
|
|
[aCoder encodeObject:@(self.oid) forKey:@"oid"];
|
|
[aCoder encodeObject:self.memoryAddress forKey:@"memoryAddress"];
|
|
[aCoder encodeObject:self.classChainList forKey:@"classChainList"];
|
|
[aCoder encodeObject:self.specialTrace forKey:@"specialTrace"];
|
|
[aCoder encodeObject:self.ivarTraces forKey:@"ivarTraces"];
|
|
}
|
|
|
|
- (instancetype)initWithCoder:(NSCoder *)aDecoder {
|
|
if (self = [super init]) {
|
|
self.oid = [(NSNumber *)[aDecoder decodeObjectForKey:@"oid"] unsignedLongValue];
|
|
self.memoryAddress = [aDecoder decodeObjectForKey:@"memoryAddress"];
|
|
self.classChainList = [aDecoder decodeObjectForKey:@"classChainList"];
|
|
self.specialTrace = [aDecoder decodeObjectForKey:@"specialTrace"];
|
|
self.ivarTraces = [aDecoder decodeObjectForKey:@"ivarTraces"];
|
|
}
|
|
return self;
|
|
}
|
|
|
|
+ (BOOL)supportsSecureCoding {
|
|
return YES;
|
|
}
|
|
|
|
- (NSString *)rawClassName {
|
|
return self.classChainList.firstObject;
|
|
}
|
|
|
|
@end
|
|
|
|
#endif /* SHOULD_COMPILE_LOOKIN_SERVER */
|