lpw
2021-04-20 ed8a75165efbcd79f5f9b1ab6f4ec10eed6f16a1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
/*
 * Copyright 2018 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
/** Enums that map to their OBJC-prefixed counterparts. */
typedef OBJC_ENUM(uintptr_t, GUL_ASSOCIATION){
 
    // Is a weak association.
    GUL_ASSOCIATION_ASSIGN,
 
    // Is a nonatomic strong association.
    GUL_ASSOCIATION_RETAIN_NONATOMIC,
 
    // Is a nonatomic copy association.
    GUL_ASSOCIATION_COPY_NONATOMIC,
 
    // Is an atomic strong association.
    GUL_ASSOCIATION_RETAIN,
 
    // Is an atomic copy association.
    GUL_ASSOCIATION_COPY};
 
/** This class handles swizzling a specific instance of a class by generating a
 *  dynamic subclass and installing selectors and properties onto the dynamic
 *  subclass. Then, the instance's class is set to the dynamic subclass. There
 *  should be a 1:1 ratio of object swizzlers to swizzled instances.
 */
@interface GULObjectSwizzler : NSObject
 
/** The subclass that is generated. */
@property(nullable, nonatomic, readonly) Class generatedClass;
 
/** Sets an associated object in the runtime. This mechanism can be used to
 *  simulate adding properties.
 *
 *  @param object The object that will be queried for the associated object.
 *  @param key The key of the associated object.
 *  @param value The value to associate to the swizzled object.
 *  @param association The mechanism to use when associating the objects.
 */
+ (void)setAssociatedObject:(id)object
                        key:(NSString *)key
                      value:(nullable id)value
                association:(GUL_ASSOCIATION)association;
 
/** Gets an associated object in the runtime. This mechanism can be used to
 *  simulate adding properties.
 *
 *  @param object The object that will be queried for the associated object.
 *  @param key The key of the associated object.
 */
+ (nullable id)getAssociatedObject:(id)object key:(NSString *)key;
 
/** Please use the designated initializer. */
- (instancetype)init NS_UNAVAILABLE;
 
/** Instantiates an object swizzler using an object it will operate on.
 *  Generates a new class pair.
 *
 *  @note There is no need to store this object. After calling -swizzle, this
 *  object can be found by calling -gul_objectSwizzler
 *
 *  @param object The object to be swizzled.
 *  @return An instance of this class.
 */
- (instancetype)initWithObject:(id)object NS_DESIGNATED_INITIALIZER;
 
/** Sets an associated object in the runtime. This mechanism can be used to
 *  simulate adding properties.
 *
 *  @param key The key of the associated object.
 *  @param value The value to associate to the swizzled object.
 *  @param association The mechanism to use when associating the objects.
 */
- (void)setAssociatedObjectWithKey:(NSString *)key
                             value:(id)value
                       association:(GUL_ASSOCIATION)association;
 
/** Gets an associated object in the runtime. This mechanism can be used to
 *  simulate adding properties.
 *
 *  @param key The key of the associated object.
 */
- (nullable id)getAssociatedObjectForKey:(NSString *)key;
 
/** Copies a selector from an existing class onto the generated dynamic subclass
 *  that this object will adopt. This mechanism can be used to add methods to
 *  specific instances of a class.
 *
 *  @note Should not be called after calling -swizzle.
 *  @param selector The selector to add to the instance.
 *  @param aClass The class supplying an implementation of the method.
 *  @param isClassSelector A BOOL specifying whether the selector is a class or
 * instance selector.
 */
- (void)copySelector:(SEL)selector fromClass:(Class)aClass isClassSelector:(BOOL)isClassSelector;
 
/** Swizzles the object, changing its class to the generated class. Registers
 *  the class pair. */
- (void)swizzle;
 
/** @return The value of -[objectBeingSwizzled isProxy] */
- (BOOL)isSwizzlingProxyObject;
 
@end
 
NS_ASSUME_NONNULL_END