lpw
2023-06-03 aca600212ff84587e15aad341babd5eb2faf69a5
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
/*
 * 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
 
/** This class handles the runtime manipulation necessary to instrument selectors. It stores the
 *  classes and selectors that have been swizzled, and runs all operations on its own queue.
 */
@interface GULSwizzler : NSObject
 
/** Manipulates the Objective-C runtime to replace the original IMP with the supplied block.
 *
 *  @param aClass The class to swizzle.
 *  @param selector The selector of the class to swizzle.
 *  @param isClassSelector A BOOL specifying whether the selector is a class or instance selector.
 *  @param block The block that replaces the original IMP.
 */
+ (void)swizzleClass:(Class)aClass
            selector:(SEL)selector
     isClassSelector:(BOOL)isClassSelector
           withBlock:(nullable id)block;
 
/** Returns the current IMP for the given class and selector.
 *
 *  @param aClass The class to use.
 *  @param selector The selector to find the implementation of.
 *  @param isClassSelector A BOOL specifying whether the selector is a class or instance selector.
 *  @return The implementation of the selector in the runtime.
 */
+ (nullable IMP)currentImplementationForClass:(Class)aClass
                                     selector:(SEL)selector
                              isClassSelector:(BOOL)isClassSelector;
 
/** Checks the runtime to see if a selector exists on a class. If a property is declared as
 *  @dynamic, we have a reverse swizzling situation, where the implementation of a method exists
 *  only in concrete subclasses, and NOT in the superclass. We can detect that situation using
 *  this helper method. Similarly, we can detect situations where a class doesn't implement a
 *  protocol method.
 *
 *  @param selector The selector to check for.
 *  @param aClass The class to check.
 *  @param isClassSelector A BOOL specifying whether the selector is a class or instance selector.
 *  @return YES if the method was found in this selector/class combination, NO otherwise.
 */
+ (BOOL)selector:(SEL)selector existsInClass:(Class)aClass isClassSelector:(BOOL)isClassSelector;
 
/** Returns a list of all Objective-C (and not primitive) ivars contained by the given object.
 *
 *  @param object The object whose ivars will be iterated.
 *  @return The list of ivar objects.
 */
+ (NSArray<id> *)ivarObjectsForObject:(id)object;
 
@end
 
NS_ASSUME_NONNULL_END