| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107 |
- // Copyright 2020 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 "FirebasePerformance/Sources/Instrumentation/FPRSelectorInstrumentor.h"
- #import "FirebasePerformance/Sources/Common/FPRDiagnostics.h"
- #import <GoogleUtilities/GULSwizzler.h>
- #ifdef UNSWIZZLE_AVAILABLE
- #import <GoogleUtilities/GULSwizzler+Unswizzle.h>
- #endif
- @implementation FPRSelectorInstrumentor {
- // The class this instrumentor operates on.
- Class _class;
- // The selector this instrumentor operates on.
- SEL _selector;
- // YES indicates the selector swizzled is a class selector, as opposed to an instance selector.
- BOOL _isClassSelector;
- // YES indicates that this selector instrumentor has been swizzled.
- BOOL _swizzled;
- // A block to replace the original implementation. Can't be used with before/after blocks.
- id _replacingBlock;
- }
- - (instancetype)init {
- FPRAssert(NO, @"%@: Please use the designated initializer", NSStringFromClass([self class]));
- return nil;
- }
- - (instancetype)initWithSelector:(SEL)selector
- class:(Class)aClass
- isClassSelector:(BOOL)isClassSelector {
- if (![GULSwizzler selector:selector existsInClass:aClass isClassSelector:isClassSelector]) {
- return nil;
- }
- self = [super init];
- if (self) {
- _selector = selector;
- _class = aClass;
- _isClassSelector = isClassSelector;
- FPRAssert(_selector, @"A selector to swizzle must be provided.");
- FPRAssert(_class, @"You can't swizzle a class that doesn't exist");
- }
- return self;
- }
- - (void)setReplacingBlock:(id)block {
- _replacingBlock = [block copy];
- }
- - (void)swizzle {
- _swizzled = YES;
- FPRAssert(_replacingBlock, @"A replacingBlock needs to be set.");
- [GULSwizzler swizzleClass:_class
- selector:_selector
- isClassSelector:_isClassSelector
- withBlock:_replacingBlock];
- }
- - (void)unswizzle {
- _swizzled = NO;
- #ifdef UNSWIZZLE_AVAILABLE
- [GULSwizzler unswizzleClass:_class selector:_selector isClassSelector:_isClassSelector];
- #else
- NSAssert(NO, @"Unswizzling is disabled.");
- #endif
- }
- - (IMP)currentIMP {
- return [GULSwizzler currentImplementationForClass:_class
- selector:_selector
- isClassSelector:_isClassSelector];
- }
- - (BOOL)isEqual:(id)object {
- if ([object isKindOfClass:[FPRSelectorInstrumentor class]]) {
- FPRSelectorInstrumentor *otherObject = object;
- return otherObject->_class == _class && otherObject->_selector == _selector &&
- otherObject->_isClassSelector == _isClassSelector && otherObject->_swizzled == _swizzled;
- }
- return NO;
- }
- - (NSUInteger)hash {
- return [[NSString stringWithFormat:@"%@%@%d%d", NSStringFromClass(_class),
- NSStringFromSelector(_selector), _isClassSelector, _swizzled]
- hash];
- }
- @end
|