Switch the bindings to nanobind (and update the CI)

This commit is contained in:
Romain Thomas
2023-07-09 21:33:43 +02:00
parent 7e387675ac
commit e37ffa9ec8
377 changed files with 12540 additions and 15730 deletions
+41 -72
View File
@@ -13,109 +13,78 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <algorithm>
#include <string>
#include <sstream>
#include <nanobind/stl/string.h>
#include <nanobind/stl/vector.h>
#include "LIEF/MachO/hash.hpp"
#include "LIEF/MachO/ExportInfo.hpp"
#include "LIEF/MachO/Symbol.hpp"
#include "LIEF/MachO/DylibCommand.hpp"
#include "pyMachO.hpp"
#include "pyIterators.hpp"
namespace LIEF {
namespace MachO {
template<class T>
using getter_t = T (ExportInfo::*)(void) const;
template<class T>
using no_const_getter_t = T (ExportInfo::*)(void);
template<class T>
using setter_t = void (ExportInfo::*)(T);
#include "MachO/pyMachO.hpp"
#include "pyIterator.hpp"
namespace LIEF::MachO::py {
template<>
void create<ExportInfo>(py::module& m) {
py::class_<ExportInfo, LIEF::Object>(m, "ExportInfo",
void create<ExportInfo>(nb::module_& m) {
nb::class_<ExportInfo, Object>(m, "ExportInfo",
R"delim(
Class that provides an interface over the Dyld export info
This class does not represent a structure that exists in the Mach-O format
specification but provides a *view* on an entry of the Dyld export trie.
)delim")
)delim"_doc)
.def_property_readonly("node_offset",
static_cast<getter_t<uint64_t>>(&ExportInfo::node_offset),
"Original offset in the export Trie")
.def_prop_ro("node_offset",
nb::overload_cast<>(&ExportInfo::node_offset, nb::const_),
"Original offset in the export Trie"_doc)
.def_property_readonly("kind",
static_cast<getter_t<EXPORT_SYMBOL_KINDS>>(&ExportInfo::kind),
"The export's kind: regular, thread local, absolute, ... (" RST_CLASS_REF(lief.MachO.EXPORT_SYMBOL_KINDS) ")")
.def_prop_ro("kind",
nb::overload_cast<>(&ExportInfo::kind, nb::const_),
"The export's kind: regular, thread local, absolute, ... (" RST_CLASS_REF(lief.MachO.EXPORT_SYMBOL_KINDS) ")"_doc)
.def_property_readonly("flags_list",
static_cast<getter_t<ExportInfo::flag_list_t>>(&ExportInfo::flags_list),
"Return flags as a list of " RST_CLASS_REF(lief.MachO.EXPORT_SYMBOL_KINDS) "")
.def_prop_ro("flags_list",
nb::overload_cast<>(&ExportInfo::flags_list, nb::const_),
"Return flags as a list of " RST_CLASS_REF(lief.MachO.EXPORT_SYMBOL_KINDS) ""_doc)
.def_property("flags",
static_cast<getter_t<uint64_t>>(&ExportInfo::flags),
static_cast<setter_t<uint64_t>>(&ExportInfo::flags),
"Some information (" RST_CLASS_REF(lief.MachO.EXPORT_SYMBOL_FLAGS) ") about the export (like weak export, reexport, ...)")
.def_prop_rw("flags",
nb::overload_cast<>(&ExportInfo::flags, nb::const_),
nb::overload_cast<uint64_t>(&ExportInfo::flags),
"Some information (" RST_CLASS_REF(lief.MachO.EXPORT_SYMBOL_FLAGS) ") about the export (like weak export, reexport, ...)"_doc)
.def_property("address",
static_cast<getter_t<uint64_t>>(&ExportInfo::address),
static_cast<setter_t<uint64_t>>(&ExportInfo::address),
"The address of the export")
.def_prop_rw("address",
nb::overload_cast<>(&ExportInfo::address, nb::const_),
nb::overload_cast<uint64_t>(&ExportInfo::address),
"The address of the export"_doc)
.def_property_readonly("alias",
static_cast<no_const_getter_t<Symbol*>>(&ExportInfo::alias),
"" RST_CLASS_REF(lief.MachO.Symbol) " alias if the current symbol is re-exported",
py::return_value_policy::reference)
.def_prop_ro("alias",
nb::overload_cast<>(&ExportInfo::alias, nb::const_),
"" RST_CLASS_REF(lief.MachO.Symbol) " alias if the current symbol is re-exported"_doc,
nb::rv_policy::reference_internal)
.def_property_readonly("alias_library",
static_cast<no_const_getter_t<DylibCommand*>>(&ExportInfo::alias_library),
.def_prop_ro("alias_library",
nb::overload_cast<>(&ExportInfo::alias_library, nb::const_),
"If the current symbol has an alias, it returns the " RST_CLASS_REF(lief.MachO.DylibCommand) " "
" command associated with",
py::return_value_policy::reference)
" command associated with"_doc,
nb::rv_policy::reference_internal)
.def_property_readonly("has_symbol",
.def_prop_ro("has_symbol",
&ExportInfo::has_symbol,
"``True`` if the export info has a " RST_CLASS_REF(lief.MachO.Symbol) " associated with")
"``True`` if the export info has a " RST_CLASS_REF(lief.MachO.Symbol) " associated with"_doc)
.def("has",
&ExportInfo::has,
"Check if the flag " RST_CLASS_REF(lief.MachO.EXPORT_SYMBOL_FLAGS) " given in first parameter is present"
"Check if the flag " RST_CLASS_REF(lief.MachO.EXPORT_SYMBOL_FLAGS) " given in first parameter is present"_doc,
"flag"_a)
.def_property_readonly("symbol",
static_cast<Symbol* (ExportInfo::*)(void)>(&ExportInfo::symbol),
"" RST_CLASS_REF(lief.MachO.Symbol) " associated with the export if any, or None ",
py::return_value_policy::reference)
.def("__eq__", &ExportInfo::operator==)
.def("__ne__", &ExportInfo::operator!=)
.def("__hash__",
[] (const ExportInfo& export_info) {
return Hash::hash(export_info);
})
.def("__str__",
[] (const ExportInfo& export_info)
{
std::ostringstream stream;
stream << export_info;
std::string str = stream.str();
return str;
});
.def_prop_ro("symbol",
nb::overload_cast<>(&ExportInfo::symbol),
"" RST_CLASS_REF(lief.MachO.Symbol) " associated with the export if any, or None "_doc,
nb::rv_policy::reference_internal)
LIEF_DEFAULT_STR(ExportInfo);
}
}
}