Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-12-02 | [WIP] Add C++ bindings | David Robillard | 1 | -0/+5 | |
2023-12-02 | Add high-level documentation | David Robillard | 1 | -0/+8 | |
2023-12-02 | Use ZixAllocator directly | David Robillard | 1 | -2/+0 | |
2023-12-02 | Use ZixStringView directly | David Robillard | 1 | -1/+2 | |
2023-12-02 | Add model and serd-sort utility | David Robillard | 1 | -0/+9 | |
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/+2 | |
2023-12-02 | Add serd_node_from_syntax() and serd_node_to_syntax() | David Robillard | 1 | -0/+2 | |
2023-12-02 | Add SerdNodes for storing a cache of interned nodes | David Robillard | 1 | -1/+3 | |
2023-12-02 | [WIP] Add support for converting literals to canonical form | David Robillard | 1 | -0/+2 | |
2023-12-02 | [WIP] Generalize node construction API | David Robillard | 1 | -0/+2 | |
2023-12-02 | Add support for custom allocators | David Robillard | 1 | -4/+1 | |
This makes it explicit in the API where memory is allocated, and allows the user to provide a custom allocator to avoid the use of the default system allocator for whatever reason. | |||||
2023-12-02 | [WIP] Add extensible logging API | David Robillard | 1 | -1/+6 | |
2023-12-02 | Rename serdi to serd-pipe | David Robillard | 1 | -1/+1 | |
2023-12-02 | Move serdi to tools subdirectory | David Robillard | 1 | -18/+1 | |
This separates the command-line tool code from the library implementation. | |||||
2023-12-02 | Factor out Windows UTF-8 console setup code | David Robillard | 1 | -1/+4 | |
2023-12-02 | Simplify output stream API | David Robillard | 1 | -0/+3 | |
2023-12-02 | Simplify input stream API | David Robillard | 1 | -0/+2 | |
2023-12-02 | Make SerdBuffer an output stream | David Robillard | 1 | -0/+1 | |
2023-12-02 | Separate Turtle and TriG reading code | David Robillard | 1 | -1/+2 | |
2023-12-02 | Factor out NQuads reader | David Robillard | 1 | -0/+1 | |
2023-12-02 | Factor out NTriples reader | David Robillard | 1 | -0/+1 | |
2023-12-02 | Factor out UTF-8 reading utilities | David Robillard | 1 | -0/+1 | |
2023-12-02 | Use Zix attributes directly | David Robillard | 1 | -1/+2 | |
2023-12-02 | [WIP] Add zix dependency | David Robillard | 1 | -1/+8 | |
Most of the system-specific code will be replaced with calls to portable zix functions, and the data structures will be used for in-memory node and statement storage. | |||||
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 SerdStatement | David Robillard | 1 | -0/+2 | |
2023-12-02 | Add SerdCaret | David Robillard | 1 | -0/+2 | |
2023-12-02 | Use thread-safe strerror_r() if available | David Robillard | 1 | -0/+4 | |
2023-12-02 | Add SerdWorld for shared library state | David Robillard | 1 | -0/+2 | |
2023-12-02 | Clean up base64 node construction and access API | David Robillard | 1 | -1/+1 | |
2023-12-02 | [WIP] Use exess for reading and writing numeric and binary literals | David Robillard | 1 | -1/+11 | |
2023-12-02 | Move syntax name/extension utilities to public API | David Robillard | 1 | -0/+1 | |
2023-12-02 | Add SerdSink interface and hide implementations | David Robillard | 1 | -0/+1 | |
2023-12-02 | Add version constants to public header | David Robillard | 1 | -2/+8 | |
2023-12-02 | Split up public API header | David Robillard | 1 | -0/+16 | |
2023-12-02 | Remove serd_uri_to_path() | David Robillard | 1 | -1/+1 | |
2023-10-22 | Serd 0.32.0v0.32.0 | David Robillard | 1 | -1/+1 | |
2023-09-23 | Avoid use of deprecated meson string formatting with files | David Robillard | 1 | -14/+0 | |
Meson annoyingly doesn't provide access to the path of file objects (but it should). It was possible to do that by formatting a string with a file argument, but now this triggers a loud warning that claims it has always been broken and will be deprecated. So, avoid this by juggling things around and maintaining unchecked path strings instead, and hope that they're all passed to files() at some point so they can't get stale. | |||||
2023-09-22 | Clean up meson formatting | David Robillard | 1 | -25/+27 | |
Formatted automatically with muon, with some manual changes to make things format more nicely. | |||||
2023-09-22 | Move man pages to their own directory | David Robillard | 1 | -5/+0 | |
2023-05-15 | Clean up and organize configuration summary | David Robillard | 1 | -15/+31 | |
2023-04-30 | Add long "help" and "version" options to serdi | David Robillard | 1 | -1/+1 | |
Although serdi still "officially" has a BSD-style interface, meson uses --version to find the version of executables. So, support that, and also add --help, since users will often try that for unknown commands. | |||||
2023-04-16 | Gracefully handle errors when writing text | David Robillard | 1 | -1/+1 | |
2023-04-06 | Check formatting of project Turtle files | David Robillard | 1 | -0/+16 | |
2023-04-06 | Use more consistent meson formatting | David Robillard | 1 | -13/+15 | |
2023-04-06 | Use new meson strict warning system | David Robillard | 1 | -4/+1 | |
Meson includes warning_level=everything as of version 1.0.0, which supercedes maintaining redundant lists of warning flags here. | |||||
2023-04-05 | Improve writer error handling | David Robillard | 1 | -1/+1 | |
2023-02-13 | Fix check for posix_fadvise | David Robillard | 1 | -1/+1 | |
2023-02-12 | Check for POSIX features with the build system | David Robillard | 1 | -10/+46 | |
2023-02-12 | Disable default Windows bloat from meson | David Robillard | 1 | -0/+1 | |