blob: cfb92bae2215f5a2771a62db3979daa4e3144fda [file] [log] [blame]
[email protected]0b7f85232014-08-12 12:03:481// Copyright 2014 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#import "base/mac/scoped_objc_class_swizzler.h"
6
7#include <string.h>
8
Hans Wennborga47ddf82020-05-05 18:08:079#include "base/check_op.h"
[email protected]0b7f85232014-08-12 12:03:4810
11namespace base {
12namespace mac {
13
14ScopedObjCClassSwizzler::ScopedObjCClassSwizzler(Class target,
15 Class source,
16 SEL selector)
17 : old_selector_impl_(NULL), new_selector_impl_(NULL) {
18 Init(target, source, selector, selector);
19}
20
21ScopedObjCClassSwizzler::ScopedObjCClassSwizzler(Class target,
22 SEL original,
23 SEL alternate)
24 : old_selector_impl_(NULL), new_selector_impl_(NULL) {
25 Init(target, target, original, alternate);
26}
27
28ScopedObjCClassSwizzler::~ScopedObjCClassSwizzler() {
29 if (old_selector_impl_ && new_selector_impl_)
30 method_exchangeImplementations(old_selector_impl_, new_selector_impl_);
31}
32
Elly Fong-Jones3ef60b752019-11-12 19:02:0333IMP ScopedObjCClassSwizzler::GetOriginalImplementation() const {
[email protected]0b7f85232014-08-12 12:03:4834 // Note that while the swizzle is in effect the "new" method is actually
35 // pointing to the original implementation, since they have been swapped.
36 return method_getImplementation(new_selector_impl_);
37}
38
39void ScopedObjCClassSwizzler::Init(Class target,
40 Class source,
41 SEL original,
42 SEL alternate) {
43 old_selector_impl_ = class_getInstanceMethod(target, original);
44 new_selector_impl_ = class_getInstanceMethod(source, alternate);
45 if (!old_selector_impl_ && !new_selector_impl_) {
46 // Try class methods.
47 old_selector_impl_ = class_getClassMethod(target, original);
48 new_selector_impl_ = class_getClassMethod(source, alternate);
49 }
50
51 DCHECK(old_selector_impl_);
52 DCHECK(new_selector_impl_);
53 if (!old_selector_impl_ || !new_selector_impl_)
54 return;
55
56 // The argument and return types must match exactly.
57 const char* old_types = method_getTypeEncoding(old_selector_impl_);
58 const char* new_types = method_getTypeEncoding(new_selector_impl_);
59 DCHECK(old_types);
60 DCHECK(new_types);
61 DCHECK_EQ(0, strcmp(old_types, new_types));
62 if (!old_types || !new_types || strcmp(old_types, new_types)) {
63 old_selector_impl_ = new_selector_impl_ = NULL;
64 return;
65 }
66
67 method_exchangeImplementations(old_selector_impl_, new_selector_impl_);
68}
69
70} // namespace mac
71} // namespace base