Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kamchatka-volcano/hypertextcpp
An HTML template engine using C++ code generation
https://github.com/kamchatka-volcano/hypertextcpp
cpp17 html-template html-template-engine html-template-system
Last synced: about 1 month ago
JSON representation
An HTML template engine using C++ code generation
- Host: GitHub
- URL: https://github.com/kamchatka-volcano/hypertextcpp
- Owner: kamchatka-volcano
- License: ms-pl
- Created: 2021-06-29T19:27:13.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-10-06T20:00:48.000Z (3 months ago)
- Last Synced: 2024-10-30T02:03:27.800Z (about 2 months ago)
- Topics: cpp17, html-template, html-template-engine, html-template-system
- Language: C++
- Homepage:
- Size: 147 KB
- Stars: 32
- Watchers: 4
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
**hypertextcpp** is an HTML templating system for C++ applications.
It provides an [.htcpp](https://marketplace.visualstudio.com/items?itemName=kamchatka-volcano.htcpp) template file format and a command-line utility that transpiles it to C++ HTML rendering code. Include the generated C++ header file in your project, set up a build system to update it when necessary, and you're all set.A quick example:
[`examples/01/todolist.htcpp`](examples/01/todolist.htcpp)
```html
$(cfg.name)'s todo list:
No tasks found
?(cfg.tasks.empty())
- $(task.name) @(auto task : cfg.tasks)
```
Now let's generate the C++ header:
```console
kamchatka-volcano@home:~$ hypertextcpp todolist.htcpp
```
This command creates the `todolist.h` file in the current working directory. All that's left is to use it in our program.
[`examples/01/todolist_printer.cpp`](examples/01/todolist_printer.cpp)
```cpp
#include "todolist.h"
#include
#include
int main()
{
struct PageParams{
struct Task{
std::string name;
};
std::string name = "Bob";
std::vector tasks = {{"laundry"}, {"cooking"}};
} pageParams;
auto page = todolist{};
page.print(pageParams);
return 0;
}
```
Compile it with your preferred method, launch it, and you will get this output:
```console
kamchatka-volcano@home:~$ ./todolist_printer
Bob's todo list:
- laundry
- cooking
```
## Table of contents
* [Template file syntax](#template-file-syntax)
* [Expressions](#expressions)
* [Statements](#statements)
* [Global statements](#global-statements)
* [Control flow extensions](#control-flow-extensions)
* [Sections](#sections)
* [Procedures and partial rendering](#procedures-and-partial-rendering)
* [Code generation](#code-generation)
* [Command line parameters](#command-line-parameters)
* [Single header renderer](#single-header-renderer)
* [Shared library renderer](#shared-library-renderer)
* [Installation](#installation)
* [Running tests](#running-tests)
* [License](#license)
## Template file syntax
### Expressions
**$(**`c++ expression`**)**
Expressions are used to add the application's data to the template. It can be any valid C++ expression, with the only condition that its result must be streamable to the default output stream `std::ostream`. Expressions can be placed anywhere in the HTML template, except in tag names.
In our todolist example, `$(cfg.name)` is an expression that adds the template config variable `name` to the result page.
### Statements
**${**`c++ statement(s)`**}**
Statements are used to add any valid C++ code to the template rendering function. For example, you can add variables, class declarations, or lambdas. Let's say you don't like the default name `cfg` used for passing data to the template. You can create a reference to it with any name you like and use it later:
```html
${ auto& param = cfg;}
$(param.name)'s todo list:
```
Note, that `cfg` and `out` are reserved names used for parameters in the generated
rendering function. Also, don't put anything in the `htcpp` namespace.
### Global statements
**#{**`c++ statement(s)`**}**
These statements are used to add any valid C++ code outside the template rendering function. Unlike regular statements, with global ones you can add include directives or function definitions. Global statements can only be placed at the top level of the `htcpp` template, outside any HTML element. Please don't put anything in the `htcpp` namespace.
### Control flow extensions
If **hypertextcpp** used a common approach for control flow in HTML template engines, our todolist example would look something like this:
```html
%%cfg.name%%'s todo list:
%%if cfg.tasks.empty()%%
No tasks found
%%end%%
- $(task.name)
%%for auto task : cfg.tasks%%
%%end%%
```
In our opinion, it significantly hurts the readability of the document tree and makes it hard to choose indentation and keep it consistent — notice how different approaches are used for if and for blocks in the example.
**hypertextcpp** solves this problem by applying control flow to the HTML elements themselves without adding logic block scopes to the document. It uses just two extensions for tags to make this work:
* Conditional extension
**?(**`c++ condition`**)**
HTML elements with this extension are added to the document only when condition is fulfilled.
Example of usage from our todolist template:
```html
No tasks found
?(cfg.tasks.empty())```
* Loop extension
**@(**`c++ init-statement; condition; iteration_expression`**)**
or
**@(**`c++ range_declaration : range_expression`**)**
HTML elements with this extension are added to the document multiple times, on each step of the loop or for each element of the iterated range.
Example of usage from our todolist template:
```html
```
Let's add another example for another type of `for` loop:
```html
```
which evaluates to
```html
```
Both extensions can be added to the opening or closing tag, but each tag and HTML element can only have one extension.
It's recommended to add the extension to the opening tag for multiline HTML elements:
```html
Hello world!
```
and to the closing tag for the single-line ones:
```html
Hello world!
```
Note that while extensions hide control flow block scopes from the template document, they're still present in the generated C++ code and implemented with regular `if` and `for` control structures. Therefore, a template like this:
```html
${ auto num = i*2;}
Item #$(num)
Last num is $(num)
```
won't compile because the `num` variable isn't visible outside the `for` block scope generated by the loop extension on the `div` tag.
### Sections
**\[\[** `text, html elements, statements, expressions or other sections` **]]**
Sections can contain a part of the template document, and it's possible to attach control flow extensions to them. Their main usage is adding attributes to HTML elements conditionally.
Let's update the todolist example by adding a line-through text style to completed tasks:
[`examples/02/todolist.htcpp`](examples/02/todolist.htcpp)
```html
$(cfg.name)'s todo list:
No tasks found
?(cfg.tasks.empty())- $(task.name) @(auto task : cfg.tasks)
```
Don't forget to update the C++ template config structure!
[`examples/02/todolist_printer.cpp`](examples/02/todolist_printer.cpp)
```cpp
//...
struct PageParams{
struct Task{
std::string name;
bool isCompleted = false;
};
std::string name = "Bob";
std::vector tasks = {{"laundry", true}, {"cooking", false}};
} pageParams;
//...
```
Tip of the day: Keep your template tidy and don't introduce sections when it's possible to attach extensions to HTML elements.
### Procedures and partial rendering
**#**`procedureName`**(){**`html elements, statements, expressions or sections`**}**
Parts of the `htcpp` template can be placed inside procedures—parameterless functions capturing the `cfg` variable. They are available for call from the C++ application, so if any part of the page needs to be rendered separately from the whole template, procedures are a big help.
Procedures can only be placed at the top level of the `htcpp` template, outside any HTML element.
Let's put the list of tasks from the todolist example in the procedure:
[`examples/03/todolist.htcpp`](examples/03/todolist.htcpp)
```html
#taskList(){
}
$(cfg.name)'s todo list:
No tasks found
?(cfg.tasks.empty())$(taskList())
```
Now the tasks list can be output to stdout by itself like this:
[`examples/03/todolist_printer.cpp`](examples/03/todolist_printer.cpp)
```cpp
//...
auto page = todolist{};
page.print("taskList", pageParams);
//...
```
## Code generation
### Command line parameters
```console
kamchatka-volcano@home:~$ hypertextcpp --help
Usage: hypertextcpp [params] [flags]
Arguments:
(path) .htcpp file to transpile
Parameters:
-o, --output output c++ file path
(if empty, current working directory is used)
(optional, default: "")
-c, --class-name generated class name
(optional)
Flags:
-s, --shared-lib generate result as shared library source
files
--class-pascalcase generate class name by using .htcpp filename
in PascalCase
--class-snakecase generate class name by using .htcpp filename
in snake_case
--class-lowercase generate class name by using .htcpp filename
in lowercase
--help show usage info and exit
Process finished with exit code 0
```
### Single header renderer
By default, the **hypertextcpp** transpiler works in a single header mode and generates a C++ header file that you're supposed to simply include in your project. A generated renderer class has the name of the `.htcpp` template file. You can override the name by using the `--class-name` parameter, or you can specify one of the following flags: `--class-pascalcase`, `--class-snakecase`, or `--class-lowercase` to use the `.htcpp` template's filename converted to the corresponding case as a class name.
Converting the template to C++ code each time you modify it is a laborious task, so it makes sense to add this step to your build process. To do this with CMake you can use `hypertextcpp_GenerateHeader` function from the `hypertextcpp.cmake` file.
Note that this function launches the `hypertextcpp` executable, so it should be installed on your system first.
[`examples/04/CMakeLists.txt`](examples/04/CMakeLists.txt)
```
cmake_minimum_required(VERSION 3.18)
include(../../hypertextcpp.cmake)
hypertextcpp_GenerateHeader(NAME todolist CLASS_NAME TodoList)
set(SRC
todolist_printer.cpp
todolist.h)
add_executable(todolist_printer ${SRC})
target_compile_features(todolist_printer PUBLIC cxx_std_17)
set_target_properties(todolist_printer PROPERTIES CXX_EXTENSIONS OFF)
```
Now, every time you change the template, the corresponding header will be regenerated on the next build.
### Shared library renderer
It can feel quite wasteful to rebuild your project each time the template file is changed, so **hypertextcpp** supports the generation of a C++ source file for building templates in the form of shared libraries and linking them dynamically from your application.
It requires duplicating the config declaration in the .htcpp template, registering it with the `HTCPP_CONFIG` macro in both the template and the application source, generating the renderer code with the `--shared-lib` command line flag, building the library, and loading it using the tiny API installed from the `shared_lib_api/` directory. It sounds scarier than it is, so let's quickly update the todolist example to see how it works.
First we need to copy the config structure declaration in the template:
[`examples/05/todolist.htcpp`](examples/05/todolist.htcpp)
```html
#{
#include
struct PageParams{
struct Task{
std::string name;
bool isCompleted = false;
};
std::string name = "Bob";
std::vector tasks = {{"laundry", true}, {"cooking", false}};
} pageParams;
HTCPP_CONFIG(PageParams);
}
#taskList(){
}
$(cfg.name)'s todo list:
No tasks found
?(cfg.tasks.empty())$(taskList())
```
Be sure to use an exact copy; any mismatch of the config structure between the template and the application can't be handled gracefully. So, if you try to load a template library with a different structure, you'll definitely crash the application and maybe hurt someone as a result.
Next, we need to build our template renderer as a library. It's not possible to bundle multiple template files in one library, so we can build a library from a single `.htcpp` file by using the `hypertextcpp_BuildSharedLibrary` CMake function from `hypertextcpp.cmake`:
```
cmake_minimum_required(VERSION 3.18)
hypertextcpp_BuildSharedLibrary(
NAME todolist
OUTPUT_DIR ${CMAKE_CURRENT_BINARY_DIR}
)
add_dependencies(${PROJECT_NAME} todolist)
```
If everything goes right, you'll get `libtodolist.so` in the build directory. That's our `todolist.htcpp` template compiled as a shared library.
Next, let's modify `todolist_printer.cpp` to be able to load it:
[`examples/05/todolist_printer.cpp`](examples/05/todolist_printer.cpp)
```cpp
#include
#include
#include
struct PageParams{
struct Task{
std::string name;
bool isCompleted = false;
};
std::string name = "Bob";
std::vector tasks = {{"laundry", true}, {"cooking", false}};
};
HTCPP_CONFIG(PageParams);
int main()
{
auto pageParams = PageParams{};
auto page = htcpp::loadTemplate("libtodolist.so");
page->print(pageParams);
return 0;
}
```
On Linux, it may be necessary to link the system library `dl` to the build config, as we load the template library dynamically.
`todolist_printer` should compile and work the same as the previous example using the single-header approach.
## Installation
```console
git clone https://github.com/kamchatka-volcano/hypertextcpp.git
cd hypertextcpp
cmake -S . -B build
cmake --build build
cmake --install build
cmake --install build --component shared_lib_api
```
You can skip the installation of `shared_lib_api` component if you don't need to load templates in shared libraries form.
## Running tests
```console
cd hypertextcpp
cmake -S . -B build -DENABLE_TESTS=ON
cmake --build build
cd build/tests && ctest
```
## License
**hypertextcpp** is licensed under the [MS-PL license](/LICENSE.md)