LIEF: Library to Instrument Executable Formats Version 0.16.0
Loading...
Searching...
No Matches
Property.hpp
Go to the documentation of this file.
1/* Copyright 2022 - 2024 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
22namespace LIEF {
23namespace objc {
24
25namespace details {
26class Property;
27class PropertyIt;
28}
29
32 public:
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
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
56 Iterator(Iterator&&) noexcept;
57 Iterator(std::unique_ptr<details::PropertyIt> impl);
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
68
70 Iterator tmp = *static_cast<Iterator*>(this);
71 --*static_cast<Iterator *>(this);
72 return tmp;
73 }
74
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
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
101 private:
102 std::unique_ptr<details::Property> impl_;
103};
104
105}
106}
107#endif
pointer operator->() const
Definition Property.hpp:46
Definition Property.hpp:33
std::ptrdiff_t difference_type
Definition Property.hpp:37
PointerProxy operator->() const
Definition Property.hpp:83
Iterator operator++(int)
Definition Property.hpp:75
std::unique_ptr< Property > value_type
Definition Property.hpp:36
std::unique_ptr< Property > operator*() const
Iterator operator--(int)
Definition Property.hpp:69
details::PropertyIt implementation
Definition Property.hpp:40
std::unique_ptr< Property > & reference
Definition Property.hpp:39
std::bidirectional_iterator_tag iterator_category
Definition Property.hpp:35
Iterator(Iterator &&) noexcept
This class represents a @property in Objective-C.
Definition Property.hpp:31
std::string attribute() const
(raw) property's attributes (e.g. T@"NSString",C,D,N)
std::string name() const
Name of the property.
Property(std::unique_ptr< details::Property > impl)
LIEF namespace.
Definition Abstract/Binary.hpp:32
#define LIEF_API
Definition visibility.h:41