Files
lief-project-LIEF/api/python/OAT/objects/pyClass.cpp
T
Romain Thomas e9782c5927 Clean & modernize LIEF code base
This commit (obviously non-atomic) cleans LIEF's code base by:
  - Using pointer semantics (`std::unique_ptr<>`)
  - Using LEAF boost error in the binary stream
  - Reducing the scope of the iterators (`it_section`, ...)
  - Removing `Structures.hpp` from the public headers
  - etc
2022-02-05 06:09:06 +01:00

109 lines
3.3 KiB
C++

/* Copyright 2017 - 2021 R. Thomas
* Copyright 2017 - 2021 Quarkslab
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "LIEF/OAT/Class.hpp"
#include "LIEF/OAT/hash.hpp"
#include "pyIterators.hpp"
#include "pyOAT.hpp"
namespace LIEF {
namespace OAT {
template<class T>
using getter_t = T (Class::*)(void) const;
template<class T>
using setter_t = void (Class::*)(T);
template<class T>
using no_const_getter = T (Class::*)(void);
template<>
void create<Class>(py::module& m) {
py::class_<Class, LIEF::Object> cls(m, "Class", "OAT Class representation");
init_ref_iterator<Class::it_methods>(cls, "it_methods");
cls
.def(py::init<>())
.def("has_dex_class",
&Class::has_dex_class,
"True if a " RST_CLASS_REF_FULL(lief.DEX.Class) " object "
"is associated with this **OAT** Class")
.def_property_readonly("status",
&Class::status,
"Class " RST_CLASS_REF(lief.OAT.OAT_CLASS_STATUS) "")
.def_property_readonly("type",
&Class::type,
"Information (" RST_CLASS_REF(lief.OAT.OAT_CLASS_TYPES) ") about how methods "
"are optimized")
.def_property_readonly("fullname",
&Class::fullname,
"Class mangled name (e.g. ``Lcom/android/MyActivity;``)")
.def_property_readonly("index",
&Class::index,
"Index the **DEX** classes pool (" RST_ATTR_REF_FULL(lief.DEX.File.classes) ")")
.def_property_readonly("methods",
static_cast<no_const_getter<Class::it_methods>>(&Class::methods),
"Iterator over " RST_CLASS_REF_FULL(lief.OAT.Method) "")
.def_property_readonly("bitmap",
&Class::bitmap,
"Bitmap information used to quickly find which methods are "
"optimized")
.def("is_quickened",
static_cast<bool(Class::*)(const LIEF::DEX::Method&) const>(&Class::is_quickened),
"Check if the given " RST_CLASS_REF_FULL(lief.DEX.Method) " is compiled into native code",
"dex_method"_a)
.def("is_quickened",
static_cast<bool(Class::*)(uint32_t relative_index) const>(&Class::is_quickened),
"Check if the Method at the given index is compiled into native code",
"method_index"_a)
.def("method_offsets_index",
static_cast<uint32_t(Class::*)(const LIEF::DEX::Method&) const>(&Class::method_offsets_index))
.def("method_offsets_index",
static_cast<uint32_t(Class::*)(uint32_t relative_index) const>(&Class::method_offsets_index))
.def("__eq__", &Class::operator==)
.def("__ne__", &Class::operator!=)
.def("__hash__",
[] (const Class& cls) {
return Hash::hash(cls);
})
.def("__str__",
[] (const Class& cls) {
std::ostringstream stream;
stream << cls;
return stream.str();
});
}
}
}