Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-28 | Provide a full output stream implementation for SerdBuffer | David Robillard | 3 | -7/+8 | |
Essentially replaces serd_buffer_sink_finish() with serd_buffer_close(), which makes writing to a buffer consistent with writing to a file or anything else. | |||||
2022-01-28 | Remove SERD_NO_INLINE_OBJECTS | David Robillard | 1 | -1/+4 | |
This seems like pointless complexity now, since it's easy to just write simply ordered statements yourself. | |||||
2022-01-28 | Put rdf:type properties first when pretty-printing | David Robillard | 15 | -15/+76 | |
This is a common convention in Turtle and TriG because the special "a" syntax for rdf type as the first property looks nice, makes things easier to read, and can be useful for streaming implementations because the type of the instance is known before reading its properties. Also significantly clean up the pretty-printing implementation in the process. | |||||
2022-01-28 | Fix TriG graph indentation | David Robillard | 3 | -4/+27 | |
2022-01-28 | Fix pretty-printing nested empty lists and add test suite | David Robillard | 25 | -195/+431 | |
The earlier "test" was just hitting the code without actually checking the output. This new suite is a set of pretty-printed documents which serd must reproduce from a model exactly to pass. This should make it easy to add cases in the future, since each case is just a document, as it should look. | |||||
2022-01-28 | Make tools read stdin by default | David Robillard | 1 | -22/+0 | |
2022-01-28 | Replace serdi with more fine-grained tools | David Robillard | 47 | -315/+1307 | |
Especially with the new functionality, the complexity of the command-line interface alone was really becoming unmanageable. The serdi implementation also had the highest cyclomatic complexity of the entire codebase by a huge margin. So, take a page from the Unix philosophy and split serdi into several more finely-honed tools that can be freely composed. Though there is still unfortunately quite a bit of option overlap between them due to the common details of reading RDF, I think the resulting tools are a lot easier to understand, both from a user and a developer perspective. | |||||
2022-01-28 | Make blank node prefixing automatic | David Robillard | 4 | -21/+3 | |
Though potentially useful, I don't think the complexity cost of the old interface (both to the implementation and to the user) is worth it. A special tool to transform blank node labels (for example with regular expressions) would be a better approach to this if it's ever needed in the future. | |||||
2022-01-28 | Write test outputs to a temporary directory | David Robillard | 1 | -19/+11 | |
While occasionally useful, I almost always end up reproducing the issue live to investigate something anyway. Not keeping the many tests results around results in less clutter, and hopefully makes the test suites faster in environments with bad I/O like Docker. | |||||
2022-01-28 | Split up test suite build definitions | David Robillard | 12 | -87/+166 | |
2022-01-28 | Factor out serd_choose_input_syntax() | David Robillard | 1 | -0/+2 | |
2022-01-28 | Add a close function to SerdByteSink | David Robillard | 4 | -30/+41 | |
This simplifies everything by replacing special cases with a more general close function. A type is no longer stored in the structure, so the other constructors are now essentially syntactic sugar for the universal serd_byte_sink_new_function(). | |||||
2022-01-28 | Collapse input and output options into a single flag | David Robillard | 2 | -9/+13 | |
2022-01-28 | Move serdi to tools subdirectory | David Robillard | 1 | -1/+1 | |
This separates the command-line tool code from the library implementation. | |||||
2022-01-28 | Replace serdi -b and -e options with a block size option | David Robillard | 2 | -7/+5 | |
This is more powerful, and reduces the number of command line options that almost nobody needs to care about. | |||||
2022-01-28 | Factor out common test runner facilities | David Robillard | 2 | -58/+71 | |
2022-01-28 | Support writing all escapes in Turtle and TriG prefixed names | David Robillard | 1 | -0/+77 | |
2022-01-14 | Add statement filtering | David Robillard | 3 | -0/+206 | |
2022-01-14 | Add support for converting literals to canonical form | David Robillard | 11 | -1/+239 | |
2022-01-14 | Add model | David Robillard | 7 | -1/+1559 | |
2022-01-14 | Use Nodes in Env implementation | David Robillard | 1 | -3/+5 | |
2022-01-14 | Avoid dynamic allocation when fetching interned nodes | David Robillard | 1 | -26/+256 | |
This is more or less a total rewrite of SerdNodes and the underlying ZixHash to make efficient use of the new node construction API. | |||||
2022-01-14 | Expose low-level node construction API | David Robillard | 3 | -29/+74 | |
2022-01-14 | Rename serd_new_simple_node() to serd_new_token() | David Robillard | 1 | -7/+0 | |
Things get confusing without a term for this concept (which is roughly "nodes that are not annoying to construct"), so "token" it is. | |||||
2022-01-14 | Preserve long or short quoting from input documents | David Robillard | 7 | -75/+74 | |
2022-01-14 | Add serd_statement_matches() | David Robillard | 1 | -0/+9 | |
2022-01-14 | Add serd_node_compare() | David Robillard | 1 | -0/+51 | |
2022-01-14 | Add serd_node_from_syntax() and serd_node_to_syntax() | David Robillard | 3 | -2/+157 | |
2022-01-14 | Leave statement caret at the start of literals | David Robillard | 1 | -0/+50 | |
This allows a precise location to be reported for errors within literals, by adding the offset of the error in the literal to the caret. This will be used to report nice errors for things like regular expressions and supported XSD datatypes. | |||||
2022-01-14 | Add tests for weird prefixed name edge cases in RDF 1.1 Turtle | David Robillard | 6 | -0/+58 | |
2022-01-14 | Factor out NQuads reader | David Robillard | 2 | -0/+10 | |
2022-01-14 | Factor out NTriples reader | David Robillard | 9 | -7/+79 | |
2022-01-14 | Test lax NTriples parsing separately | David Robillard | 14 | -25/+88 | |
2022-01-14 | Factor out UTF-8 reading utilities | David Robillard | 2 | -0/+9 | |
2022-01-14 | Remove SERD_CURIE node datatype entirely | David Robillard | 5 | -81/+27 | |
2022-01-14 | Expand URIs in reader | David Robillard | 3 | -7/+75 | |
This expands relative and prefixed URIs in the reader on the stack, rather than passing them to the caller to be dealt with. This pushes these context-full forms to the edge of the system as much as possible to minimise the headaches they can cause. Towards having stricter guarantees about nodes and eliminating the CURIE node type altogether. | |||||
2022-01-14 | Move SerdEnv mutation from writer to reader | David Robillard | 5 | -46/+40 | |
Writing having side-effects seems questionable in general, and this prepares things for expanding URIs in the reader. | |||||
2022-01-14 | Add extensible logging API | David Robillard | 2 | -0/+147 | |
2022-01-13 | Add support for parsing variables | David Robillard | 18 | -12/+150 | |
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. | |||||
2022-01-13 | Make Reader always read from a ByteSource | David Robillard | 8 | -43/+169 | |
2022-01-13 | Add support for reading multiple files at once | David Robillard | 6 | -1/+75 | |
2022-01-13 | Add serd_canonical_path() | David Robillard | 2 | -1/+30 | |
2022-01-13 | Simplify handling of input string arguments | David Robillard | 1 | -0/+1 | |
2022-01-13 | Add input base URI option | David Robillard | 2 | -6/+15 | |
2022-01-13 | Support reading lone lists in lax mode | David Robillard | 3 | -0/+10 | |
This allows parsing documents like "(42) ." | |||||
2022-01-13 | Fix crash when attempting to read before starting | David Robillard | 1 | -0/+3 | |
2022-01-13 | Align nodes on the reader stack | David Robillard | 1 | -1/+3 | |
2022-01-13 | Replace serd_reader_set_strict() with SerdReaderFlags | David Robillard | 4 | -9/+12 | |
2022-01-13 | Handle read errors more precisely | David Robillard | 1 | -1/+1 | |
2022-01-13 | Split out simple reader unit tests | David Robillard | 3 | -176/+234 | |