aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2022-01-14Add modelDavid Robillard25-14/+3735
2022-01-14Use Nodes in Env implementationDavid Robillard2-49/+63
2022-01-14Avoid dynamic allocation when fetching interned nodesDavid Robillard9-391/+1582
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-14Avoid dynamic allocation of world blank nodeDavid Robillard2-8/+16
2022-01-14Make StringView buffer non-nullableDavid Robillard1-2/+2
2022-01-14Expose low-level node construction APIDavid Robillard11-365/+915
2022-01-14Remove serd_new_resolved_uri()David Robillard3-76/+36
2022-01-14Rename serd_new_simple_node() to serd_new_token()David Robillard3-19/+13
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-14Preserve long or short quoting from input documentsDavid Robillard16-284/+209
2022-01-14Factor out serd_write_file_uri()David Robillard3-72/+101
2022-01-14Add serd_statement_matches()David Robillard4-0/+45
2022-01-14Add serd_node_compare()David Robillard4-0/+99
2022-01-14Add serd_node_from_syntax() and serd_node_to_syntax()David Robillard8-2/+356
2022-01-14Leave statement caret at the start of literalsDavid Robillard4-5/+73
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-14Reduce complexity of Turtle and TriG block reading functionsDavid Robillard1-89/+109
2022-01-14Reduce complexity of Turtle object reading functionDavid Robillard1-56/+73
2022-01-14Add tests for weird prefixed name edge cases in RDF 1.1 TurtleDavid Robillard6-0/+58
2022-01-14Factor out NQuads readerDavid Robillard10-117/+200
2022-01-14Factor out NTriples readerDavid Robillard16-550/+1196
2022-01-14Test lax NTriples parsing separatelyDavid Robillard14-25/+88
2022-01-14Factor out UTF-8 reading utilitiesDavid Robillard6-86/+163
2022-01-14Reduce complexity of blank node reading functionsDavid Robillard1-17/+33
2022-01-14Remove SERD_CURIE node datatype entirelyDavid Robillard13-231/+106
2022-01-14Expand URIs in readerDavid Robillard7-24/+191
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-14Make serd_env_expand_in_place() take a string view instead of a nodeDavid Robillard3-8/+11
2022-01-14Move SerdEnv mutation from writer to readerDavid Robillard11-83/+87
Writing having side-effects seems questionable in general, and this prepares things for expanding URIs in the reader.
2022-01-14Add extensible logging APIDavid Robillard14-168/+734
2022-01-13Add SERD_READ_EXACT_BLANKS flagDavid Robillard2-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.
2022-01-13Add support for parsing variablesDavid Robillard29-24/+275
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-13Make Reader always read from a ByteSourceDavid Robillard19-268/+460
2022-01-13Add support for reading multiple files at onceDavid Robillard9-35/+186
2022-01-13Add serd_canonical_path()David Robillard5-2/+72
2022-01-13Make serd_uri_string_length() precise and add it to public APIDavid Robillard3-22/+59
2022-01-13Simplify handling of input string argumentsDavid Robillard3-12/+17
2022-01-13Add input base URI optionDavid Robillard4-12/+35
2022-01-13Support reading lone lists in lax modeDavid Robillard4-1/+11
This allows parsing documents like "(42) ."
2022-01-13Fix hang when skipping an error at EOF when lax parsingDavid Robillard1-1/+1
2022-01-13Fix crash when attempting to read before startingDavid Robillard2-0/+7
2022-01-13Simplify ByteSource implementationDavid Robillard3-34/+20
2022-01-13Be precise about the meaning of node "length" and "size"David Robillard4-39/+36
2022-01-13Align nodes on the reader stackDavid Robillard3-7/+12
2022-01-13Replace serd_reader_set_strict() with SerdReaderFlagsDavid Robillard7-32/+27
2022-01-13Handle read errors more preciselyDavid Robillard6-27/+47
2022-01-13Simplify reader stack pushing codeDavid Robillard1-6/+6
2022-01-13Split out simple reader unit testsDavid Robillard3-176/+234
2022-01-13Use a lookup table to determine UTF-8 encoding lengthDavid Robillard1-20/+38
2022-01-13Clean up SerdEnv testsDavid Robillard1-65/+252
2022-01-13Split up serd_env_expand() implementationDavid Robillard1-17/+35
2022-01-13Add serd_env_copy() and serd_env_equals()David Robillard3-0/+100
2022-01-13Split up serd_internal.hDavid Robillard10-16/+32