Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-03-08 | WIP: expander | David Robillard | 1 | -0/+88 | |
2021-03-08 | WIP: Add Python bindings | David Robillard | 12 | -1/+4444 | |
2021-03-08 | WIP: Add C++ bindings | David Robillard | 14 | -0/+3385 | |
2021-03-08 | WIP: Add statement filtering | David Robillard | 7 | -3/+232 | |
2021-03-08 | WIP: Test reading string EOF as chunk | David Robillard | 1 | -1/+14 | |
2021-03-08 | Add support for converting literals to canonical form | David Robillard | 19 | -7/+499 | |
2021-03-08 | Add validation to command line interface | David Robillard | 44 | -70/+2363 | |
2021-03-08 | Add model validation | David Robillard | 6 | -1/+886 | |
2021-03-08 | Add rerex from git@gitlab.com:drobilla/rerex 2420851 | David Robillard | 17 | -0/+2475 | |
2021-03-08 | Add model to benchmarks | David Robillard | 1 | -4/+6 | |
2021-03-08 | Add model | David Robillard | 23 | -5/+3253 | |
2021-03-08 | Fix various warnings and conversion issues | David Robillard | 6 | -26/+18 | |
2021-03-08 | WIP: Add extensible logging API | David Robillard | 10 | -95/+367 | |
2021-03-08 | Add serd_node_compare() | David Robillard | 2 | -0/+37 | |
2021-03-08 | Expand URIs in reader | David Robillard | 11 | -78/+207 | |
2021-03-08 | WIP: Add serd_node_from_syntax() and serd_node_to_syntax() | David Robillard | 10 | -2/+322 | |
2021-03-08 | Add SERD_READ_EXACT_BLANKS flag | David Robillard | 2 | -3/+4 | |
This allows suppressing the blank node ID clashing mechanism to read blank IDs exactly as they appear in the input, even if they match the scheme used to generate blank node IDs internally. | |||||
2021-03-08 | Add support for parsing variables | David Robillard | 19 | -10/+192 | |
This adds a reader flag and serdi option for extending a syntax with support for SPARQL-like variables, for storing things like patterns or simple queries. | |||||
2021-03-08 | WIP: Make Reader always read from a ByteSource | David Robillard | 14 | -280/+322 | |
2021-03-08 | Add support for reading multiple files at once | David Robillard | 8 | -31/+173 | |
2021-03-08 | Simplify handling of input string arguments | David Robillard | 3 | -11/+14 | |
2021-03-08 | Add input base URI option | David Robillard | 4 | -12/+35 | |
2021-03-08 | WIP: Make Writer always write to a ByteSink | David Robillard | 10 | -158/+202 | |
2021-03-08 | Fix crash when attempting to read before starting | David Robillard | 2 | -0/+7 | |
2021-03-08 | Make serd_uri_string_length() precise and add it to public API | David Robillard | 3 | -23/+61 | |
2021-03-08 | Add serd_new_real_file_uri() | David Robillard | 4 | -1/+92 | |
2021-03-08 | Clean up file URI tests | David Robillard | 1 | -9/+7 | |
2021-03-08 | Use a manual type-safe stack in SerdWriter | David Robillard | 1 | -31/+24 | |
This fixes alignment issues on ARM. Since this stack is just for WriteContext which has a fixed size, using SerdStack here just made things more confusing anyway. | |||||
2021-03-08 | Emit reader errors on stack overflows in string literals | David Robillard | 1 | -1/+9 | |
2021-03-08 | Simplify ByteSource implementation | David Robillard | 2 | -30/+20 | |
2021-03-08 | WIP: Make serd_env_expand() always return a node if it is not relative | David Robillard | 4 | -41/+190 | |
The old interface was potentially faster, because it avoided unnecessary copies, but was annoying to use and problematic because nodes that don't need expansion were indistinguishable from nodes that failed to expand (like those that use undefined namespace prefixes). In the grand scheme of things, the potential performance improvement isn't worth it, and unexpected unexpanded nodes causes deep nightmarish problems, so just make serd_env_expand() copy the input if it doesn't need expansion to make the API simpler and safer. | |||||
2021-03-08 | Make it possible to allocate nodes with CURIE datatypes | David Robillard | 3 | -7/+10 | |
2021-03-08 | Remove double allocation in serd_env_set_prefix() | David Robillard | 1 | -6/+7 | |
2021-03-08 | Remove double allocations in serd_env_expand() | David Robillard | 4 | -24/+90 | |
2021-03-08 | Move local URI utility functions | David Robillard | 1 | -28/+28 | |
2021-03-08 | Split up node expansion code | David Robillard | 1 | -32/+53 | |
2021-03-08 | Clean up Env tests and behaviour | David Robillard | 2 | -69/+185 | |
2021-03-08 | Make const Env functions tolerant of NULL | David Robillard | 3 | -5/+17 | |
This is convenient in places where you don't necessarily need an Env, since in this case these methods work the same as if with an empty Env. | |||||
2021-03-08 | Split up serd_internal.h | David Robillard | 11 | -17/+34 | |
2021-03-08 | Add empty syntax type for suppressing output | David Robillard | 7 | -17/+70 | |
2021-03-08 | Replace serd_reader_set_strict() with SerdReaderFlags | David Robillard | 7 | -48/+41 | |
This makes reader options extensible and should hopefully prevent the need for grafting on more similar functions in the future. | |||||
2021-03-08 | Report writer errors and add strict write mode | David Robillard | 7 | -180/+303 | |
2021-03-08 | Align node allocations | David Robillard | 7 | -21/+61 | |
2021-03-08 | Add support for writing terse collections | David Robillard | 11 | -15/+211 | |
2021-03-08 | Tolerate lack of predicate when context is popped | David Robillard | 1 | -1/+2 | |
2021-03-08 | Reset writer to empty when finished to avoid spurious blank lines | David Robillard | 1 | -0/+1 | |
2021-03-08 | Pass context flags to write_sep() | David Robillard | 1 | -22/+24 | |
2021-03-08 | Add initial flags to write context | David Robillard | 1 | -21/+24 | |
2021-03-08 | Simplify internal writer context API | David Robillard | 1 | -31/+31 | |
2021-03-08 | Strengthen writer statement preconditions | David Robillard | 1 | -1/+3 | |