aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
AgeCommit message (Collapse)AuthorFilesLines
2022-01-13Split up serd_internal.hDavid Robillard1-1/+0
2022-01-13Factor out TRY macroDavid Robillard1-7/+1
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 Robillard1-15/+13
2022-01-13Add empty syntax type for suppressing outputDavid Robillard1-11/+10
2022-01-13Use a manual type-safe stack in writerDavid Robillard1-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-13Replace SERD_WRITE_STRICT flag with SERD_WRITE_LAXDavid Robillard1-4/+4
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 Robillard1-197/+278
2022-01-13Add support for writing terse collectionsDavid Robillard1-11/+24
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 Robillard1-4/+8
2022-01-13Factor out writing top level separatorDavid Robillard1-7/+10
2022-01-13Simplify streaming API and improve pretty printingDavid Robillard1-152/+232
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-2/+2
2022-01-13Separate ByteSink from writerDavid Robillard1-7/+6
2022-01-13Expose SerdByteSink in public APIDavid Robillard1-5/+4
2022-01-13Simplify writer style optionsDavid Robillard1-2/+3
2022-01-13Replace multiple stream callbacks with SerdEventDavid Robillard1-5/+21
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-13Cache commonly used nodes in the worldDavid Robillard1-9/+8
2022-01-13Add SerdStatementDavid Robillard1-6/+8
2022-01-13Add SerdField to public APIDavid Robillard1-47/+41
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-13Move error handling to worldDavid Robillard1-27/+17
2022-01-13Add SerdWorld for shared library stateDavid Robillard1-14/+6
2022-01-13Handle writer stack overflows gracefullyDavid Robillard1-7/+18
2022-01-13Add SerdSink interface and hide implementationsDavid Robillard1-5/+18
2022-01-13Bring read/write interface closer to C standardDavid Robillard1-15/+16
2022-01-13Simplify node construction APIDavid Robillard1-49/+55
2022-01-13Merge datatype/language into nodeDavid Robillard1-43/+35
This moves closer to the sord API, and is more convenient in most cases.
2022-01-13Simplify URI API and implementationDavid Robillard1-12/+13
2022-01-13Make nodes opaqueDavid Robillard1-112/+117
2022-01-13Remove "get" from accessor namesDavid Robillard1-5/+8
2022-01-13Rename function types for consistencyDavid Robillard1-4/+4
2022-01-13Rename SerdStyle to SerdWriterFlagsDavid Robillard1-24/+24
2022-01-13Rename SerdURI to SerdURIViewDavid Robillard1-13/+13
2022-01-13Rename SerdChunk to SerdStringViewDavid Robillard1-10/+5
2022-01-13Use char* for strings in public APIDavid Robillard1-36/+31
The constant casting just makes user code a mess, for no benefit.
2022-01-13Add SerdBuffer type for mutable buffersDavid Robillard1-7/+8
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks.
2022-01-13Remove support for Turtle named inline nodes extensionDavid Robillard1-30/+6
2022-01-13Remove useless character countingDavid Robillard1-4/+3
2021-06-30Avoid writing invalid prefixed name prefixesDavid Robillard1-1/+2
2021-05-31Remove "static inline" for functions in implementation filesDavid Robillard1-5/+5
This is just noise since these are static functions local to a C compilation unit.
2021-05-16Remove redundant castDavid Robillard1-1/+1
2021-04-09Write invalid characters in URIs with percent encodingDavid Robillard1-5/+9