mirror of
https://github.com/QuasarApp/LIEF.git
synced 2025-04-27 12:54:32 +00:00
104 lines
2.8 KiB
C++
104 lines
2.8 KiB
C++
/* 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.
|
|
*/
|
|
#include <numeric>
|
|
#include <iomanip>
|
|
|
|
#include "LIEF/MachO/hash.hpp"
|
|
|
|
#include "LIEF/MachO/Structures.hpp"
|
|
#include "LIEF/MachO/VersionMin.hpp"
|
|
|
|
namespace LIEF {
|
|
namespace MachO {
|
|
|
|
VersionMin::VersionMin(void) = default;
|
|
VersionMin& VersionMin::operator=(const VersionMin&) = default;
|
|
VersionMin::VersionMin(const VersionMin&) = default;
|
|
VersionMin::~VersionMin(void) = default;
|
|
|
|
VersionMin::VersionMin(const version_min_command *version_cmd) :
|
|
LoadCommand::LoadCommand{static_cast<LOAD_COMMAND_TYPES>(version_cmd->cmd), version_cmd->cmdsize},
|
|
version_{{
|
|
static_cast<uint32_t>((version_cmd->version >> 16) & 0xFFFF),
|
|
static_cast<uint32_t>((version_cmd->version >> 8) & 0xFF),
|
|
static_cast<uint32_t>((version_cmd->version >> 0) & 0xFF)
|
|
}},
|
|
sdk_{{
|
|
static_cast<uint32_t>((version_cmd->sdk >> 16) & 0xFFFF),
|
|
static_cast<uint32_t>((version_cmd->sdk >> 8) & 0xFF),
|
|
static_cast<uint32_t>((version_cmd->sdk >> 0) & 0xFF)
|
|
}}
|
|
{
|
|
}
|
|
|
|
VersionMin* VersionMin::clone(void) const {
|
|
return new VersionMin(*this);
|
|
}
|
|
|
|
|
|
const VersionMin::version_t& VersionMin::version(void) const {
|
|
return this->version_;
|
|
}
|
|
|
|
void VersionMin::version(const VersionMin::version_t& version) {
|
|
this->version_ = version;
|
|
}
|
|
|
|
const VersionMin::version_t& VersionMin::sdk(void) const {
|
|
return this->sdk_;
|
|
}
|
|
|
|
void VersionMin::sdk(const VersionMin::version_t& version) {
|
|
this->sdk_ = version;
|
|
}
|
|
|
|
void VersionMin::accept(Visitor& visitor) const {
|
|
visitor.visit(*this);
|
|
}
|
|
|
|
|
|
bool VersionMin::operator==(const VersionMin& rhs) const {
|
|
size_t hash_lhs = Hash::hash(*this);
|
|
size_t hash_rhs = Hash::hash(rhs);
|
|
return hash_lhs == hash_rhs;
|
|
}
|
|
|
|
bool VersionMin::operator!=(const VersionMin& rhs) const {
|
|
return not (*this == rhs);
|
|
}
|
|
|
|
|
|
std::ostream& VersionMin::print(std::ostream& os) const {
|
|
LoadCommand::print(os);
|
|
const VersionMin::version_t& version = this->version();
|
|
const VersionMin::version_t& sdk = this->sdk();
|
|
os << std::setw(10) << "Version: " << std::dec
|
|
<< version[0] << "."
|
|
<< version[1] << "."
|
|
<< version[2] << std::endl;
|
|
|
|
os << std::setw(10) << "SDK: " << std::dec
|
|
<< sdk[0] << "."
|
|
<< sdk[1] << "."
|
|
<< sdk[2] << std::endl;
|
|
|
|
return os;
|
|
}
|
|
|
|
|
|
}
|
|
}
|