2017-03-30 16:56:49 +02:00
|
|
|
/* Copyright 2017 R. Thomas
|
|
|
|
* Copyright 2017 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.
|
|
|
|
*/
|
2018-09-12 14:44:18 +02:00
|
|
|
#include "pyAbstract.hpp"
|
2017-03-30 16:56:49 +02:00
|
|
|
#include "LIEF/Abstract/Symbol.hpp"
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <sstream>
|
|
|
|
|
2018-09-12 14:44:18 +02:00
|
|
|
namespace LIEF {
|
2017-03-30 16:56:49 +02:00
|
|
|
|
|
|
|
template<class T>
|
2018-09-12 14:44:18 +02:00
|
|
|
using getter_t = T (Symbol::*)(void) const;
|
2017-03-30 16:56:49 +02:00
|
|
|
|
2018-09-12 14:44:18 +02:00
|
|
|
template<class T>
|
|
|
|
using setter_t = void (Symbol::*)(T);
|
2017-03-30 16:56:49 +02:00
|
|
|
|
2018-09-12 14:44:18 +02:00
|
|
|
template<>
|
|
|
|
void create<Symbol>(py::module& m) {
|
2017-03-30 16:56:49 +02:00
|
|
|
|
2018-09-12 14:44:18 +02:00
|
|
|
py::class_<Symbol, Object>(m, "Symbol")
|
2017-03-30 16:56:49 +02:00
|
|
|
.def(py::init())
|
|
|
|
|
|
|
|
.def_property("name",
|
2018-09-12 14:44:18 +02:00
|
|
|
[] (const Symbol& obj) {
|
2017-07-15 14:15:16 +02:00
|
|
|
return safe_string_converter(obj.name());
|
|
|
|
},
|
2018-09-12 14:44:18 +02:00
|
|
|
static_cast<setter_t<const std::string&>>(&Symbol::name),
|
2017-03-30 16:56:49 +02:00
|
|
|
"Symbol's name")
|
|
|
|
|
2018-09-12 14:44:18 +02:00
|
|
|
.def_property("value",
|
|
|
|
static_cast<getter_t<uint64_t>>(&Symbol::value),
|
|
|
|
static_cast<setter_t<uint64_t>>(&Symbol::value),
|
|
|
|
"Symbol's value")
|
|
|
|
|
|
|
|
.def_property("size",
|
|
|
|
static_cast<getter_t<uint64_t>>(&Symbol::size),
|
|
|
|
static_cast<setter_t<uint64_t>>(&Symbol::size),
|
|
|
|
"Symbol's size")
|
|
|
|
|
2017-03-30 16:56:49 +02:00
|
|
|
.def("__str__",
|
2018-09-12 14:44:18 +02:00
|
|
|
[] (const Symbol& symbol)
|
2017-03-30 16:56:49 +02:00
|
|
|
{
|
|
|
|
std::ostringstream stream;
|
|
|
|
stream << symbol;
|
|
|
|
std::string str = stream.str();
|
|
|
|
return str;
|
|
|
|
});
|
|
|
|
}
|
2018-09-12 14:44:18 +02:00
|
|
|
|
|
|
|
}
|