alecAbstraction Layer for Escape Codes |
git clone git://git.dimitrijedobrota.com/alec.git |
Log | Files | Refs | README | LICENSE | HACKING | CONTRIBUTING | CODE_OF_CONDUCT | BUILDING | |
commit | c6de5e6d290403b48befa9592d060503e4c0125d |
parent | 398a154e3ad307db53420ee5a2e511721a41fe86 |
author | Dimitrije Dobrota <mail@dimitrijedobrota.com> |
date | Wed, 26 Feb 2025 18:33:33 +0100 |
Use the latest version of Cemplate
Diffstat:M | CMakeLists.txt | | | +++-- |
M | source/generator.cpp | | | +++++++++++++++++++++++++++++---------------------------- |
2 files changed, 32 insertions(+), 30 deletions(-)
diff --git a/CMakeLists.txt b/CMakeLists.txt
@@ -4,7 +4,7 @@ include(cmake/prelude.cmake)
project(
alec
VERSION 0.1.16
VERSION 0.1.17
DESCRIPTION "Abstraction Layer for Escape Codes"
HOMEPAGE_URL "git://git.dimitrijedobrota.com/alec.git"
LANGUAGES CXX
@@ -13,7 +13,8 @@ project(
include(cmake/project-is-top-level.cmake)
include(cmake/variables.cmake)
find_package(cemplate 0.1.7 CONFIG REQUIRED)
find_package(cemplate 0.2.0 CONFIG REQUIRED)
# ---- Build library ----
set(PARSER_DIR "${CMAKE_CURRENT_BINARY_DIR}/source")
diff --git a/source/generator.cpp b/source/generator.cpp
@@ -2,6 +2,7 @@
#include <fstream>
#include <iostream>
#include <set>
#include <span>
#include <string>
#include <vector>
@@ -63,34 +64,33 @@ void generate_variables()
}
if (!record.args.empty()) {
std::cout << tmplate(record.args);
std::cout << Template(record.args);
}
if (!record.rules.empty()) {
std::cout << rquires(accumulate(
params,
" && ",
[&](const auto& param)
{
return accumulate(record.rules,
" && ",
[&](const auto& rule)
{ return tmplate_spec(rule + "_v", param); });
}));
std::cout << Requires(
join(params,
" && ",
[&](const auto& param)
{
return join(record.rules,
" && ",
[&](const auto& rule)
{ return TemplateD(rule + "_v", param); });
}));
}
std::cout << "static constexpr auto " << record.name + "_v";
if (dupes.contains(record.name)) {
std::cout << tmplate_spec("", accumulate(params, ", "));
std::cout << TemplateD("", params);
}
std::cout << " = ";
if (!record.recipe.empty() && record.recipe[0][0] == '"') {
std::cout << tmplate_spec("details::escape_literal", record.recipe[0]);
std::cout << TemplateD("details::escape_literal", record.recipe[0]);
} else {
std::cout << tmplate_spec("details::escape",
accumulate(record.recipe, ", "));
std::cout << TemplateD("details::escape", record.recipe);
}
std::cout << ";\n\n";
}
@@ -113,37 +113,38 @@ void generate_functions()
params.emplace_back(arg.substr(arg.find(' ') + 1));
}
std::cout << func(record.name, "static constexpr auto", record.args);
std::cout << Function(record.name, "static constexpr auto", record.args);
if (!record.rules.empty()) {
for (const auto& param : params) {
std::cout << call_s("assert",
accumulate(record.rules,
" && ",
[&](const std::string& rule)
{ return call(rule, param); }));
std::cout << Statement(Call(
"assert",
join(record.rules,
" && ",
[&](const std::string& rule) { return Call(rule, param); })));
}
}
if (record.args.empty()) {
std::cout << ret(record.name + "_v");
std::cout << Return(record.name + "_v");
} else {
std::cout << ret(
call("details::helper::make", accumulate(record.recipe, ", ")));
std::cout << Return(Call("details::helper::make", record.recipe));
}
std::cout << func(record.name);
std::cout << Function(record.name);
}
}
} // namespace
int main(const int argc, char* argv[])
int main(int argc, char* argv[])
{
const bool debug = argc > 1 && std::strcmp(argv[1], "--debug") == 0;
const std::span args(argv, static_cast<std::size_t>(argc));
const bool debug = argc > 1 && std::strcmp(args[1], "--debug") == 0;
std::ifstream ifile;
if (argc != 1) {
ifile.open(argv[!debug ? 1 : 2]);
ifile.open(args[!debug ? 1 : 2]);
}
using namespace alec; // NOLINT