LIEF: Library to Instrument Executable Formats Version 0.15.0
Loading...
Searching...
No Matches
PogoEntry.hpp
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_PE_DEBUG_POGO_ENTRY_H
17#define LIEF_PE_DEBUG_POGO_ENTRY_H
18#include <ostream>
19#include <cstdint>
20
21#include "LIEF/Object.hpp"
22#include "LIEF/visibility.h"
23
24namespace LIEF {
25namespace PE {
26
27class Builder;
28class Parser;
29
30class LIEF_API PogoEntry : public Object {
31 friend class Builder;
32 friend class Parser;
33
34 public:
35 PogoEntry();
36 PogoEntry(PogoEntry&& other);
37 PogoEntry& operator=(PogoEntry&& other);
38 PogoEntry(const PogoEntry&);
39 PogoEntry(uint32_t start_rva, uint32_t size, std::string name) :
40 start_rva_{start_rva},
41 size_{size},
42 name_{std::move(name)}
43 {}
44
45 PogoEntry(uint32_t start_rva, uint32_t size) :
46 PogoEntry{start_rva, size, ""}
47 {}
48
49 PogoEntry& operator=(const PogoEntry&);
50 ~PogoEntry() override;
51
52 uint32_t start_rva() const {
53 return start_rva_;
54 }
55
56 uint32_t size() const {
57 return size_;
58 }
59
60 const std::string& name() const {
61 return name_;
62 }
63
64 void start_rva(uint32_t start_rva) {
65 start_rva_ = start_rva;
66 }
67
68 void size(uint32_t size) {
69 size_ = size;
70 }
71
72 void name(std::string name) {
73 name_ = std::move(name);
74 }
75
76 void accept(Visitor& visitor) const override;
77
78 LIEF_API friend std::ostream& operator<<(std::ostream& os, const PogoEntry& entry);
79
80 protected:
81 uint32_t start_rva_ = 0;
82 uint32_t size_ = 0;
83 std::string name_;
84};
85
86} // Namespace PE
87} // Namespace LIEF
88
89#endif
Definition Object.hpp:25
Class that is used to rebuild a raw PE binary from a PE::Binary object.
Definition PE/Builder.hpp:45
Main interface to parse PE binaries. In particular the static functions: Parser::parse should be used...
Definition PE/Parser.hpp:47
Definition PogoEntry.hpp:30
Definition Visitor.hpp:219
LIEF namespace.
Definition Abstract/Binary.hpp:32