/* Copyright 2017 - 2022 R. Thomas * Copyright 2017 - 2022 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/ResourceVersion.hpp" #include #include namespace LIEF { namespace PE { template using getter_t = T (ResourceVersion::*)(void) const; template using setter_t = void (ResourceVersion::*)(T); template<> void create(py::module& m) { py::class_(m, "ResourceVersion", R"delim( Class that represents the data associated with the ``RT_VERSION`` entry See: `VS_VERSIONINFO `_ )delim") .def_property("type", static_cast>(&ResourceVersion::type), static_cast>(&ResourceVersion::type), R"delim( The type of data in the version resource * ``1`` if it contains text data * ``0`` if it contains binary data )delim") .def_property("key", static_cast>(&ResourceVersion::key), static_cast>(&ResourceVersion::key), "Signature of the structure. Must be ``VS_VERSION_INFO``") .def_property("fixed_file_info", static_cast>(&ResourceVersion::fixed_file_info), static_cast>(&ResourceVersion::fixed_file_info), R"delim( :class:`~lief.PE.ResourceFixedFileInfo` associated with the version (if any). This object describes various information about the application's version. If not present, this property is set to None )delim") .def_property("string_file_info", static_cast>(&ResourceVersion::string_file_info), static_cast>(&ResourceVersion::string_file_info), R"delim( :class:`~lief.PE.ResourceStringFileInfo` associated with the version (if any) This object describes various information about the application's version. The underlying structure is basically a dictionary (key/value) If the current :class:`~lief.PE.ResourceVersion` does not use :class:`~lief.PE.ResourceStringFileInfo`, it returns None. )delim") .def_property("var_file_info", static_cast>(&ResourceVersion::var_file_info), static_cast>(&ResourceVersion::var_file_info), R"delim( :class:`~lief.PE.ResourceVarFileInfo` associated with the version (if any) This object describes information about languages supported by the application. If the current :class:`~lief.PE.ResourceVersion` does not use :class:`~lief.PE.ResourceVarFileInfo`, it returns None. )delim") .def_property_readonly("has_fixed_file_info", &ResourceVersion::has_fixed_file_info, "``True`` if the version contains a " RST_CLASS_REF(lief.PE.ResourceFixedFileInfo) "") .def_property_readonly("has_string_file_info", &ResourceVersion::has_string_file_info, "``True`` if the version contains a " RST_CLASS_REF(lief.PE.ResourceStringFileInfo) "") .def_property_readonly("has_var_file_info", &ResourceVersion::has_var_file_info, "``True`` if the version contains a " RST_CLASS_REF(lief.PE.ResourceVarFileInfo) "") .def("remove_fixed_file_info", &ResourceVersion::remove_fixed_file_info, "Remove the " RST_CLASS_REF(lief.PE.ResourceFixedFileInfo) " from the version") .def("remove_string_file_info", &ResourceVersion::remove_string_file_info, "Remove the " RST_CLASS_REF(lief.PE.ResourceStringFileInfo) " from the version") .def("remove_var_file_info", &ResourceVersion::remove_var_file_info, "Remove the " RST_CLASS_REF(lief.PE.ResourceVarFileInfo) " from the version") .def("__eq__", &ResourceVersion::operator==) .def("__ne__", &ResourceVersion::operator!=) .def("__hash__", [] (const ResourceVersion& version) { return Hash::hash(version); }) .def("__str__", [] (const ResourceVersion& version) { std::ostringstream stream; stream << version; std::string str = stream.str(); return str; }); } } }