Replace strings with raw strings in style

This commit is contained in:
Evgenii Zheltonozhskii 2018-10-22 11:48:36 +03:00 committed by Alex
parent ed2cceec57
commit 0c4399431a
1 changed files with 300 additions and 294 deletions

View File

@ -236,23 +236,21 @@ bool Generator::writeSource() {
if (module_.hasVariables()) { if (module_.hasVariables()) {
source_->pushNamespace().newline(); source_->pushNamespace().newline();
source_->stream() << "\ source_->stream() << R"code(
bool inited = false;\n\ bool inited = false;
\n\
class Module_" << baseName_ class Module_)code" << baseName_<< R"code( : public style::internal::ModuleBase {
<< " : public style::internal::ModuleBase {\n\ public:
public:\n\ Module_)code" << baseName_ << R"code(() { style::internal::registerModule(this); }
Module_" << baseName_ << "() { style::internal::registerModule(this); }\n\ ~Module_)code" << baseName_ << R"code(() { style::internal::unregisterModule(this); }
~Module_" << baseName_ << "() { style::internal::unregisterModule(this); }\n\
\n\ void start() override {
void start() override {\n\ style::internal::init_)code" << baseName_ << R"code(();
style::internal::init_" }
<< baseName_ << "();\n\ void stop() override {
}\n\ }
void stop() override {\n\ };
}\n\ Module_)code" << baseName_ << " registrator;\n";
};\n\
Module_" << baseName_ << " registrator;\n";
if (isPalette_) { if (isPalette_) {
source_->newline(); source_->newline();
source_->stream() << "style::palette _palette;\n"; source_->stream() << "style::palette _palette;\n";
@ -325,7 +323,7 @@ QString Generator::typeToDefaultValue(structure::Type type) const {
return "{ " + fields.join(", ") + " }"; return "{ " + fields.join(", ") + " }";
} }
return QString(); return QString();
} break; }
} }
return QString(); return QString();
} }
@ -407,7 +405,7 @@ QString Generator::valueAssignmentCode(structure::Value value) const {
fields.push_back(valueAssignmentCode(field.variable.value)); fields.push_back(valueAssignmentCode(field.variable.value));
} }
return "{ " + fields.join(", ") + " }"; return "{ " + fields.join(", ") + " }";
} break; }
} }
return QString(); return QString();
} }
@ -445,35 +443,36 @@ bool Generator::writeHeaderStyleNamespace() {
} }
bool Generator::writePaletteDefinition() { bool Generator::writePaletteDefinition() {
header_->stream() << "\ header_->stream() << R"code(
class palette {\n\ class palette {
public:\n\ public:
palette() = default;\n\ palette() = default;
palette(const palette &other) = delete;\n\ palette(const palette &other) = delete;
\n\
QByteArray save() const;\n\ QByteArray save() const;
bool load(const QByteArray &cache);\n\ bool load(const QByteArray &cache);
\n\
enum class SetResult {\n\ enum class SetResult {
Ok,\n\ Ok,
KeyNotFound,\n\ KeyNotFound,
ValueNotFound,\n\ ValueNotFound,
Duplicate,\n\ Duplicate,
};\n\ };
SetResult setColor(QLatin1String name, uchar r, uchar g, uchar b, uchar a);\n\ SetResult setColor(QLatin1String name, uchar r, uchar g, uchar b, uchar a);
SetResult setColor(QLatin1String name, QLatin1String from);\n\ SetResult setColor(QLatin1String name, QLatin1String from);
void reset() {\n\ void reset() {
clear();\n\ clear();
finalize();\n\ finalize();
}\n\ }
\n\
// Created not inited, should be finalized before usage.\n\ // Created not inited, should be finalized before usage.
void finalize();\n\ void finalize();
\n\
int indexOfColor(color c) const;\n\ int indexOfColor(color c) const;
color colorAtIndex(int index) const;\n\ color colorAtIndex(int index) const;
\n\
inline const color &get_transparent() const { return _colors[0]; }; // special color\n"; inline const color &get_transparent() const { return _colors[0]; }; // special color
)code";
int indexInPalette = 1; int indexInPalette = 1;
if (!module_.enumVariables([this, &indexInPalette](const Variable &variable) -> bool { if (!module_.enumVariables([this, &indexInPalette](const Variable &variable) -> bool {
@ -483,124 +482,124 @@ public:\n\
} }
auto index = (indexInPalette++); auto index = (indexInPalette++);
header_->stream() << "\tinline const color &get_" << name << "() const { return _colors[" << index header_->stream() << "\tinline const color &get_" << name << "() const { return _colors[" << index << "]; };\n";
<< "]; };\n";
return true; return true;
})) }))
return false; return false;
auto count = indexInPalette; auto count = indexInPalette;
header_->stream() << "\ header_->stream() << R"code(
\n\
palette &operator=(const palette &other) {\n\ palette &operator=(const palette &other) {
auto wasReady = _ready;\n\ auto wasReady = _ready;
for (int i = 0; i != kCount; ++i) {\n\ for (int i = 0; i != kCount; ++i) {
if (other._status[i] == Status::Loaded) {\n\ if (other._status[i] == Status::Loaded) {
if (_status[i] == Status::Initial) {\n\ if (_status[i] == Status::Initial) {
new (data(i)) internal::ColorData(*other.data(i));\n\ new (data(i)) internal::ColorData(*other.data(i));
} else {\n\ } else {
*data(i) = *other.data(i);\n\ *data(i) = *other.data(i);
}\n\ }
} else if (_status[i] != Status::Initial) {\n\ } else if (_status[i] != Status::Initial) {
data(i)->~ColorData();\n\ data(i)->~ColorData();
_status[i] = Status::Initial;\n\ _status[i] = Status::Initial;
_ready = false;\n\ _ready = false;
}\n\ }
}\n\ }
if (wasReady && !_ready) {\n\ if (wasReady && !_ready) {
finalize();\n\ finalize();
}\n\ }
return *this;\n\ return *this;
}\n\ }
\n\
static qint32 Checksum();\n\ static qint32 Checksum();
\n\
~palette() {\n\ ~palette() {
clear();\n\ clear();
}\n\ }
\n\
private:\n\ private:
static constexpr auto kCount = " static constexpr auto kCount = )code"
<< count << ";\n\ << count << R"code(;
\n\
void clear() {\n\ void clear() {
for (int i = 0; i != kCount; ++i) {\n\ for (int i = 0; i != kCount; ++i) {
if (_status[i] != Status::Initial) {\n\ if (_status[i] != Status::Initial) {
data(i)->~ColorData();\n\ data(i)->~ColorData();
_status[i] = Status::Initial;\n\ _status[i] = Status::Initial;
_ready = false;\n\ _ready = false;
}\n\ }
}\n\ }
}\n\ }
\n\
struct TempColorData { uchar r, g, b, a; };\n\ struct TempColorData { uchar r, g, b, a; };
void compute(int index, int fallbackIndex, TempColorData value) {\n\ void compute(int index, int fallbackIndex, TempColorData value) {
if (_status[index] == Status::Initial) {\n\ if (_status[index] == Status::Initial) {
if (fallbackIndex >= 0 && _status[fallbackIndex] == Status::Loaded) {\n\ if (fallbackIndex >= 0 && _status[fallbackIndex] == Status::Loaded) {
_status[index] = Status::Loaded;\n\ _status[index] = Status::Loaded;
new (data(index)) internal::ColorData(*data(fallbackIndex));\n\ new (data(index)) internal::ColorData(*data(fallbackIndex));
} else {\n\ } else {
_status[index] = Status::Created;\n\ _status[index] = Status::Created;
new (data(index)) internal::ColorData(value.r, value.g, value.b, value.a);\n\ new (data(index)) internal::ColorData(value.r, value.g, value.b, value.a);
}\n\ }
}\n\ }
}\n\ }
\n\
internal::ColorData *data(int index) {\n\ internal::ColorData *data(int index) {
return reinterpret_cast<internal::ColorData*>(_data) + index;\n\ return reinterpret_cast<internal::ColorData*>(_data) + index;
}\n\ }
\n\
const internal::ColorData *data(int index) const {\n\ const internal::ColorData *data(int index) const {
return reinterpret_cast<const internal::ColorData*>(_data) + index;\n\ return reinterpret_cast<const internal::ColorData*>(_data) + index;
}\n\ }
\n\
void setData(int index, const internal::ColorData &value) {\n\ void setData(int index, const internal::ColorData &value) {
if (_status[index] == Status::Initial) {\n\ if (_status[index] == Status::Initial) {
new (data(index)) internal::ColorData(value);\n\ new (data(index)) internal::ColorData(value);
} else {\n\ } else {
*data(index) = value;\n\ *data(index) = value;
}\n\ }
_status[index] = Status::Loaded;\n\ _status[index] = Status::Loaded;
}\n\ }
\n\
enum class Status {\n\ enum class Status {
Initial,\n\ Initial,
Created,\n\ Created,
Loaded,\n\ Loaded,
};\n\ };
\n\
alignas(alignof(internal::ColorData)) char _data[sizeof(internal::ColorData) * kCount];\n\ alignas(alignof(internal::ColorData)) char _data[sizeof(internal::ColorData) * kCount];
\n\
color _colors[kCount] = {\n"; color _colors[kCount] = {
)code";
for (int i = 0; i != count; ++i) { for (int i = 0; i != count; ++i) {
header_->stream() << "\t\tdata(" << i << "),\n"; header_->stream() << "\t\tdata(" << i << "),\n";
} }
header_->stream() << "\ header_->stream() << R"code(
};\n\ };
Status _status[kCount] = { Status::Initial };\n\ Status _status[kCount] = { Status::Initial };
bool _ready = false;\n\ bool _ready = false;
\n\
};\n\ };
\n\
namespace main_palette {\n\ namespace main_palette {
\n\
QByteArray save();\n\ QByteArray save();
bool load(const QByteArray &cache);\n\ bool load(const QByteArray &cache);
palette::SetResult setColor(QLatin1String name, uchar r, uchar g, uchar b, uchar a);\n\ palette::SetResult setColor(QLatin1String name, uchar r, uchar g, uchar b, uchar a);
palette::SetResult setColor(QLatin1String name, QLatin1String from);\n\ palette::SetResult setColor(QLatin1String name, QLatin1String from);
void apply(const palette &other);\n\ void apply(const palette &other);
void reset();\n\ void reset();
int indexOfColor(color c);\n\ int indexOfColor(color c);
\n\
struct row {\n\ struct row {
\tQLatin1String name;\n\ QLatin1String name;
\tQLatin1String value;\n\ QLatin1String value;
\tQLatin1String fallback;\n\ QLatin1String fallback;
\tQLatin1String description;\n\ QLatin1String description;
};\n\ };
QList<row> data();\n\ QList<row> data();
\n\
} // namespace main_palette\n"; } // namespace main_palette)code";
return true; return true;
} }
@ -749,26 +748,27 @@ bool Generator::writeRefsDefinition() {
bool Generator::writeSetPaletteColor() { bool Generator::writeSetPaletteColor() {
source_->newline(); source_->newline();
source_->stream() << "\n\ source_->stream() << R"code(
int palette::indexOfColor(style::color c) const {\n\ int palette::indexOfColor(style::color c) const {
auto start = data(0);\n\ auto start = data(0);
if (c._data >= start && c._data < start + kCount) {\n\ if (c._data >= start && c._data < start + kCount) {
return static_cast<int>(c._data - start);\n\ return static_cast<int>(c._data - start);
}\n\ }
return -1;\n\ return -1;
}\n\ }
\n\
color palette::colorAtIndex(int index) const {\n\ color palette::colorAtIndex(int index) const {
Assert(_ready);\n\ Assert(_ready);
Assert(index >= 0 && index < kCount);\n\ Assert(index >= 0 && index < kCount);
return _colors[index];\n\ return _colors[index];
}\n\ }
\n\
void palette::finalize() {\n\ void palette::finalize() {
if (_ready) return;\n\ if (_ready) return;
_ready = true;\n\ _ready = true;
\n\
compute(0, -1, { 255, 255, 255, 0}); // special color\n"; compute(0, -1, { 255, 255, 255, 0}); // special color
)code";
QList<structure::FullName> names; QList<structure::FullName> names;
module_.enumVariables([&names](const Variable &variable) -> bool { module_.enumVariables([&names](const Variable &variable) -> bool {
@ -821,19 +821,20 @@ void palette::finalize() {\n\
auto count = indexInPalette; auto count = indexInPalette;
auto checksum = hashCrc32(checksumString.constData(), checksumString.size()); auto checksum = hashCrc32(checksumString.constData(), checksumString.size());
source_->stream() << "\ source_->stream() << R"code(
}\n\ }
\n\
qint32 palette::Checksum() {\n\ qint32 palette::Checksum() {
return " << checksum return )code" << checksum
<< ";\n\ << ";\n\
}\n"; }\n";
source_->newline().pushNamespace().newline(); source_->newline().pushNamespace().newline();
source_->stream() << "\ source_->stream() << R"code(
int getPaletteIndex(QLatin1String name) {\n\ int getPaletteIndex(QLatin1String name) {
auto size = name.size();\n\ auto size = name.size();
auto data = name.data();\n"; auto data = name.data();
)code";
auto tabs = [](int size) { return QString(size, '\t'); }; auto tabs = [](int size) { return QString(size, '\t'); };
@ -967,108 +968,111 @@ int getPaletteIndex(QLatin1String name) {\n\
} }
finishChecksTillKey(QString()); finishChecksTillKey(QString());
source_->stream() << "\ source_->stream() << R"code(
\n\
return -1;\n\ return -1;
}\n"; }
)code";
source_->newline().popNamespace().newline(); source_->newline().popNamespace().newline();
source_->stream() << "\ source_->stream() << R"code(
QByteArray palette::save() const {\n\ QByteArray palette::save() const {
if (!_ready) const_cast<palette*>(this)->finalize();\n\ if (!_ready) const_cast<palette*>(this)->finalize();
\n\
auto result = QByteArray(" auto result = QByteArray("
<< (count * 4) << ", Qt::Uninitialized);\n\ << (count * 4) << ", Qt::Uninitialized);
for (auto i = 0, index = 0; i != " for (auto i = 0, index = 0; i != )code"
<< count << "; ++i) {\n\ << count << R"code("; ++i) {
result[index++] = static_cast<uchar>(data(i)->c.red());\n\ result[index++] = static_cast<uchar>(data(i)->c.red());
result[index++] = static_cast<uchar>(data(i)->c.green());\n\ result[index++] = static_cast<uchar>(data(i)->c.green());
result[index++] = static_cast<uchar>(data(i)->c.blue());\n\ result[index++] = static_cast<uchar>(data(i)->c.blue());
result[index++] = static_cast<uchar>(data(i)->c.alpha());\n\ result[index++] = static_cast<uchar>(data(i)->c.alpha());
}\n\ }
return result;\n\ return result;
}\n\ }
\n\
bool palette::load(const QByteArray &cache) {\n\ bool palette::load(const QByteArray &cache) {
if (cache.size() != " if (cache.size() != )code"
<< (count * 4) << ") return false;\n\ << (count * 4) << R"code() return false;
\n\
auto p = reinterpret_cast<const uchar*>(cache.constData());\n\ auto p = reinterpret_cast<const uchar*>(cache.constData());
for (auto i = 0; i != " for (auto i = 0; i != )code"
<< count << "; ++i) {\n\ << count << R"code(; ++i) {
setData(i, { p[i * 4 + 0], p[i * 4 + 1], p[i * 4 + 2], p[i * 4 + 3] });\n\ setData(i, { p[i * 4 + 0], p[i * 4 + 1], p[i * 4 + 2], p[i * 4 + 3] });
}\n\ }
return true;\n\ return true;
}\n\ }
\n\
palette::SetResult palette::setColor(QLatin1String name, uchar r, uchar g, uchar b, uchar a) {\n\ palette::SetResult palette::setColor(QLatin1String name, uchar r, uchar g, uchar b, uchar a) {
auto nameIndex = getPaletteIndex(name);\n\ auto nameIndex = getPaletteIndex(name);
if (nameIndex < 0) return SetResult::KeyNotFound;\n\ if (nameIndex < 0) return SetResult::KeyNotFound;
auto duplicate = (_status[nameIndex] != Status::Initial);\n\ auto duplicate = (_status[nameIndex] != Status::Initial);
\n\
setData(nameIndex, { r, g, b, a });\n\ setData(nameIndex, { r, g, b, a });
return duplicate ? SetResult::Duplicate : SetResult::Ok;\n\ return duplicate ? SetResult::Duplicate : SetResult::Ok;
}\n\ }
\n\
palette::SetResult palette::setColor(QLatin1String name, QLatin1String from) {\n\ palette::SetResult palette::setColor(QLatin1String name, QLatin1String from) {
auto nameIndex = getPaletteIndex(name);\n\ auto nameIndex = getPaletteIndex(name);
if (nameIndex < 0) return SetResult::KeyNotFound;\n\ if (nameIndex < 0) return SetResult::KeyNotFound;
auto duplicate = (_status[nameIndex] != Status::Initial);\n\ auto duplicate = (_status[nameIndex] != Status::Initial);
\n\
auto fromIndex = getPaletteIndex(from);\n\ auto fromIndex = getPaletteIndex(from);
if (fromIndex < 0 || _status[fromIndex] != Status::Loaded) return SetResult::ValueNotFound;\n\ if (fromIndex < 0 || _status[fromIndex] != Status::Loaded) return SetResult::ValueNotFound;
\n\
setData(nameIndex, *data(fromIndex));\n\ setData(nameIndex, *data(fromIndex));
return duplicate ? SetResult::Duplicate : SetResult::Ok;\n\ return duplicate ? SetResult::Duplicate : SetResult::Ok;
}\n\ }
\n\
namespace main_palette {\n\ namespace main_palette {
\n\
QByteArray save() {\n\ QByteArray save() {
return _palette.save();\n\ return _palette.save();
}\n\ }
\n\
bool load(const QByteArray &cache) {\n\ bool load(const QByteArray &cache) {
if (_palette.load(cache)) {\n\ if (_palette.load(cache)) {
style::internal::resetIcons();\n\ style::internal::resetIcons();
return true;\n\ return true;
}\n\ }
return false;\n\ return false;
}\n\ }
\n\
palette::SetResult setColor(QLatin1String name, uchar r, uchar g, uchar b, uchar a) {\n\ palette::SetResult setColor(QLatin1String name, uchar r, uchar g, uchar b, uchar a) {
return _palette.setColor(name, r, g, b, a);\n\ return _palette.setColor(name, r, g, b, a);
}\n\ }
\n\
palette::SetResult setColor(QLatin1String name, QLatin1String from) {\n\ palette::SetResult setColor(QLatin1String name, QLatin1String from) {
return _palette.setColor(name, from);\n\ return _palette.setColor(name, from);
}\n\ }
\n\
void apply(const palette &other) {\n\ void apply(const palette &other) {
_palette = other;\n\ _palette = other;
style::internal::resetIcons();\n\ style::internal::resetIcons();
}\n\ }
\n\
void reset() {\n\ void reset() {
_palette.reset();\n\ _palette.reset();
style::internal::resetIcons();\n\ style::internal::resetIcons();
}\n\ }
\n\
int indexOfColor(color c) {\n\ int indexOfColor(color c) {
return _palette.indexOfColor(c);\n\ return _palette.indexOfColor(c);
}\n\ }
\n\
QList<row> data() {\n\ QList<row> data() {
auto result = QList<row>();\n\ auto result = QList<row>();
result.reserve(" << count result.reserve()code" << count
<< ");\n\ << R"code();
\n\
" << dataRows << "\n\ )code" << dataRows << R"code(
return result;\n\
}\n\ return result;
\n\ }
} // namespace main_palette\n\
\n"; } // namespace main_palette
)code";
return result; return result;
} }
@ -1098,9 +1102,11 @@ bool Generator::writeVariableInit() {
source_->stream() << "\ source_->stream() << "\
void init_" << baseName_ void init_" << baseName_
<< "() {\n\ << R"code(() {
if (inited) return;\n\ if (inited) return;
inited = true;\n\n"; inited = true;
)code";
if (module_.hasIncludes()) { if (module_.hasIncludes()) {
bool writtenAtLeastOne = false; bool writtenAtLeastOne = false;
@ -1155,11 +1161,11 @@ bool Generator::writePxValuesInit() {
for (auto i = pxValues_.cbegin(), e = pxValues_.cend(); i != e; ++i) { for (auto i = pxValues_.cbegin(), e = pxValues_.cend(); i != e; ++i) {
source_->stream() << "int " << pxValueName(i.key()) << " = " << i.key() << ";\n"; source_->stream() << "int " << pxValueName(i.key()) << " = " << i.key() << ";\n";
} }
source_->stream() << "\ source_->stream() << R"code(
void initPxValues() {\n\ void initPxValues() {
if (cRetina()) return;\n\ if (cRetina()) return;
\n\
switch (cScale()) {\n"; switch (cScale()) {)code";
for (int i = 1, scalesCount = _scales.size(); i < scalesCount; ++i) { for (int i = 1, scalesCount = _scales.size(); i < scalesCount; ++i) {
source_->stream() << "\tcase " << _scaleNames.at(i) << ":\n"; source_->stream() << "\tcase " << _scaleNames.at(i) << ":\n";
for (auto it = pxValues_.cbegin(), e = pxValues_.cend(); it != e; ++it) { for (auto it = pxValues_.cbegin(), e = pxValues_.cend(); it != e; ++it) {