osb/source/core/StarDirectives.cpp

413 lines
9.4 KiB
C++
Raw Permalink Normal View History

#include "StarDirectives.hpp"
2023-06-23 15:30:55 +00:00
#include "StarImage.hpp"
#include "StarImageProcessing.hpp"
2023-06-24 03:06:13 +00:00
#include "StarXXHash.hpp"
2023-06-24 13:38:27 +00:00
#include "StarLogging.hpp"
2023-06-23 15:30:55 +00:00
namespace Star {
Directives::Entry::Entry(ImageOperation&& newOperation, size_t strBegin, size_t strLength) {
operation = std::move(newOperation);
begin = strBegin;
length = strLength;
2023-06-24 10:10:53 +00:00
}
Directives::Entry::Entry(ImageOperation const& newOperation, size_t strBegin, size_t strLength) {
2023-06-24 12:49:47 +00:00
operation = newOperation;
begin = strBegin;
length = strLength;
2023-06-24 12:49:47 +00:00
}
Directives::Entry::Entry(Entry const& other) {
operation = other.operation;
begin = other.begin;
length = other.length;
2023-06-24 12:49:47 +00:00
}
ImageOperation const& Directives::Entry::loadOperation(Shared const& parent) const {
if (operation.is<NullImageOperation>()) {
try
{ operation = imageOperationFromString(string(parent)); }
catch (StarException const& e)
{ operation = ErrorImageOperation{std::exception_ptr()}; }
}
return operation;
}
StringView Directives::Entry::string(Shared const& parent) const {
2023-06-25 15:51:57 +00:00
StringView result = parent.string;
result = result.utf8().substr(begin, length);
return result;
2023-06-23 15:30:55 +00:00
}
bool Directives::Shared::empty() const {
return entries.empty();
2023-06-23 15:30:55 +00:00
}
Directives::Shared::Shared() {}
Directives::Shared::Shared(List<Entry>&& givenEntries, String&& givenString) {
entries = std::move(givenEntries);
string = std::move(givenString);
hash = string.empty() ? 0 : XXH3_64bits(string.utf8Ptr(), string.utf8Size());
2023-06-24 12:49:47 +00:00
}
Directives::Directives() {}
2024-01-03 08:17:19 +00:00
Directives::Directives(String const& directives) {
parse(String(directives));
}
Directives::Directives(String&& directives) {
parse(std::move(directives));
2023-06-24 12:49:47 +00:00
}
Directives::Directives(const char* directives) {
parse(directives);
}
Directives::Directives(Directives&& directives) noexcept {
*this = std::move(directives);
2024-01-03 08:17:19 +00:00
}
Directives::Directives(Directives const& directives) {
*this = directives;
}
Directives::~Directives() {}
Directives& Directives::operator=(String const& s) {
if (m_shared && m_shared->string == s)
return *this;
2024-01-03 08:17:19 +00:00
parse(String(s));
return *this;
}
2024-01-03 08:17:19 +00:00
Directives& Directives::operator=(String&& s) {
if (m_shared && m_shared->string == s) {
2024-01-03 08:17:19 +00:00
s.clear();
return *this;
}
parse(std::move(s));
return *this;
}
2024-01-03 08:17:19 +00:00
Directives& Directives::operator=(const char* s) {
if (m_shared && m_shared->string.utf8().compare(s) == 0)
return *this;
2024-01-03 08:17:19 +00:00
parse(s);
return *this;
}
Directives& Directives::operator=(Directives&& other) noexcept {
m_shared = std::move(other.m_shared);
2024-01-03 08:17:19 +00:00
return *this;
}
Directives& Directives::operator=(Directives const& other) {
m_shared = other.m_shared;
return *this;
}
void Directives::loadOperations() const {
if (!m_shared)
return;
MutexLocker locker(m_shared->mutex, false);
if (!m_shared.unique())
locker.lock();
for (auto& entry : m_shared->entries)
entry.loadOperation(*m_shared);
}
void Directives::parse(String&& directives) {
2023-09-05 06:42:44 +00:00
if (directives.empty()) {
m_shared.reset();
2023-06-24 13:38:27 +00:00
return;
2023-09-05 06:42:44 +00:00
}
2023-06-24 13:38:27 +00:00
List<Entry> entries;
2023-06-26 05:34:41 +00:00
StringView view(directives);
view.forEachSplitView("?", [&](StringView split, size_t beg, size_t end) {
if (!split.empty()) {
ImageOperation operation = NullImageOperation();
if (beg == 0) {
try
{ operation = imageOperationFromString(split); }
catch (StarException const& e)
{ operation = ErrorImageOperation{std::exception_ptr()}; }
2023-06-24 15:16:40 +00:00
}
entries.emplace_back(std::move(operation), beg, end);
2023-06-24 09:41:52 +00:00
}
});
2023-06-24 13:38:27 +00:00
if (entries.empty()) {
m_shared.reset();
2023-06-24 13:38:27 +00:00
return;
2023-09-05 06:42:44 +00:00
}
2023-06-24 13:38:27 +00:00
m_shared = std::make_shared<Shared const>(std::move(entries), std::move(directives));
if (view.utf8().size() < 1000) { // Pre-load short enough directives
for (auto& entry : m_shared->entries)
entry.loadOperation(*m_shared);
}
}
String Directives::string() const {
if (!m_shared)
return "";
else
return m_shared->string;
}
String const* Directives::stringPtr() const {
if (!m_shared)
return nullptr;
else
return &m_shared->string;
2023-06-24 03:06:13 +00:00
}
String Directives::buildString() const {
if (m_shared) {
String built;
for (auto& entry : m_shared->entries) {
if (entry.begin > 0)
built += "?";
built += entry.string(*m_shared);
2023-06-24 13:38:27 +00:00
}
2023-06-26 05:34:41 +00:00
return built;
2023-06-24 09:41:52 +00:00
}
2023-06-24 15:16:40 +00:00
2023-06-26 05:34:41 +00:00
return String();
}
String& Directives::addToString(String& out) const {
if (!empty())
out += m_shared->string;
2023-06-24 15:16:40 +00:00
return out;
2023-06-23 15:30:55 +00:00
}
size_t Directives::hash() const {
return m_shared ? m_shared->hash : 0;
}
size_t Directives::size() const {
return m_shared ? m_shared->entries.size() : 0;
2023-06-24 12:49:47 +00:00
}
bool Directives::empty() const {
return !m_shared || m_shared->empty();
2023-06-24 12:49:47 +00:00
}
Directives::operator bool() const {
return !empty();
}
2023-06-24 12:49:47 +00:00
bool Directives::equals(Directives const& other) const {
return hash() == other.hash();
}
bool Directives::equals(String const& string) const {
auto directiveString = stringPtr();
return directiveString ? string == *directiveString : string.empty();
}
bool Directives::operator==(Directives const& other) const {
return equals(other);
}
bool Directives::operator==(String const& string) const {
return equals(string);
}
2023-06-24 12:49:47 +00:00
DataStream& operator>>(DataStream& ds, Directives& directives) {
String string;
ds.read(string);
directives.parse(std::move(string));
2023-06-24 12:49:47 +00:00
return ds;
}
DataStream& operator<<(DataStream & ds, Directives const& directives) {
if (directives)
ds.write(directives->string);
else
ds.write(String());
2023-06-24 12:49:47 +00:00
return ds;
}
bool operator==(Directives const& d1, Directives const& d2) {
return d1.equals(d2);
}
bool operator==(String const& string, Directives const& directives) {
return directives.equals(string);
}
bool operator==(Directives const& directives, String const& string) {
return directives.equals(string);
}
2023-06-24 09:41:52 +00:00
DirectivesGroup::DirectivesGroup() : m_count(0) {}
2023-06-24 15:16:40 +00:00
DirectivesGroup::DirectivesGroup(String const& directives) : m_count(0) {
if (directives.empty())
return;
Directives parsed(directives);
if (parsed) {
m_directives.emplace_back(std::move(parsed));
m_count = m_directives.back().size();
2023-06-24 15:16:40 +00:00
}
2023-06-24 03:06:13 +00:00
}
2023-06-24 15:16:40 +00:00
DirectivesGroup::DirectivesGroup(String&& directives) : m_count(0) {
if (directives.empty()) {
directives.clear();
return;
}
Directives parsed(std::move(directives));
2023-06-24 15:16:40 +00:00
if (parsed) {
m_directives.emplace_back(std::move(parsed));
m_count = m_directives.back().size();
2023-06-24 15:16:40 +00:00
}
2023-06-23 15:30:55 +00:00
}
bool DirectivesGroup::empty() const {
2023-06-24 09:41:52 +00:00
return m_count == 0;
2023-06-23 15:30:55 +00:00
}
DirectivesGroup::operator bool() const {
2023-06-24 15:16:40 +00:00
return empty();
}
2023-06-25 08:24:54 +00:00
bool DirectivesGroup::compare(DirectivesGroup const& other) const {
2023-06-24 09:41:52 +00:00
if (m_count != other.m_count)
return false;
2023-06-23 15:30:55 +00:00
2023-06-24 09:41:52 +00:00
if (empty())
return true;
2023-06-23 15:30:55 +00:00
2023-06-24 09:41:52 +00:00
return hash() == other.hash();
2023-06-23 15:30:55 +00:00
}
2023-06-24 09:41:52 +00:00
void DirectivesGroup::append(Directives const& directives) {
2023-06-24 12:49:47 +00:00
m_directives.emplace_back(directives);
m_count += m_directives.back().size();
2023-06-24 12:49:47 +00:00
}
void DirectivesGroup::clear() {
m_directives.clear();
m_count = 0;
}
2023-06-24 09:41:52 +00:00
DirectivesGroup& DirectivesGroup::operator+=(Directives const& other) {
append(other);
return *this;
2023-06-24 03:06:13 +00:00
}
String DirectivesGroup::toString() const {
2023-06-24 09:41:52 +00:00
String string;
addToString(string);
return string;
2023-06-24 03:06:13 +00:00
}
2023-06-24 09:41:52 +00:00
void DirectivesGroup::addToString(String& string) const {
for (auto& entry : m_directives) {
if (entry && !entry->string.empty()) {
if (!string.empty() && string.utf8().back() != '?' && entry->string.utf8()[0] != '?')
string.append('?');
string += entry->string;
2023-11-25 12:03:46 +00:00
}
}
2023-06-24 03:06:13 +00:00
}
2023-06-24 09:41:52 +00:00
void DirectivesGroup::forEach(DirectivesCallback callback) const {
for (auto& directives : m_directives) {
if (directives) {
for (auto& entry : directives->entries)
callback(entry, directives);
2023-06-24 13:38:27 +00:00
}
2023-06-24 03:06:13 +00:00
}
2023-06-23 15:30:55 +00:00
}
2023-06-24 09:41:52 +00:00
bool DirectivesGroup::forEachAbortable(AbortableDirectivesCallback callback) const {
for (auto& directives : m_directives) {
if (directives) {
for (auto& entry : directives->entries) {
if (!callback(entry, directives))
2023-06-24 13:38:27 +00:00
return false;
}
2023-06-24 03:06:13 +00:00
}
}
2023-06-24 09:41:52 +00:00
return true;
2023-06-24 03:06:13 +00:00
}
Image DirectivesGroup::applyNewImage(Image const& image) const {
2023-06-24 09:41:52 +00:00
Image result = image;
applyExistingImage(result);
return result;
2023-06-24 03:06:13 +00:00
}
2023-06-24 09:41:52 +00:00
void DirectivesGroup::applyExistingImage(Image& image) const {
forEach([&](auto const& entry, Directives const& directives) {
ImageOperation const& operation = entry.loadOperation(*directives);
if (auto error = operation.ptr<ErrorImageOperation>())
if (auto string = error->cause.ptr<std::string>())
throw DirectivesException::format("ImageOperation parse error: {}", *string);
else
std::rethrow_exception(error->cause.get<std::exception_ptr>());
else
processImageOperation(operation, image);
2023-06-24 09:41:52 +00:00
});
2023-06-23 15:30:55 +00:00
}
size_t DirectivesGroup::hash() const {
2023-06-24 09:41:52 +00:00
XXHash3 hasher;
for (auto& directives : m_directives) {
size_t hash = directives.hash();
hasher.push((const char*)&hash, sizeof(hash));
}
2023-06-24 09:41:52 +00:00
return hasher.digest();
2023-06-23 15:30:55 +00:00
}
2023-06-25 08:12:54 +00:00
const List<Directives>& DirectivesGroup::list() const {
return m_directives;
}
2023-06-24 10:10:53 +00:00
bool operator==(DirectivesGroup const& a, DirectivesGroup const& b) {
return a.compare(b);
}
bool operator!=(DirectivesGroup const& a, DirectivesGroup const& b) {
return !a.compare(b);
}
2023-06-25 08:12:54 +00:00
DataStream& operator>>(DataStream& ds, DirectivesGroup& directivesGroup) {
String string;
ds.read(string);
directivesGroup = DirectivesGroup(std::move(string));
2023-06-25 08:12:54 +00:00
return ds;
}
DataStream& operator<<(DataStream& ds, DirectivesGroup const& directivesGroup) {
ds.write(directivesGroup.toString());
return ds;
}
2023-06-24 10:10:53 +00:00
size_t hash<DirectivesGroup>::operator()(DirectivesGroup const& s) const {
2023-06-24 09:41:52 +00:00
return s.hash();
2023-06-23 15:30:55 +00:00
}
}