aboutsummaryrefslogtreecommitdiffstats
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2022-01-13Simplify handling of input string argumentsDavid Robillard1-0/+1
2022-01-13Add input base URI optionDavid Robillard2-6/+15
2022-01-13Support reading lone lists in lax modeDavid Robillard3-0/+10
This allows parsing documents like "(42) ."
2022-01-13Fix crash when attempting to read before startingDavid Robillard1-0/+3
2022-01-13Align nodes on the reader stackDavid Robillard1-1/+3
2022-01-13Replace serd_reader_set_strict() with SerdReaderFlagsDavid Robillard4-9/+12
2022-01-13Handle read errors more preciselyDavid Robillard1-1/+1
2022-01-13Split out simple reader unit testsDavid Robillard3-176/+234
2022-01-13Clean up SerdEnv testsDavid Robillard1-65/+252
2022-01-13Add serd_env_copy() and serd_env_equals()David Robillard1-0/+43
2022-01-13Make Writer always write to a ByteSinkDavid Robillard6-43/+106
2022-01-13Add empty syntax type for suppressing outputDavid Robillard3-0/+70
2022-01-13Replace SERD_WRITE_STRICT flag with SERD_WRITE_LAXDavid Robillard2-5/+5
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 Robillard2-1/+102
2022-01-13Add support for writing terse collectionsDavid Robillard8-3/+182
2022-01-13Simplify streaming API and improve pretty printingDavid Robillard4-8/+104
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 Robillard1-33/+41
2022-01-13Separate ByteSink from writerDavid Robillard1-3/+7
2022-01-13Expose SerdByteSink in public APIDavid Robillard1-0/+1
2022-01-13Simplify writer style optionsDavid Robillard2-14/+23
2022-01-13Replace multiple stream callbacks with SerdEventDavid Robillard6-41/+112
This makes plumbing easier since everything goes through the same "stream" and only one callback is required to handling everything. It's also more easily extensible in case more event types need to be added in the future.
2022-01-13Use SerdNodes to simplify some testsDavid Robillard6-99/+89
2022-01-13Cache commonly used nodes in the worldDavid Robillard1-0/+12
2022-01-13Add SerdNodes for storing a cache of interned nodesDavid Robillard3-0/+238
2022-01-13Add SerdStatementDavid Robillard5-45/+151
2022-01-13Add SerdCaretDavid Robillard6-3/+67
2022-01-13Add serd_world_get_blank()David Robillard2-0/+48
2022-01-13Remove serd_reader_set_default_graph()David Robillard1-37/+23
2022-01-13Add SerdWorld for shared library stateDavid Robillard5-21/+54
2022-01-13Clean up base64 node construction and access APIDavid Robillard1-18/+47
2022-01-13Clean up numeric node construction and access APIDavid Robillard1-65/+262
2022-01-13Add serd_new_boolean()David Robillard1-0/+22
2022-01-13Use exess for reading and writing numeric and binary literalsDavid Robillard2-47/+70
2022-01-13Clean up nodes in reader/writer testsDavid Robillard1-12/+20
2022-01-13Simplify literal construction APIDavid Robillard3-30/+45
2022-01-13Improve reader error handlingDavid Robillard2-0/+164
2022-01-13Handle writer stack overflows gracefullyDavid Robillard1-0/+56
2022-01-13Use a fixed-size reader stackDavid Robillard4-10/+17
2022-01-13Simplify reader interfaceDavid Robillard2-50/+47
2022-01-13Add SerdSink interface and hide implementationsDavid Robillard6-32/+210
2022-01-13Bring read/write interface closer to C standardDavid Robillard1-2/+3
2022-01-13Set datatypes on integer, decimal, and base64 nodesDavid Robillard1-7/+27
2022-01-13Simplify node construction APIDavid Robillard5-75/+143
2022-01-13Merge datatype/language into nodeDavid Robillard4-54/+68
This moves closer to the sord API, and is more convenient in most cases.
2022-01-13Improve URI testsDavid Robillard1-9/+29
2022-01-13Simplify URI API and implementationDavid Robillard4-42/+141
2022-01-13Make nodes opaqueDavid Robillard5-177/+182
2022-01-13Shorten node constructor namesDavid Robillard2-15/+13
2022-01-13Remove "get" from accessor namesDavid Robillard2-7/+7
2022-01-13Rename SerdStyle to SerdWriterFlagsDavid Robillard2-7/+6