aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
AgeCommit message (Collapse)AuthorFilesLines
2021-03-08Pass context flags to write_sep()David Robillard1-22/+24
2021-03-08Add initial flags to write contextDavid Robillard1-21/+24
2021-03-08Simplify internal writer context APIDavid Robillard1-31/+31
2021-03-08Strengthen writer statement preconditionsDavid Robillard1-1/+3
2021-03-08Add option for writing terse output without newlinesDavid Robillard1-4/+8
2021-03-08Factor out writing top level separatorDavid Robillard1-7/+10
2021-03-08WIP: Write invalid characters in URIs with percent encodingDavid Robillard1-5/+9
2021-03-08Use simpler names for statement flagsDavid Robillard1-18/+15
2021-03-08Simplify streaming API and improve pretty printingDavid Robillard1-144/+236
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.
2021-03-08Cache commonly used nodes in the worldDavid Robillard1-9/+8
2021-03-08Separate ByteSink from WriterDavid Robillard1-7/+6
2021-03-08Expose SerdByteSink in public APIDavid Robillard1-5/+4
2021-03-08Simplify writer style optionsDavid Robillard1-2/+3
2021-03-08Avoid writing invalid prefixed name prefixesDavid Robillard1-1/+2
2021-03-08Replace 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.
2021-03-08Add SerdStatementDavid Robillard1-6/+8
2021-03-08Move SerdField to public APIDavid Robillard1-46/+40
2021-03-08Simplify SerdEnv APIDavid Robillard1-2/+2
2021-03-08Move error handling to worldDavid Robillard1-27/+16
2021-03-08Add SerdWorld for shared library stateDavid Robillard1-12/+6
2021-03-08Use a fixed-size reader stackDavid Robillard1-1/+5
This improves performance, and makes the reader more suitable for embedded or network-facing applications, at the cost of requiring the user to specify a maximum stack size.
2021-03-07Add SerdSink interface and hide implementationsDavid Robillard1-2/+21
2021-03-07Use consistent naming for function typesDavid Robillard1-4/+4
2021-03-07Bring read/write interface closer to C standardDavid Robillard1-15/+13
2021-03-07Simplify node construction APIDavid Robillard1-25/+26
2021-03-07Simplify URI API and implementationDavid Robillard1-12/+15
2021-03-07Merge datatype/language into nodeDavid Robillard1-28/+20
This moves closer to the sord API, and is more convenient in most cases.
2021-03-07Remove SERD_NOTHING node typeDavid Robillard1-3/+0
2021-03-07Make nodes opaqueDavid Robillard1-108/+114
2021-03-07Remove "get" from accessor namesDavid Robillard1-5/+8
2021-03-07Rename SerdStyle to SerdWriterFlagsDavid Robillard1-24/+24
2021-03-07Rename SerdURI to SerdURIViewDavid Robillard1-14/+14
2021-03-07Rename SerdChunk to SerdStringViewDavid Robillard1-11/+5
2021-03-07Use char* for strings in public APIDavid Robillard1-36/+30
The constant casting just makes user code a mess, for no benefit.
2021-03-07Remove useless character countingDavid Robillard1-4/+3
2021-03-07Add SerdBuffer type for mutable buffersDavid Robillard1-7/+8
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks.
2021-02-15Fix writing long literals with triple quotesDavid Robillard1-2/+10
2021-01-09Add missing pure attributesDavid Robillard1-1/+1
2021-01-02Use email address instead of website for attributionDavid Robillard1-1/+1
2020-12-31Format all code with clang-formatDavid Robillard1-751/+814
2020-12-31Avoid "else" after "break" and "return"David Robillard1-16/+31
2020-11-14Refuse to write relative URI references to NTriplesDavid Robillard1-0/+15
2020-11-14Simplify abbreviated URI writing codeDavid Robillard1-13/+14
2020-11-13Simplify writer statement validity checkingDavid Robillard1-5/+3
2020-11-13Improve add and chop prefix functions when given empty stringsDavid Robillard1-4/+5
2020-11-11Add nonnull and nullable attributes to APIDavid Robillard1-0/+1
This will warn if NULL is passed to any nonnull-annotated parameter, and is also supported by sanitizers which can check for violations at runtime. Unfortunately, it is currently only supported by clang. GCC has a similar feature in the nonnull attribute, but this has a different syntax (it's a function attribute) and is more dangerous since it is used by the optimizer to assume a null pointer is undefined behavior. This one just warns and still allows code to handle the situation gracefully, which I think is more appropriate for a library API. Note that this optimization behavior is not some unlikely edge case: switching these attributes to the GCC one will break release builds.
2020-08-16Ensure that all free methods tolerate NULLDavid Robillard1-0/+4
2020-08-14Fix incorrect separator lengthDavid Robillard1-1/+1
2020-08-14Fix Wswitch-enum warningsDavid Robillard1-6/+4
2020-08-14Clean up and separate internal headersDavid Robillard1-0/+12