LIEF: Library to Instrument Executable Formats Version 1.0.0
Loading...
Searching...
No Matches
IVar.hpp
Go to the documentation of this file.
1/* Copyright 2022 - 2026 R. Thomas
2 *
3 * Licensed under the Apache License, Version 2.0 (the "License");
4 * you may not use this file except in compliance with the License.
5 * You may obtain a copy of the License at
6 *
7 * http://www.apache.org/licenses/LICENSE-2.0
8 *
9 * Unless required by applicable law or agreed to in writing, software
10 * distributed under the License is distributed on an "AS IS" BASIS,
11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 * See the License for the specific language governing permissions and
13 * limitations under the License.
14 */
15#ifndef LIEF_OBJC_IVAR_H
16#define LIEF_OBJC_IVAR_H
17#include <LIEF/visibility.h>
18#include <LIEF/ObjC/Method.hpp>
20#include <LIEF/iterators.hpp>
21
22#include <memory>
23#include <string>
24
25namespace LIEF {
26namespace objc {
27
28namespace details {
29class IVar;
30class IVarIt;
31}
32
35 public:
37 public:
38 using iterator_category = std::bidirectional_iterator_tag;
39 using value_type = std::unique_ptr<IVar>;
40 using difference_type = std::ptrdiff_t;
41 using pointer = IVar*;
42 using reference = std::unique_ptr<IVar>&;
43 using implementation = details::IVarIt;
44
45 class LIEF_API PointerProxy {
46 // Inspired from LLVM's iterator_facade_base
47 friend class Iterator;
48
49 public:
51 return R.get();
52 }
53
54 private:
55 value_type R;
56
57 template<typename RefT>
58 PointerProxy(RefT&& R) :
59 R(std::forward<RefT>(R)) {
60 } // NOLINT(bugprone-forwarding-reference-overload)
61 };
62
64 Iterator(Iterator&&) noexcept;
65 Iterator(std::unique_ptr<details::IVarIt> impl);
67
68 friend LIEF_API bool operator==(const Iterator& LHS, const Iterator& RHS);
69
70 friend LIEF_API bool operator!=(const Iterator& LHS, const Iterator& RHS) {
71 return !(LHS == RHS);
72 }
73
76
78 Iterator tmp = *static_cast<Iterator*>(this);
79 --*static_cast<Iterator*>(this);
80 return tmp;
81 }
82
84 Iterator tmp = *static_cast<Iterator*>(this);
85 ++*static_cast<Iterator*>(this);
86 return tmp;
87 }
88
89 std::unique_ptr<IVar> operator*() const;
90
92 return static_cast<const Iterator*>(this)->operator*();
93 }
94
95 private:
96 std::unique_ptr<details::IVarIt> impl_;
97 };
98
99 public:
100 IVar(std::unique_ptr<details::IVar> impl);
101
103 std::string name() const;
104
106 std::string mangled_type() const;
107
109
110 private:
111 std::unique_ptr<details::IVar> impl_;
112};
113
114}
115}
116#endif
pointer operator->() const
Definition IVar.hpp:50
friend class Iterator
Definition IVar.hpp:47
Iterator(Iterator &&) noexcept
details::IVarIt implementation
Definition IVar.hpp:43
std::unique_ptr< IVar > operator*() const
std::ptrdiff_t difference_type
Definition IVar.hpp:40
std::unique_ptr< IVar > & reference
Definition IVar.hpp:42
std::bidirectional_iterator_tag iterator_category
Definition IVar.hpp:38
Iterator operator--(int)
Definition IVar.hpp:77
Iterator operator++(int)
Definition IVar.hpp:83
PointerProxy operator->() const
Definition IVar.hpp:91
Iterator(const Iterator &)
IVar * pointer
Definition IVar.hpp:41
std::unique_ptr< IVar > value_type
Definition IVar.hpp:39
std::string mangled_type() const
Type of the instance var in its mangled representation ([29i]).
IVar(std::unique_ptr< details::IVar > impl)
std::string name() const
Name of the instance variable.
Definition ObjC/Class.hpp:32
Namespace related to ObjC metadata.
Definition MachO/Binary.hpp:41
LIEF namespace.
Definition Abstract/Binary.hpp:40
Definition string.h:155
#define LIEF_API
Definition visibility.h:43