aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
AgeCommit message (Collapse)AuthorFilesLines
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
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