Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-14 | Expose low-level node construction API | David Robillard | 7 | -271/+519 | |
2022-01-14 | Remove serd_new_resolved_uri() | David Robillard | 3 | -76/+36 | |
2022-01-14 | Rename serd_new_simple_node() to serd_new_token() | David Robillard | 1 | -7/+3 | |
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 | -158/+88 | |
2022-01-14 | Factor out serd_write_file_uri() | David Robillard | 2 | -70/+76 | |
2022-01-14 | Add serd_statement_matches() | David Robillard | 2 | -0/+22 | |
2022-01-14 | Add serd_node_compare() | David Robillard | 2 | -0/+33 | |
2022-01-14 | Add serd_node_from_syntax() and serd_node_to_syntax() | David Robillard | 3 | -0/+150 | |
2022-01-14 | Leave statement caret at the start of literals | David Robillard | 3 | -5/+23 | |
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 | Reduce complexity of Turtle and TriG block reading functions | David Robillard | 1 | -89/+109 | |
2022-01-14 | Reduce complexity of Turtle object reading function | David Robillard | 1 | -56/+73 | |
2022-01-14 | Factor out NQuads reader | David Robillard | 7 | -117/+189 | |
2022-01-14 | Factor out NTriples reader | David Robillard | 6 | -543/+1116 | |
2022-01-14 | Factor out UTF-8 reading utilities | David Robillard | 3 | -86/+153 | |
2022-01-14 | Reduce complexity of blank node reading functions | David Robillard | 1 | -17/+33 | |
2022-01-14 | Remove SERD_CURIE node datatype entirely | David Robillard | 7 | -116/+43 | |
2022-01-14 | Expand URIs in reader | David Robillard | 3 | -17/+113 | |
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 | Make serd_env_expand_in_place() take a string view instead of a node | David Robillard | 3 | -8/+11 | |
2022-01-14 | Move SerdEnv mutation from writer to reader | David Robillard | 5 | -32/+41 | |
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 | 9 | -145/+391 | |
2022-01-13 | Add SERD_READ_EXACT_BLANKS flag | David Robillard | 1 | -1/+1 | |
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. | |||||
2022-01-13 | Add support for parsing variables | David Robillard | 8 | -7/+101 | |
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 | 9 | -190/+203 | |
2022-01-13 | Add support for reading multiple files at once | David Robillard | 2 | -32/+109 | |
2022-01-13 | Add serd_canonical_path() | David Robillard | 1 | -0/+25 | |
2022-01-13 | Make serd_uri_string_length() precise and add it to public API | David Robillard | 2 | -21/+44 | |
2022-01-13 | Simplify handling of input string arguments | David Robillard | 1 | -11/+15 | |
2022-01-13 | Add input base URI option | David Robillard | 1 | -5/+11 | |
2022-01-13 | Support reading lone lists in lax mode | David Robillard | 1 | -1/+1 | |
This allows parsing documents like "(42) ." | |||||
2022-01-13 | Fix hang when skipping an error at EOF when lax parsing | David Robillard | 1 | -1/+1 | |
2022-01-13 | Fix crash when attempting to read before starting | David Robillard | 1 | -0/+4 | |
2022-01-13 | Simplify ByteSource implementation | David Robillard | 3 | -34/+20 | |
2022-01-13 | Be precise about the meaning of node "length" and "size" | David Robillard | 4 | -39/+36 | |
2022-01-13 | Align nodes on the reader stack | David Robillard | 2 | -6/+9 | |
2022-01-13 | Replace serd_reader_set_strict() with SerdReaderFlags | David Robillard | 2 | -12/+6 | |
2022-01-13 | Handle read errors more precisely | David Robillard | 4 | -26/+45 | |
2022-01-13 | Simplify reader stack pushing code | David Robillard | 1 | -6/+6 | |
2022-01-13 | Use a lookup table to determine UTF-8 encoding length | David Robillard | 1 | -20/+38 | |
2022-01-13 | Split up serd_env_expand() implementation | David Robillard | 1 | -17/+35 | |
2022-01-13 | Add serd_env_copy() and serd_env_equals() | David Robillard | 1 | -0/+47 | |
2022-01-13 | Split up serd_internal.h | David Robillard | 10 | -16/+32 | |
2022-01-13 | Factor out TRY macro | David Robillard | 3 | -14/+29 | |
2022-01-13 | Reduce complexity of string writing functions | David Robillard | 1 | -78/+98 | |
2022-01-13 | Reduce complexity of URI node writing functions | David Robillard | 1 | -21/+38 | |
2022-01-13 | Reduce complexity of statement writing functions | David Robillard | 1 | -89/+212 | |
2022-01-13 | Make Writer always write to a ByteSink | David Robillard | 5 | -125/+133 | |
2022-01-13 | Add empty syntax type for suppressing output | David Robillard | 3 | -21/+25 | |
2022-01-13 | Use a manual type-safe stack in writer | David Robillard | 1 | -38/+28 | |
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. | |||||
2022-01-13 | Replace SERD_WRITE_STRICT flag with SERD_WRITE_LAX | David Robillard | 2 | -6/+6 | |
The unset value for flags should represent the best default, which in this case is strict parsing. Lax parsing is the riskier opt-in option. | |||||
2022-01-13 | Improve writer error handling | David Robillard | 3 | -198/+284 | |