| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- //
- // DKClassInfo.h
- // DKModel
- //
- // Created by dongke on 17/5/9.
- // Copyright (c) 2017 dongke.
- //
- // This source code is licensed under the MIT-style license found in the
- // LICENSE file in the root directory of this source tree.
- //
- #import <Foundation/Foundation.h>
- #import <objc/runtime.h>
- NS_ASSUME_NONNULL_BEGIN
- /**
- Type encoding's type.
- */
- typedef NS_OPTIONS(NSUInteger, DKEncodingType) {
- DKEncodingTypeMask = 0xFF, ///< mask of type value
- DKEncodingTypeUnknown = 0, ///< unknown
- DKEncodingTypeVoid = 1, ///< void
- DKEncodingTypeBool = 2, ///< bool
- DKEncodingTypeInt8 = 3, ///< char / BOOL
- DKEncodingTypeUInt8 = 4, ///< unsigned char
- DKEncodingTypeInt16 = 5, ///< short
- DKEncodingTypeUInt16 = 6, ///< unsigned short
- DKEncodingTypeInt32 = 7, ///< int
- DKEncodingTypeUInt32 = 8, ///< unsigned int
- DKEncodingTypeInt64 = 9, ///< long long
- DKEncodingTypeUInt64 = 10, ///< unsigned long long
- DKEncodingTypeFloat = 11, ///< float
- DKEncodingTypeDouble = 12, ///< double
- DKEncodingTypeLongDouble = 13, ///< long double
- DKEncodingTypeObject = 14, ///< id
- DKEncodingTypeClass = 15, ///< Class
- DKEncodingTypeSEL = 16, ///< SEL
- DKEncodingTypeBlock = 17, ///< block
- DKEncodingTypePointer = 18, ///< void*
- DKEncodingTypeStruct = 19, ///< struct
- DKEncodingTypeUnion = 20, ///< union
- DKEncodingTypeCString = 21, ///< char*
- DKEncodingTypeCArray = 22, ///< char[10] (for example)
-
- DKEncodingTypeQualifierMask = 0xFF00, ///< mask of qualifier
- DKEncodingTypeQualifierConst = 1 << 8, ///< const
- DKEncodingTypeQualifierIn = 1 << 9, ///< in
- DKEncodingTypeQualifierInout = 1 << 10, ///< inout
- DKEncodingTypeQualifierOut = 1 << 11, ///< out
- DKEncodingTypeQualifierBycopy = 1 << 12, ///< bycopy
- DKEncodingTypeQualifierByref = 1 << 13, ///< byref
- DKEncodingTypeQualifierOneway = 1 << 14, ///< oneway
-
- DKEncodingTypePropertyMask = 0xFF0000, ///< mask of property
- DKEncodingTypePropertyReadonly = 1 << 16, ///< readonly
- DKEncodingTypePropertyCopy = 1 << 17, ///< copy
- DKEncodingTypePropertyRetain = 1 << 18, ///< retain
- DKEncodingTypePropertyNonatomic = 1 << 19, ///< nonatomic
- DKEncodingTypePropertyWeak = 1 << 20, ///< weak
- DKEncodingTypePropertyCustomGetter = 1 << 21, ///< getter=
- DKEncodingTypePropertyCustomSetter = 1 << 22, ///< setter=
- DKEncodingTypePropertyDynamic = 1 << 23, ///< @dynamic
- };
- /**
- Get the type from a Type-Encoding string.
-
- @discussion See also:
- https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtTypeEncodings.html
- https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ObjCRuntimeGuide/Articles/ocrtPropertyIntrospection.html
-
- @param typeEncoding A Type-Encoding string.
- @return The encoding type.
- */
- DKEncodingType DKEncodingGetType(const char *typeEncoding);
- /**
- Instance variable information.
- */
- @interface DKClassIvarInfo : NSObject
- @property (nonatomic, assign, readonly) Ivar ivar; ///< ivar opaque struct
- @property (nonatomic, strong, readonly) NSString *name; ///< Ivar's name
- @property (nonatomic, assign, readonly) ptrdiff_t offset; ///< Ivar's offset
- @property (nonatomic, strong, readonly) NSString *typeEncoding; ///< Ivar's type encoding
- @property (nonatomic, assign, readonly) DKEncodingType type; ///< Ivar's type
- /**
- Creates and returns an ivar info object.
-
- @param ivar ivar opaque struct
- @return A new object, or nil if an error occurs.
- */
- - (instancetype)initWithIvar:(Ivar)ivar;
- @end
- /**
- Method information.
- */
- @interface DKClassMethodInfo : NSObject
- @property (nonatomic, assign, readonly) Method method; ///< method opaque struct
- @property (nonatomic, strong, readonly) NSString *name; ///< method name
- @property (nonatomic, assign, readonly) SEL sel; ///< method's selector
- @property (nonatomic, assign, readonly) IMP imp; ///< method's implementation
- @property (nonatomic, strong, readonly) NSString *typeEncoding; ///< method's parameter and return types
- @property (nonatomic, strong, readonly) NSString *returnTypeEncoding; ///< return value's type
- @property (nullable, nonatomic, strong, readonly) NSArray<NSString *> *argumentTypeEncodings; ///< array of arguments' type
- /**
- Creates and returns a method info object.
-
- @param method method opaque struct
- @return A new object, or nil if an error occurs.
- */
- - (instancetype)initWithMethod:(Method)method;
- @end
- /**
- Property information.
- */
- @interface DKClassPropertyInfo : NSObject
- @property (nonatomic, assign, readonly) objc_property_t property; ///< property's opaque struct
- @property (nonatomic, strong, readonly) NSString *name; ///< property's name
- @property (nonatomic, assign, readonly) DKEncodingType type; ///< property's type
- @property (nonatomic, strong, readonly) NSString *typeEncoding; ///< property's encoding value
- @property (nonatomic, strong, readonly) NSString *ivarName; ///< property's ivar name
- @property (nullable, nonatomic, assign, readonly) Class cls; ///< may be nil
- @property (nonatomic, assign, readonly) SEL getter; ///< getter (nonnull)
- @property (nonatomic, assign, readonly) SEL setter; ///< setter (nonnull)
- /**
- Creates and returns a property info object.
-
- @param property property opaque struct
- @return A new object, or nil if an error occurs.
- */
- - (instancetype)initWithProperty:(objc_property_t)property;
- @end
- /**
- Class information for a class.
- */
- @interface DKClassInfo : NSObject
- @property (nonatomic, assign, readonly) Class cls; ///< class object
- @property (nullable, nonatomic, assign, readonly) Class superCls; ///< super class object
- @property (nullable, nonatomic, assign, readonly) Class metaCls; ///< class's meta class object
- @property (nonatomic, readonly) BOOL isMeta; ///< whether this class is meta class
- @property (nonatomic, strong, readonly) NSString *name; ///< class name
- @property (nullable, nonatomic, strong, readonly) DKClassInfo *superClassInfo; ///< super class's class info
- @property (nullable, nonatomic, strong, readonly) NSDictionary<NSString *, DKClassIvarInfo *> *ivarInfos; ///< ivars
- @property (nullable, nonatomic, strong, readonly) NSDictionary<NSString *, DKClassMethodInfo *> *methodInfos; ///< methods
- @property (nullable, nonatomic, strong, readonly) NSDictionary<NSString *, DKClassPropertyInfo *> *propertyInfos; ///< properties
- /**
- If the class is changed (for example: you add a method to this class with
- 'class_addMethod()'), you should call this method to refresh the class info cache.
-
- After called this method, `needUpdate` will returns `YES`, and you should call
- 'classInfoWithClass' or 'classInfoWithClassName' to get the updated class info.
- */
- - (void)setNeedUpdate;
- /**
- If this method returns `YES`, you should stop using this instance and call
- `classInfoWithClass` or `classInfoWithClassName` to get the updated class info.
-
- @return Whether this class info need update.
- */
- - (BOOL)needUpdate;
- /**
- Get the class info of a specified Class.
-
- @discussion This method will cache the class info and super-class info
- at the first access to the Class. This method is thread-safe.
-
- @param cls A class.
- @return A class info, or nil if an error occurs.
- */
- + (nullable instancetype)classInfoWithClass:(Class)cls;
- /**
- Get the class info of a specified Class.
-
- @discussion This method will cache the class info and super-class info
- at the first access to the Class. This method is thread-safe.
-
- @param className A class name.
- @return A class info, or nil if an error occurs.
- */
- + (nullable instancetype)classInfoWithClassName:(NSString *)className;
- @end
- NS_ASSUME_NONNULL_END
|