aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
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
2022-01-13Factor out TRY macroDavid Robillard3-14/+29
2022-01-13Reduce complexity of string writing functionsDavid Robillard1-78/+98
2022-01-13Reduce complexity of URI node writing functionsDavid Robillard1-21/+38
2022-01-13Reduce complexity of statement writing functionsDavid Robillard1-89/+212
2022-01-13Make Writer always write to a ByteSinkDavid Robillard13-215/+318
2022-01-13Move I/O function prototypes to their own sectionDavid Robillard1-4/+10
2022-01-13Add empty syntax type for suppressing outputDavid Robillard8-29/+115
2022-01-13Use a manual type-safe stack in writerDavid Robillard2-40/+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-13Replace SERD_WRITE_STRICT flag with SERD_WRITE_LAXDavid Robillard5-12/+12
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-13Improve writer error handlingDavid Robillard7-200/+391
2022-01-13Add support for writing terse collectionsDavid Robillard11-15/+210
2022-01-13Tolerate popping writer contexts with no predicateDavid Robillard1-1/+2
2022-01-13Reset writer to empty when finished to avoid spurious blank linesDavid Robillard1-0/+1
2022-01-13Pass context flags to write_sep()David Robillard1-20/+22
2022-01-13Add initial flags to write contextDavid Robillard1-21/+24
2022-01-13Simplify internal writer context APIDavid Robillard1-32/+30
2022-01-13Strengthen writer statement preconditionsDavid Robillard1-1/+3
2022-01-13Add option for writing terse output without newlinesDavid Robillard5-27/+34
2022-01-13Factor out writing top level separatorDavid Robillard1-7/+10
2022-01-13Simplify streaming API and improve pretty printingDavid Robillard10-191/+371
This removes the obligation from the caller to correctly maintain flags to describe the current anonymous context, instead making the writer handle this itself as much as possible. Flags remain for the cases the writer can not infer from context: the start of anonymous subject and object nodes.
2022-01-13Simplify SerdEnv APIDavid Robillard5-71/+105
2022-01-13Separate ByteSink from writerDavid Robillard4-19/+28
2022-01-13Expose SerdByteSink in public APIDavid Robillard5-5/+150