aboutsummaryrefslogtreecommitdiffstats
path: root/src/writer.c
AgeCommit message (Collapse)AuthorFilesLines
2019-01-07WIP: Fix warningsserd1-warningsDavid Robillard1-7/+7
2019-01-05Fix implicit signed conversions for writer indentDavid Robillard1-3/+3
2018-12-31Add Env to SinkDavid Robillard1-9/+10
This isn't technically necessary for any sink, but is a pattern common to every sink implementation in serd, so having it here reduces boilerplate and parameters in user code.
2018-12-31Rename SerdStyle to SerdWriterFlagsDavid Robillard1-9/+9
2018-12-31Rename SerdError to SerdMessageDavid Robillard1-19/+19
Towards more general usage for all types of logging.
2018-12-31Fix writer flags typeDavid Robillard1-18/+18
2018-12-31Use simpler names for statement flagsDavid Robillard1-12/+12
2018-12-31Simplify streaming API and improve pretty printingDavid Robillard1-108/+150
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.
2018-12-31Cache commonly used nodes in the worldDavid Robillard1-10/+8
2018-12-31Separate ByteSink from WriterDavid Robillard1-7/+6
2018-12-31Expose SerdByteSink in public APIDavid Robillard1-5/+4
2018-12-31Simplify writer style optionsDavid Robillard1-2/+2
2018-12-31Separate style enum from style flags typesDavid Robillard1-1/+1
2018-12-31Make SerdSink opaqueDavid Robillard1-0/+1
2018-12-31Simplify SerdEnv APIDavid Robillard1-4/+7
2018-12-31Make statement sink take a statement rather than nodesDavid Robillard1-6/+8
This makes the interface more extensible, towards associating more information with statements. The serd_sink_write_nodes wrapper remains so that user code does not need to allocate in order to write statement.
2018-12-31Move SerdField to public APIDavid Robillard1-46/+40
2018-12-31Use fixed size stackDavid Robillard1-1/+1
2018-12-30Clean up node construction APIDavid Robillard1-12/+7
2018-12-30Clean up includes and improve source file separationDavid Robillard1-7/+10
2018-12-30Move system utilities to separate source filesDavid Robillard1-0/+1
2018-12-30Move error handling to worldDavid Robillard1-21/+6
2018-12-30Add SerdWorld for shared library stateDavid Robillard1-11/+5
2018-12-30Add SerdSink interface and hide individual function implementationsDavid Robillard1-2/+21
2018-12-30Bring read/write interface closer to C standardDavid Robillard1-14/+13
2018-12-30Clean up and separate internal headersDavid Robillard1-0/+14
2018-12-30Merge datatype and/or language into nodeDavid Robillard1-28/+20
This moves closer to the sord API, and is more convenient in most cases.
2018-12-30Make nodes opaqueDavid Robillard1-71/+78
2018-12-30Use opaque node APIDavid Robillard1-29/+39
2018-12-30Rename SerdChunk to SerdSliceDavid Robillard1-3/+3
2018-12-30Use char* for strings in public APIDavid Robillard1-20/+20
The constant casting just makes user code a mess, for no benefit.
2018-12-30Remove useless character countingDavid Robillard1-4/+3
2018-12-30Use SerdBuffer for mutable buffersDavid Robillard1-7/+7
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks.
2018-12-30Fix 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
2018-05-27Clarify errors returned by serd_env_expand()David Robillard1-5/+5
2018-02-04Factor out syntax-specific reader implementationDavid Robillard1-8/+0
2017-11-05Factor out namespace definesDavid Robillard1-3/+0
2017-09-23Use more efficient stack allocation and growth policiesDavid Robillard1-1/+1
2017-08-29Fix writing of corrupt UTF-8David Robillard1-8/+7
2017-07-30Move parse_utf8_char to shared internal headerDavid Robillard1-20/+1
2017-07-30Cleanup: Add push_bytes function to reduce code verbosityDavid Robillard1-2/+0
2017-07-10Cleanup: Separate writer code into smaller functionsDavid Robillard1-154/+207
2017-07-10Gracefully handle applications that write corrupt UTF-8David Robillard1-7/+13
2017-07-10Factor out UTF-8 character size countingDavid Robillard1-23/+1
2017-06-30Clean up UTF-8 parsing and use CLZ if availableDavid Robillard1-27/+29
2017-06-30Cleanup: Remove unnecessary variableDavid Robillard1-4/+3
2017-06-30Fix various clang-tidy issuesDavid Robillard1-1/+1
2017-05-20Abstract more syntax specifics away from writerDavid Robillard1-7/+11