/* 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 "pyPE.hpp" #include "LIEF/PE/hash.hpp" #include "LIEF/PE/resources/ResourceStringFileInfo.hpp" #include #include namespace LIEF { namespace PE { template using getter_t = T (ResourceStringFileInfo::*)(void) const; template using setter_t = void (ResourceStringFileInfo::*)(T); template<> void create(py::module& m) { py::class_(m, "ResourceStringFileInfo", "Modelization of the ``StringFileInfo`` structure\n\n" "See: https://docs.microsoft.com/en-us/windows/win32/menurc/stringfileinfo") .def_property("type", static_cast>(&ResourceStringFileInfo::type), static_cast>(&ResourceStringFileInfo::type), "The type of data in the version resource\n\n" "* ``1`` if it contains text data\n" "* ``0`` if it contains binary data\n") .def_property("key", static_cast>(&ResourceStringFileInfo::key), static_cast>(&ResourceStringFileInfo::key), "Signature of the structure. Must be ``StringFileInfo``") .def_property("langcode_items", static_cast& (ResourceStringFileInfo::*)(void)>(&ResourceStringFileInfo::langcode_items), static_cast&>>(&ResourceStringFileInfo::langcode_items), "List of the LangCodeItem items\n\n" "Each :attr:`~lief.PE.LangCodeItem.key` indicates the appropriate " "language and code page for displaying the ``key: value`` of " ":attr:`~lief.PE.LangCodeItem.items`") .def("__eq__", &ResourceStringFileInfo::operator==) .def("__ne__", &ResourceStringFileInfo::operator!=) .def("__hash__", [] (const ResourceStringFileInfo& string_file_info) { return Hash::hash(string_file_info); }) .def("__str__", [] (const ResourceStringFileInfo& string_file_info) { std::ostringstream stream; stream << string_file_info; std::string str = stream.str(); return str; }); } } }