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
Property.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_PROPERTY_H
16
#define LIEF_OBJC_PROPERTY_H
17
#include <
LIEF/visibility.h
>
18
19
#include <memory>
20
#include <string>
21
22
namespace
LIEF
{
23
namespace
objc
{
24
25
namespace
details
{
26
class
Property;
27
class
PropertyIt;
28
}
29
31
class
LIEF_API
Property
{
32
public
:
33
class
LIEF_API
Iterator
{
34
public
:
35
using
iterator_category
= std::bidirectional_iterator_tag;
36
using
value_type
= std::unique_ptr<Property>;
37
using
difference_type
= std::ptrdiff_t;
38
using
pointer
=
Property
*;
39
using
reference
= std::unique_ptr<Property>&;
40
using
implementation
= details::PropertyIt;
41
42
class
LIEF_API
PointerProxy {
43
// Inspired from LLVM's iterator_facade_base
44
friend
class
Iterator
;
45
public
:
46
pointer
operator->
()
const
{
return
R.get(); }
47
48
private
:
49
value_type
R;
50
51
template
<
typename
RefT>
52
PointerProxy
(RefT &&R) : R(std::forward<RefT>(R)) {}
// NOLINT(bugprone-forwarding-reference-overload)
53
};
54
55
Iterator
(
const
Iterator
&);
56
Iterator
(
Iterator
&&) noexcept;
57
Iterator
(std::unique_ptr<
details
::PropertyIt> impl);
58
~
Iterator
();
59
60
friend
LIEF_API
bool
operator==(const
Iterator
& LHS, const
Iterator
& RHS);
61
62
friend
LIEF_API
bool
operator!=(const
Iterator
& LHS, const
Iterator
& RHS) {
63
return
!(LHS == RHS);
64
}
65
66
Iterator
&
operator++
();
67
Iterator
&
operator--
();
68
69
Iterator
operator--
(
int
) {
70
Iterator
tmp = *
static_cast<
Iterator
*
>
(
this
);
71
--*
static_cast<
Iterator
*
>
(
this
);
72
return
tmp;
73
}
74
75
Iterator
operator++
(
int
) {
76
Iterator
tmp = *
static_cast<
Iterator
*
>
(
this
);
77
++*
static_cast<
Iterator
*
>
(
this
);
78
return
tmp;
79
}
80
81
std::unique_ptr<Property>
operator*
()
const
;
82
83
PointerProxy
operator->
()
const
{
84
return
static_cast<
const
Iterator
*
>
(
this
)->
operator
*();
85
}
86
87
private
:
88
std::unique_ptr<details::PropertyIt> impl_;
89
};
90
91
public
:
92
Property
(std::unique_ptr<details::Property> impl);
93
95
std::string
name
()
const
;
96
98
std::string
attribute
()
const
;
99
100
~Property
();
101
private
:
102
std::unique_ptr<details::Property> impl_;
103
};
104
105
}
106
}
107
#endif
LIEF::objc::Property::Iterator::PointerProxy
Definition
Property.hpp:42
LIEF::objc::Property::Iterator::PointerProxy::operator->
pointer operator->() const
Definition
Property.hpp:46
LIEF::objc::Property::Iterator::PointerProxy::Iterator
friend class Iterator
Definition
Property.hpp:44
LIEF::objc::Property::Iterator::Iterator
Iterator(const Iterator &)
LIEF::objc::Property::Iterator::difference_type
std::ptrdiff_t difference_type
Definition
Property.hpp:37
LIEF::objc::Property::Iterator::operator->
PointerProxy operator->() const
Definition
Property.hpp:83
LIEF::objc::Property::Iterator::operator++
Iterator operator++(int)
Definition
Property.hpp:75
LIEF::objc::Property::Iterator::operator++
Iterator & operator++()
LIEF::objc::Property::Iterator::operator--
Iterator & operator--()
LIEF::objc::Property::Iterator::pointer
Property * pointer
Definition
Property.hpp:38
LIEF::objc::Property::Iterator::value_type
std::unique_ptr< Property > value_type
Definition
Property.hpp:36
LIEF::objc::Property::Iterator::operator*
std::unique_ptr< Property > operator*() const
LIEF::objc::Property::Iterator::operator--
Iterator operator--(int)
Definition
Property.hpp:69
LIEF::objc::Property::Iterator::implementation
details::PropertyIt implementation
Definition
Property.hpp:40
LIEF::objc::Property::Iterator::reference
std::unique_ptr< Property > & reference
Definition
Property.hpp:39
LIEF::objc::Property::Iterator::iterator_category
std::bidirectional_iterator_tag iterator_category
Definition
Property.hpp:35
LIEF::objc::Property::Iterator::Iterator
Iterator(Iterator &&) noexcept
LIEF::objc::Property::attribute
std::string attribute() const
(raw) property's attributes (e.g. T@"NSString",C,D,N)
LIEF::objc::Property::~Property
~Property()
LIEF::objc::Property::name
std::string name() const
Name of the property.
LIEF::objc::Property::Property
Property(std::unique_ptr< details::Property > impl)
LIEF::objc::details
Definition
ObjC/Class.hpp:32
LIEF::objc
Namespace related to ObjC metadata.
Definition
MachO/Binary.hpp:41
LIEF
LIEF namespace.
Definition
Abstract/Binary.hpp:40
visibility.h
LIEF_API
#define LIEF_API
Definition
visibility.h:41
Generated by
1.17.0