Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-12-02 | Use ZixAllocator directly | David Robillard | 1 | -1/+0 | |
2023-12-02 | Use ZixStringView directly | David Robillard | 1 | -1/+0 | |
2023-12-02 | Add model and serd-sort utility | David Robillard | 1 | -0/+4 | |
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 | Add statement filter sink and serd-filter tool | David Robillard | 1 | -0/+1 | |
2023-12-02 | Add serd_node_from_syntax() and serd_node_to_syntax() | David Robillard | 1 | -0/+1 | |
2023-12-02 | Add SerdNodes for storing a cache of interned nodes | David Robillard | 1 | -0/+8 | |
2023-12-02 | [WIP] Add support for converting literals to canonical form | David Robillard | 1 | -0/+1 | |
2023-12-02 | [WIP] Generalize node construction API | David Robillard | 1 | -0/+1 | |
2023-12-02 | [WIP] Add extensible logging API | David Robillard | 1 | -1/+1 | |
2023-12-02 | Simplify output stream API | David Robillard | 1 | -0/+1 | |
2023-12-02 | Simplify input stream API | David Robillard | 1 | -0/+1 | |
2023-12-02 | Replace multiple stream callbacks with SerdEvent | David Robillard | 1 | -0/+1 | |
This makes plumbing easier since everything goes through the same "stream" and only one callback is required to handling everything. It's also more easily extensible in case more event types need to be added in the future. | |||||
2023-12-02 | Add SerdCaret | David Robillard | 1 | -0/+1 | |
2023-12-02 | Add SerdWorld for shared library state | David Robillard | 1 | -0/+1 | |
2023-12-02 | Clean up base64 node construction and access API | David Robillard | 1 | -0/+1 | |
2023-12-02 | Add version constants to public header | David Robillard | 1 | -0/+1 | |
2023-12-02 | Split up public API header | David Robillard | 1 | -921/+25 | |
2023-12-02 | Remove "get" from accessor names | David Robillard | 1 | -4/+4 | |
2023-12-02 | Rename function types for consistency | David Robillard | 1 | -22/+22 | |
2023-12-02 | Rename SerdStyle to SerdWriterFlags | David Robillard | 1 | -9/+12 | |
2023-12-02 | Rename SerdType to SerdNodeType | David Robillard | 1 | -4/+4 | |
The old name will be even more ambiguous with the increased scope. | |||||
2023-12-02 | Rename SerdURI to SerdURIView | David Robillard | 1 | -39/+39 | |
2023-12-02 | Rename SerdChunk to SerdStringView | David Robillard | 1 | -14/+19 | |
2023-12-02 | Add SerdBuffer type for mutable buffers | David Robillard | 1 | -9/+15 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2023-12-02 | Use char* for strings in public API | David Robillard | 1 | -52/+51 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2023-12-02 | Remove escape parameter from serd_node_new_file_uri | David Robillard | 1 | -5/+3 | |
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best. | |||||
2023-12-02 | Remove useless character counting | David Robillard | 1 | -5/+2 | |
2023-12-02 | Remove serd_uri_to_path() | David Robillard | 1 | -27/+0 | |
2023-04-16 | Gracefully handle errors when writing text | David Robillard | 1 | -0/+2 | |
2023-04-05 | Improve writer error handling | David Robillard | 1 | -0/+1 | |
2023-04-05 | Update to clang-format 12 | David Robillard | 1 | -128/+63 | |
2022-12-20 | Avoid using ASCII grave as a quote | David Robillard | 1 | -2/+2 | |
2022-12-19 | Allow SERD_API to be defined by the user | David Robillard | 1 | -8/+11 | |
2022-12-09 | Add serd_reader_skip_until_byte() to public API | David Robillard | 1 | -0/+13 | |
2022-10-23 | Fix whitespace | David Robillard | 1 | -2/+2 | |
2022-10-23 | Add trailing commas to enum declarations | David Robillard | 1 | -5/+5 | |
This has been supported since C99 and C++11, and makes for less noisy diffs and fewer conflicts when things are added. | |||||
2022-10-23 | Use uppercase integer literal suffixes | David Robillard | 1 | -15/+15 | |
2022-08-31 | Adopt REUSE machine-readable licensing standard | David Robillard | 1 | -15/+2 | |
2021-06-30 | Make node qualify and expand functions tolerate a null Env | David Robillard | 1 | -3/+3 | |
This is convenient in places where you don't necessarily need an Env, since these methods will work the same as with an empty Env. | |||||
2021-06-30 | Format long comments consistently | David Robillard | 1 | -14/+14 | |
2021-06-06 | Move type definitions inside the corresponding documentation group | David Robillard | 1 | -102/+102 | |
2021-04-12 | Group API declarations by topic | David Robillard | 1 | -42/+47 | |
2021-01-10 | Only use modern deprecated attributes on clang 7 and newer | David Robillard | 1 | -1/+1 | |
2021-01-10 | Only use nullability attributes on clang 7 and newer | David Robillard | 1 | -1/+1 | |
These have existed for longer, but the names were changed. | |||||
2021-01-09 | Fix SERD_DISABLE_DEPRECATED | David Robillard | 1 | -0/+4 | |
2021-01-07 | Use globally unique Doxygen group names | David Robillard | 1 | -8/+8 | |
This is necessary to avoid clashes when building unified documentation as a subproject. | |||||
2021-01-06 | Switch to LV2 documentation theme | David Robillard | 1 | -2/+2 | |
2021-01-02 | Use email address instead of website for attribution | David Robillard | 1 | -1/+1 | |
2021-01-02 | Use SERD_STATIC instead of SERD_SHARED to control visibility | David Robillard | 1 | -3/+3 | |
For consistency, this seems to be the most common convention. | |||||
2020-12-31 | Format all code with clang-format | David Robillard | 1 | -138/+143 | |