LIEF: Library to Instrument Executable Formats Version 0.16.0
Loading...
Searching...
No Matches
SubCache.hpp
Go to the documentation of this file.
1/* Copyright 2017 - 2024 R. Thomas
2 * Copyright 2017 - 2024 Quarkslab
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#ifndef LIEF_DSC_SUBCACHE_H
17#define LIEF_DSC_SUBCACHE_H
18#include "LIEF/visibility.h"
19#include "LIEF/iterators.hpp"
21
22#include <memory>
23#include <string>
24
25namespace LIEF {
26namespace dsc {
27class DyldSharedCache;
28
29namespace details {
30class SubCache;
31class SubCacheIt;
32}
33class LIEF_API SubCache {
39 public: class LIEF_API Iterator :
42 public iterator_facade_base<Iterator, std::random_access_iterator_tag,
43 std::unique_ptr<SubCache>, std::ptrdiff_t, SubCache*,
44 std::unique_ptr<SubCache>
45
46 >
47 {
48 public:
49 using implementation = details::SubCacheIt;
50
51 Iterator(std::unique_ptr<details::SubCacheIt> impl);
52 Iterator(const Iterator&);
53 Iterator& operator=(const Iterator&);
54
55 Iterator(Iterator&&) noexcept;
56 Iterator& operator=(Iterator&&) noexcept;
57
58 ~Iterator();
59 bool operator<(const Iterator& rhs) const;
60
61 std::ptrdiff_t operator-(const Iterator& R) const;
62
63 Iterator& operator+=(std::ptrdiff_t n);
64 Iterator& operator-=(std::ptrdiff_t n);
65
66 friend LIEF_API bool operator==(const Iterator& LHS, const Iterator& RHS);
67
68 friend LIEF_API bool operator!=(const Iterator& LHS, const Iterator& RHS) {
69 return !(LHS == RHS);
70 }
71
72 std::unique_ptr<SubCache> operator*() const;
73
74 private:
75 std::unique_ptr<details::SubCacheIt> impl_;
76 };
77
78 public:
79 SubCache(std::unique_ptr<details::SubCache> impl);
81 sc_uuid_t uuid() const;
84 uint64_t vm_offset() const;
87 std::string suffix() const;
90 std::unique_ptr<const DyldSharedCache> cache() const;
93
94 friend LIEF_API
95 std::ostream& operator<<(std::ostream& os, const SubCache& subcache);
96
97 private:
98 std::unique_ptr<details::SubCache> impl_;
99};
100
101}
102}
103#endif
This class represents a dyld shared cache file.
Definition DyldSharedCache/DyldSharedCache.hpp:36
std::unique_ptr< SubCache > operator*() const
Iterator(std::unique_ptr< details::SubCacheIt > impl)
Iterator(const Iterator &)
Iterator(Iterator &&) noexcept
Iterator & operator=(const Iterator &)
This class represents a subcache in the case of large/split dyld shared cache.
Definition SubCache.hpp:38
std::unique_ptr< const DyldSharedCache > cache() const
The associated DyldSharedCache object for this subcache.
SubCache(std::unique_ptr< details::SubCache > impl)
sc_uuid_t uuid() const
The uuid of the subcache file.
uint64_t vm_offset() const
The offset of this subcache from the main cache base address.
~SubCache()
std::string suffix() const
The file name suffix of the subCache file (e.g. .25.data, .03.development)
friend std::ostream & operator<<(std::ostream &os, const SubCache &subcache)
Definition DyldSharedCache/DyldSharedCache.hpp:31
Namespace related to the dyld shared cache support.
Definition caching.hpp:22
std::array< uint8_t, 16 > sc_uuid_t
UUID used in different places of the shared cache.
Definition uuid.hpp:26
LIEF namespace.
Definition Abstract/Binary.hpp:36
#define LIEF_API
Definition visibility.h:41