aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
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
2022-01-13Simplify writer style optionsDavid Robillard8-55/+35
2022-01-13Replace multiple stream callbacks with SerdEventDavid Robillard11-138/+228
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 Robillard5-13/+69
2022-01-13Add SerdNodes for storing a cache of interned nodesDavid Robillard8-2/+590
2022-01-13Add zix data structuresDavid Robillard8-3/+1905
2022-01-13Add SerdStatementDavid Robillard12-63/+441
2022-01-13Add SerdCaretDavid Robillard16-56/+305
2022-01-13Add SerdField to public APIDavid Robillard2-47/+55
A statement field enum was previously only used by the writer internally, but will be used in the public API (without a sentinel value) in following commits.
2022-01-13Add serd_world_get_blank()David Robillard5-2/+86
2022-01-13Remove serd_reader_set_default_graph()David Robillard4-72/+30
2022-01-13Use thread-safe strerror_r() if availableDavid Robillard4-6/+37
2022-01-13Move fopen wrapper to worldDavid Robillard5-26/+35
2022-01-13Move error handling to worldDavid Robillard5-51/+57
2022-01-13Add SerdWorld for shared library stateDavid Robillard18-105/+225
2022-01-13Clean up base64 node construction and access APIDavid Robillard6-122/+132
2022-01-13Clean up numeric node construction and access APIDavid Robillard7-91/+451
2022-01-13Add serd_new_boolean()David Robillard4-0/+35
2022-01-13Use exess for reading and writing numeric and binary literalsDavid Robillard13-368/+221
2022-01-13Clean up nodes in reader/writer testsDavid Robillard1-12/+20
2022-01-13Simplify literal construction APIDavid Robillard5-68/+122
2022-01-13Move syntax name/extension utilities to public APIDavid Robillard4-59/+117
2022-01-13Improve reader error handlingDavid Robillard5-131/+350
2022-01-13Set flags directly when reading literal nodesDavid Robillard1-61/+43
2022-01-13Add debug checks for node paddingDavid Robillard3-14/+37
2022-01-13Zero node padding before passing to reader sinksDavid Robillard5-2/+41
2022-01-13Remove datatype and language from reader contextDavid Robillard2-38/+31
2022-01-13Simplify stack management by popping in bulk at higher levelsDavid Robillard4-126/+49
Since all memory used by the reader is POD in the stack, there is no benefit to forcing code to explicitly pop everything pushed to the stack, since any function can record an offset and pop back down to it regardless of what its callers pushed if it knows that it does not need those items.
2022-01-13Handle writer stack overflows gracefullyDavid Robillard2-7/+74
2022-01-13Use a fixed-size reader stackDavid Robillard15-212/+292
2022-01-13Simplify reader interfaceDavid Robillard9-284/+190
2022-01-13Add SerdSink interface and hide implementationsDavid Robillard15-163/+500
2022-01-13Bring read/write interface closer to C standardDavid Robillard11-92/+99
2022-01-13Set datatypes on integer, decimal, and base64 nodesDavid Robillard4-38/+132
2022-01-13Simplify node construction APIDavid Robillard11-299/+395
2022-01-13Merge datatype/language into nodeDavid Robillard10-144/+273
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 Robillard13-443/+514
2022-01-13Add nullability annotations to internal node functionsDavid Robillard1-6/+7
2022-01-13Add serd_node_uri_view()David Robillard2-0/+27