2023-01-18 11:49:45 +01:00
|
|
|
# libvieter
|
|
|
|
|
2023-01-22 11:56:11 +01:00
|
|
|
This library powers part of Vieter, most notably the sections that can easily
|
2023-01-18 11:49:45 +01:00
|
|
|
be implemented in C (or just parts I want to implement in C because it's fun).
|
|
|
|
|
2023-01-22 11:56:11 +01:00
|
|
|
The goal of this library is to be as self-contained as possible; data
|
|
|
|
structures should be implemented manually if possible.
|
2023-01-18 11:49:45 +01:00
|
|
|
|
2023-01-27 20:48:51 +01:00
|
|
|
See the [source code](src) for the list of modules.
|
2023-01-18 11:49:45 +01:00
|
|
|
|
|
|
|
## Development
|
|
|
|
|
2023-01-18 13:08:09 +01:00
|
|
|
### Compilation
|
|
|
|
|
|
|
|
Everything is handled by the provided Makefile. To compile the static library,
|
|
|
|
simply run `make`.
|
|
|
|
|
2023-01-28 09:58:32 +01:00
|
|
|
### Required libraries
|
|
|
|
|
|
|
|
Libvieter requires libarchive.
|
|
|
|
|
2023-01-22 11:56:11 +01:00
|
|
|
### Project structure
|
|
|
|
|
|
|
|
Each module has its own subdirectory inside `src`, e.g. `src/cron`. This
|
|
|
|
directory contains the actual implementation of a module, along with any
|
|
|
|
internally used header files. Each internal function should be defined in a
|
|
|
|
header file, as to make testing these possible.
|
|
|
|
|
|
|
|
Each module should also have its own header file inside the `include`
|
|
|
|
directory. This header file defines the public API that the library exposes for
|
|
|
|
this specific module.
|
|
|
|
|
|
|
|
Any code in a module may only import internal headers from that module, along
|
|
|
|
with any of the public API header files. Modules should not depend on each
|
|
|
|
other's internal implementationns.
|
|
|
|
|
|
|
|
Each module should contain a README describing its contents.
|
|
|
|
|
|
|
|
All file names, function names... (even internals) should follow snake case
|
|
|
|
convention and have a prefix unique to that module, starting with `vieter_`.
|
|
|
|
For example, the `cron` modules uses the `vieter_cron_` prefix for everything.
|
|
|
|
|
2023-01-22 12:35:55 +01:00
|
|
|
Header files should only import what they explicitely need. If some function is
|
|
|
|
only used in a .c file, the import should be placed in the .c file instead.
|
|
|
|
|
2023-01-18 13:08:09 +01:00
|
|
|
### Testing
|
|
|
|
|
|
|
|
This library uses [Acutest](https://github.com/mity/acutest) for its tests.
|
|
|
|
Tests should be placed in the `test` subdirectory, further divided into
|
2023-01-27 20:48:51 +01:00
|
|
|
directories that correspond to those in `src`. Test files should begin with
|
2023-01-18 13:08:09 +01:00
|
|
|
`test_`, and their format should follow the expected format for Acutest.
|
|
|
|
|
2023-01-22 11:56:11 +01:00
|
|
|
Each `test_` is compiled separately into a binary, linked with libvieter. A
|
|
|
|
test file can import any of the public API header files, along with any header
|
|
|
|
files defined in its respective module. This allows testing internal functions.
|
|
|
|
|
2023-01-18 13:08:09 +01:00
|
|
|
To run the tests, simply run `make test`. If you wish to only run a specific
|
|
|
|
test binary, you can find them in `build/test`.
|
|
|
|
|
2023-01-28 09:30:35 +01:00
|
|
|
The name of tests in the `TEST_LIST` variable should be prefixed with the
|
|
|
|
module they're testing. This makes it much easier to distinguish the output of
|
|
|
|
tests in the CLI. For example:
|
|
|
|
|
|
|
|
```c
|
|
|
|
TEST_LIST = {
|
|
|
|
{"cron illegal parts", test_illegal_parts},
|
|
|
|
{NULL, NULL}
|
|
|
|
};
|
|
|
|
```
|
|
|
|
|
2023-01-18 11:49:45 +01:00
|
|
|
### `compile_commands.json`
|
|
|
|
|
|
|
|
Clangd requires a `compile_commands.json` to function properly. You can
|
|
|
|
generate it using [bear](https://github.com/rizsotto/Bear):
|
|
|
|
|
|
|
|
```sh
|
|
|
|
make clean
|
|
|
|
bear -- make
|
2023-01-18 13:08:09 +01:00
|
|
|
bear --append -- make build-test
|
2023-01-18 11:49:45 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
This will create a `compile_commands.json` file in the current directory.
|