LIEF: Library to Instrument Executable Formats
Version 1.0.0
Toggle main menu visibility
Loading...
Searching...
No Matches
lief-install
x86_64
static
include
LIEF
ObjC
ObjC/Method.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_METHOD_H
16
#define LIEF_OBJC_METHOD_H
17
#include <
LIEF/iterators.hpp
>
18
#include <
LIEF/visibility.h
>
19
20
#include <cstdint>
21
#include <memory>
22
#include <string>
23
24
namespace
LIEF
{
25
namespace
objc
{
26
27
namespace
details
{
28
class
Method;
29
class
MethodIt;
30
}
31
33
class
LIEF_API
Method
{
34
public
:
35
class
Iterator
final
36
:
public
iterator_facade_base
<Iterator, std::bidirectional_iterator_tag,
37
Method, std::ptrdiff_t, const Method*,
38
const Method&> {
39
public
:
40
using
implementation
= details::MethodIt;
41
using
iterator_facade_base::operator++;
42
using
iterator_facade_base::operator--;
43
44
LIEF_API
Iterator
();
45
46
LIEF_API
Iterator
(std::unique_ptr<details::MethodIt> impl);
47
48
LIEF_API
Iterator
(
const
Iterator
&);
49
LIEF_API
Iterator
&
operator=
(
const
Iterator
&);
50
51
LIEF_API
Iterator
(
Iterator
&&) noexcept;
52
LIEF_API
Iterator
& operator=(
Iterator
&&) noexcept;
53
54
LIEF_API
~
Iterator
();
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)
63
LIEF_API
Iterator
&
operator++
();
64
65
// NOLINTNEXTLINE(bugprone-derived-method-shadowing-base-method)
66
LIEF_API
Iterator
&
operator--
();
67
68
LIEF_API
const
Method
&
operator*
()
const
;
69
70
// NOLINTNEXTLINE(bugprone-derived-method-shadowing-base-method)
71
LIEF_API
const
Method
*
operator->
()
const
;
72
75
LIEF_API
std::unique_ptr<Method>
yield
();
76
77
private
:
78
void
load()
const
;
79
80
std::unique_ptr<details::MethodIt> impl_;
81
mutable
std::unique_ptr<Method> cached_;
82
};
83
84
public
:
85
Method
(std::unique_ptr<details::Method> impl);
86
88
std::string
name
()
const
;
89
91
std::string
mangled_type
()
const
;
92
94
uintptr_t
address
()
const
;
95
97
bool
is_instance
()
const
;
98
99
~Method
();
100
101
private
:
102
std::unique_ptr<details::Method> impl_;
103
};
104
105
}
106
}
107
#endif
LIEF::iterator_facade_base
CRTP base class which implements the entire standard iterator facade in terms of a minimal subset of ...
Definition
iterators.hpp:729
LIEF::objc::Method::Iterator::Iterator
Iterator(Iterator &&) noexcept
LIEF::objc::Method::Iterator::Iterator
Iterator(const Iterator &)
LIEF::objc::Method::Iterator::Iterator
Iterator(std::unique_ptr< details::MethodIt > impl)
LIEF::objc::Method::Iterator::Iterator
Iterator()
LIEF::objc::Method::Iterator::operator*
const Method & operator*() const
LIEF::objc::Method::Iterator::operator--
Iterator & operator--()
LIEF::objc::Method::Iterator::operator=
Iterator & operator=(const Iterator &)
LIEF::objc::Method::Iterator::operator->
const Method * operator->() const
LIEF::objc::Method::Iterator::implementation
details::MethodIt implementation
Definition
ObjC/Method.hpp:40
LIEF::objc::Method::Iterator::operator++
Iterator & operator++()
LIEF::objc::Method::Iterator::yield
std::unique_ptr< Method > yield()
Transfer ownership of the method at the current position to the caller. Returns nullptr if the iterat...
LIEF::objc::Method::~Method
~Method()
LIEF::objc::Method::is_instance
bool is_instance() const
Whether it's an instance method.
LIEF::objc::Method::Method
Method(std::unique_ptr< details::Method > impl)
LIEF::objc::Method::name
std::string name() const
Name of the method.
LIEF::objc::Method::mangled_type
std::string mangled_type() const
Prototype of the method in its mangled representation (e.g. @16@0:8).
LIEF::objc::Method::address
uintptr_t address() const
Virtual address where this method is implemented in the binary.
iterators.hpp
LIEF::objc::details
Definition
ObjC/Class.hpp:32
LIEF::objc
Namespace related to ObjC metadata.
Definition
MachO/Binary.hpp:42
LIEF
LIEF namespace.
Definition
Abstract/Binary.hpp:40
visibility.h
LIEF_API
#define LIEF_API
Definition
visibility.h:45
Generated by
1.17.0