mirror of
https://github.com/lief-project/LIEF
synced 2026-06-08 15:30:44 +00:00
134 lines
4.9 KiB
C++
134 lines
4.9 KiB
C++
/* Copyright 2017 - 2023 R. Thomas
|
|
* Copyright 2017 - 2023 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 <string>
|
|
#include <sstream>
|
|
|
|
namespace LIEF {
|
|
namespace PE {
|
|
|
|
template<class T>
|
|
using getter_t = T (ResourceVersion::*)(void) const;
|
|
|
|
template<class T>
|
|
using setter_t = void (ResourceVersion::*)(T);
|
|
|
|
|
|
template<>
|
|
void create<ResourceVersion>(py::module& m) {
|
|
py::class_<ResourceVersion, LIEF::Object>(m, "ResourceVersion",
|
|
R"delim(
|
|
Class that represents the data associated with the ``RT_VERSION`` entry
|
|
|
|
See: `VS_VERSIONINFO <https://docs.microsoft.com/en-us/windows/win32/menurc/vs-versioninfo>`_
|
|
)delim")
|
|
|
|
.def_property("type",
|
|
static_cast<getter_t<uint16_t>>(&ResourceVersion::type),
|
|
static_cast<setter_t<uint16_t>>(&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<getter_t<const std::u16string&>>(&ResourceVersion::key),
|
|
static_cast<setter_t<const std::string&>>(&ResourceVersion::key),
|
|
"Signature of the structure. Must be ``VS_VERSION_INFO``")
|
|
|
|
.def_property("fixed_file_info",
|
|
static_cast<getter_t<const ResourceFixedFileInfo*>>(&ResourceVersion::fixed_file_info),
|
|
static_cast<setter_t<const ResourceFixedFileInfo&>>(&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<getter_t<const ResourceStringFileInfo*>>(&ResourceVersion::string_file_info),
|
|
static_cast<setter_t<const ResourceStringFileInfo&>>(&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<getter_t<const ResourceVarFileInfo*>>(&ResourceVersion::var_file_info),
|
|
static_cast<setter_t<const ResourceVarFileInfo&>>(&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;
|
|
});
|
|
}
|
|
|
|
}
|
|
}
|
|
|