You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
74 lines
2.4 KiB
C++
74 lines
2.4 KiB
C++
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "helper_functions.hpp"
|
|
|
|
#include <cmath>
|
|
#include <codecvt>
|
|
#include <cstring>
|
|
#include <locale>
|
|
#include <numeric>
|
|
#include "enforce.hpp"
|
|
|
|
std::string string_from_unterminated(const char* data, size_t data_length) {
|
|
if (data_length == 0) {
|
|
return {};
|
|
}
|
|
const size_t StringLength = strnlen(data, data_length);
|
|
return {data, StringLength};
|
|
}
|
|
|
|
namespace Exiv2 {
|
|
|
|
std::string utf16ToUtf8(const std::wstring& wstr) {
|
|
using convert_typeX = std::codecvt_utf8<wchar_t>;
|
|
std::wstring_convert<convert_typeX, wchar_t> converterX;
|
|
|
|
std::string str = converterX.to_bytes(wstr);
|
|
str.erase(std::remove(str.begin(), str.end(), '\0'), str.end());
|
|
return str;
|
|
}
|
|
|
|
uint64_t readQWORDTag(BasicIo::UniquePtr& io) {
|
|
Internal::enforce(QWORD <= io->size() - io->tell(), Exiv2::ErrorCode::kerCorruptedMetadata);
|
|
DataBuf FieldBuf = io->read(QWORD);
|
|
return FieldBuf.read_uint64(0, littleEndian);
|
|
}
|
|
|
|
uint32_t readDWORDTag(BasicIo::UniquePtr& io) {
|
|
Internal::enforce(DWORD <= io->size() - io->tell(), Exiv2::ErrorCode::kerCorruptedMetadata);
|
|
DataBuf FieldBuf = io->read(DWORD);
|
|
return FieldBuf.read_uint32(0, littleEndian);
|
|
}
|
|
|
|
uint16_t readWORDTag(BasicIo::UniquePtr& io) {
|
|
Internal::enforce(WORD <= io->size() - io->tell(), Exiv2::ErrorCode::kerCorruptedMetadata);
|
|
DataBuf FieldBuf = io->read(WORD);
|
|
return FieldBuf.read_uint16(0, littleEndian);
|
|
}
|
|
|
|
std::string readStringWcharTag(BasicIo::UniquePtr& io, size_t length) {
|
|
Internal::enforce(length <= io->size() - io->tell(), Exiv2::ErrorCode::kerCorruptedMetadata);
|
|
DataBuf FieldBuf(length + 1);
|
|
io->readOrThrow(FieldBuf.data(), length, ErrorCode::kerFailedToReadImageData);
|
|
std::wstring wst(FieldBuf.begin(), FieldBuf.end());
|
|
return utf16ToUtf8(wst);
|
|
}
|
|
|
|
std::string readStringTag(BasicIo::UniquePtr& io, size_t length) {
|
|
Internal::enforce(length <= io->size() - io->tell(), Exiv2::ErrorCode::kerCorruptedMetadata);
|
|
DataBuf FieldBuf(length + 1);
|
|
io->readOrThrow(FieldBuf.data(), length, ErrorCode::kerFailedToReadImageData);
|
|
return Exiv2::toString(FieldBuf.data()).substr(0, length);
|
|
}
|
|
|
|
std::string getAspectRatio(uint64_t width, uint64_t height) {
|
|
if (height == 0 || width == 0)
|
|
return std::to_string(width) + ":" + std::to_string(height);
|
|
|
|
auto ratioWidth = width / std::gcd(width, height);
|
|
auto ratioHeight = height / std::gcd(width, height);
|
|
return std::to_string(ratioWidth) + ":" + std::to_string(ratioHeight);
|
|
}
|
|
|
|
} // namespace Exiv2
|