aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2019-12-20Add option for writing terse output without newlinesDavid Robillard6-24/+35
2019-12-20Factor out writing top level separatorDavid Robillard1-6/+10
2019-12-20Rename SERD_STYLE_ASCII to SERD_WRITE_ASCIIDavid Robillard3-3/+3
2019-12-20Support reading lone lists in lax modeDavid Robillard1-1/+1
This allows parsing documents like "(42) ."
2019-12-20Simplify writer statement validity checkingDavid Robillard1-3/+2
2019-12-20Add clang-tidy fileDavid Robillard2-10/+34
2019-12-20Add test for serd_strerror with unknown errorsDavid Robillard1-2/+3
2019-12-20Fix reading from socket-like streams and add testDavid Robillard2-1/+66
2019-12-20Make reader tolerant of being started several timesDavid Robillard1-0/+4
2019-12-20Remove pointless switch statementDavid Robillard1-3/+1
2019-12-20Fix various warnings and conversion issuesDavid Robillard14-61/+70
2019-12-20Add serd_new_boolean()David Robillard4-0/+29
2019-12-20Remove reader status and handle errors more preciselyDavid Robillard7-43/+36
2019-12-20Add model validationDavid Robillard6-4/+926
2019-12-20Factor out test option iterator generationDavid Robillard1-5/+11
2019-12-20Add model to benchmarksDavid Robillard1-3/+4
2019-12-20Add modelDavid Robillard20-6/+3044
2019-12-19Use conventional short variable name for statusDavid Robillard1-13/+13
2019-12-19Use consistent naming for function typesDavid Robillard4-23/+23
2019-12-19Add extensible logging APIDavid Robillard8-66/+271
2019-12-19Use line comments where appropriate and clean up headerDavid Robillard1-437/+211
2019-12-19Add Env to SinkDavid Robillard9-73/+72
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.
2019-12-19Rename SerdStyle to SerdWriterFlagsDavid Robillard3-33/+33
2019-12-19Rename SerdType to SerdNodeTypeDavid Robillard5-20/+25
The old name has become ambiguous with the expanded scope of serd.
2019-12-19Clean up and expose base64 implementationDavid Robillard7-65/+188
2019-12-19Expose the node cache in the worldDavid Robillard2-0/+17
2019-12-19Remove serd_env_foreach()David Robillard3-21/+4
2019-12-19Add serd_env_write_prefixes()David Robillard2-0/+16
2019-12-19Simplify reader test sinkDavid Robillard1-28/+23
2019-12-19Add serd_node_compare()David Robillard2-0/+30
2019-12-19Add stack overflow testsDavid Robillard2-1/+72
2019-12-19Improve node test coverageDavid Robillard1-0/+6
2019-12-19Add test for bad blank graph labelsDavid Robillard2-0/+9
2019-12-19Fix writer flags typeDavid Robillard1-18/+18
2019-12-19Simplify reader stack pushing codeDavid Robillard1-8/+10
2019-12-19Ensure serd_new_resolved_uri returns an absolute URI or NULLDavid Robillard3-8/+17
2019-12-19Use simpler names for statement flagsDavid Robillard3-21/+21
2019-12-19Simplify streaming API and improve pretty printingDavid Robillard9-134/+246
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.
2019-12-19Cache commonly used nodes in the worldDavid Robillard3-14/+32
2019-12-19Add SerdNodes class for storing a cache of nodesDavid Robillard6-3/+307
2019-12-19Add serd_env_copy() and serd_env_equals()David Robillard3-0/+66
2019-12-19Separate ByteSink from WriterDavid Robillard4-17/+25
2019-12-19Expose SerdByteSink in public APIDavid Robillard5-102/+146
2019-12-19Remove serd_reader_set_default_graph()David Robillard4-34/+2
2019-12-19Add zix data structures for use in modelDavid Robillard7-0/+1621
2019-12-19Add rooted URI resolution testDavid Robillard1-1/+2
2019-12-19Add test for reading chunksDavid Robillard2-1/+115
2019-12-19Make reader return failure when no statement is readDavid Robillard2-3/+3
2019-12-19Fix warningsDavid Robillard2-4/+5
2019-12-19Simplify writer style optionsDavid Robillard6-40/+25