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:
36 class Iterator final
37 : public iterator_facade_base<Iterator, std::bidirectional_iterator_tag, IVar,
38 std::ptrdiff_t, const IVar*, const IVar&> {
39 public:
40 using implementation = details::IVarIt;
41 using iterator_facade_base::operator++;
42 using iterator_facade_base::operator--;
43
45
46 LIEF_API Iterator(std::unique_ptr<details::IVarIt> impl);
47
50
52 LIEF_API Iterator& operator=(Iterator&&) noexcept;
53
55
56 friend LIEF_API bool operator==(const Iterator& LHS, const Iterator& RHS);
57
58 friend bool operator!=(const Iterator& LHS, const Iterator& RHS) {
59 return !(LHS == RHS);
60 }
61
62 // NOLINTNEXTLINE(bugprone-derived-method-shadowing-base-method)
64
65 // NOLINTNEXTLINE(bugprone-derived-method-shadowing-base-method)
67
68 LIEF_API const IVar& operator*() const;
69
70 // NOLINTNEXTLINE(bugprone-derived-method-shadowing-base-method)
71 LIEF_API const IVar* operator->() const;
72
75 LIEF_API std::unique_ptr<IVar> yield();
76
77 private:
78 void load() const;
79
80 std::unique_ptr<details::IVarIt> impl_;
81 mutable std::unique_ptr<IVar> cached_;
82 };
83
84 public:
85 IVar(std::unique_ptr<details::IVar> impl);
86
88 std::string name() const;
89
91 std::string mangled_type() const;
92
94
95 private:
96 std::unique_ptr<details::IVar> impl_;
97};
98
99}
100}
101#endif
CRTP base class which implements the entire standard iterator facade in terms of a minimal subset of ...
Definition iterators.hpp:729
Iterator(Iterator &&) noexcept
details::IVarIt implementation
Definition IVar.hpp:40
Iterator & operator=(const Iterator &)
const IVar * operator->() const
const IVar & operator*() const
std::unique_ptr< IVar > yield()
Transfer ownership of the ivar at the current position to the caller. Returns nullptr if the iterator...
Iterator(std::unique_ptr< details::IVarIt > impl)
Iterator(const Iterator &)
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:42
LIEF namespace.
Definition Abstract/Binary.hpp:40
#define LIEF_API
Definition visibility.h:45