aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
AgeCommit message (Collapse)AuthorFilesLines
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
2020-07-06Fix spurious semicolon warningsDavid Robillard1-3/+5
2020-06-21Cleanup: Add missing default switch casesDavid Robillard1-0/+3
2020-06-21Cleanup: Fix uninitialised variablesDavid Robillard1-3/+4
2020-06-21Cleanup: Avoid declaring multiple variables on a single lineDavid Robillard1-1/+3
2020-06-21Clean up includesDavid Robillard1-1/+6
2020-04-26Fix potential passing of NULL to printfDavid Robillard1-1/+1
2019-01-05Fix unused parameter warningsDavid Robillard1-2/+1
2018-06-15Remove redundant SERD_API declarationsDavid Robillard1-14/+0
2018-06-10Remove syntax assumptions from SerdEnv implementationDavid Robillard1-1/+15