Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-12-02 | Use ZixAllocator directly | David Robillard | 1 | -5/+5 | |
2023-12-02 | Use ZixStringView directly | David Robillard | 1 | -3/+3 | |
2023-12-02 | Use SerdNodes instead of manual memory management in tests | David Robillard | 1 | -3/+0 | |
2023-12-02 | Add model and serd-sort utility | David Robillard | 1 | -0/+5 | |
With all the new functionality, the complexity of the serd-pipe command-line interface is starting to push the limits of available flags. So, instead of grafting on further options to control a model, this commit adds a new tool, serd-sort, which acts somewhat like a stripped-down serd-pipe that stores statements in a model in memory. This keeps the complexity (including the user-facing complexity) of any one tool down, since other more focused tools can be used for streaming tasks in a pipeline. In other words, abandon Swissarmyknifeism, take a page from the Unix philosophy, and try to expose the model functionality to the command-line in a dedicated focused tool. The model implementation is tested by using this tool to run a subset of the usual test suites, and a special suite to test statement sorting. | |||||
2023-12-02 | Factor out and rewrite command-line interface | David Robillard | 1 | -4/+92 | |
2023-12-02 | Collapse input and output options into single flags | David Robillard | 1 | -0/+13 | |
2023-12-02 | [WIP] Add extensible logging API | David Robillard | 1 | -1/+4 | |
2023-12-02 | Factor out serd_choose_syntax() | David Robillard | 1 | -0/+4 | |
2023-12-02 | Factor out opening output files | David Robillard | 1 | -0/+4 | |
2023-12-02 | Factor out setting base URI from a path | David Robillard | 1 | -0/+5 | |
2023-12-02 | Add support for reading multiple files at once | David Robillard | 1 | -0/+5 | |
2023-12-02 | Move serdi to tools subdirectory | David Robillard | 1 | -0/+15 | |
This separates the command-line tool code from the library implementation. |