Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-06-21 | Replace serd_reader_set_strict() with SerdReaderFlags | David Robillard | 1 | -3/+3 | |
This makes reader options extensible and should hopefully prevent the need for grafting on more similar functions in the future. | |||||
2020-06-21 | Report writer errors and add strict write mode | David Robillard | 1 | -167/+223 | |
2020-06-21 | Add support for writing terse collections | David Robillard | 1 | -12/+23 | |
2020-06-21 | Tolerate lack of predicate when context is popped | David Robillard | 1 | -1/+2 | |
2020-06-21 | Reset writer to empty when finished to avoid spurious blank lines | David Robillard | 1 | -0/+1 | |
2020-06-21 | Pass context flags to write_sep() | David Robillard | 1 | -22/+24 | |
2020-06-21 | Add initial flags to write context | David Robillard | 1 | -14/+22 | |
2020-06-21 | Simplify internal writer context API | David Robillard | 1 | -21/+17 | |
2020-06-21 | Strengthen writer statement preconditions | David Robillard | 1 | -1/+3 | |
2020-06-21 | Add option for writing terse output without newlines | David Robillard | 1 | -4/+8 | |
2020-06-21 | Factor out writing top level separator | David Robillard | 1 | -6/+10 | |
2020-06-21 | Rename SERD_STYLE_ASCII to SERD_WRITE_ASCII | David Robillard | 1 | -1/+1 | |
2020-06-21 | Simplify writer statement validity checking | David Robillard | 1 | -3/+2 | |
2020-06-21 | Fix various warnings and conversion issues | David Robillard | 1 | -4/+4 | |
2020-06-21 | Use consistent naming for function types | David Robillard | 1 | -4/+4 | |
2020-06-21 | Add extensible logging API | David Robillard | 1 | -10/+10 | |
2020-06-21 | Add Env to Sink | David Robillard | 1 | -38/+27 | |
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. | |||||
2020-06-21 | Rename SerdStyle to SerdWriterFlags | David Robillard | 1 | -26/+26 | |
2020-06-21 | Fix writer flags type | David Robillard | 1 | -18/+18 | |
2020-06-21 | Use simpler names for statement flags | David Robillard | 1 | -17/+15 | |
2020-06-21 | Simplify streaming API and improve pretty printing | David Robillard | 1 | -142/+211 | |
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. | |||||
2020-06-21 | Cache commonly used nodes in the world | David Robillard | 1 | -10/+8 | |
2020-06-21 | Separate ByteSink from Writer | David Robillard | 1 | -7/+6 | |
2020-06-21 | Expose SerdByteSink in public API | David Robillard | 1 | -5/+4 | |
2020-06-21 | Simplify writer style options | David Robillard | 1 | -2/+2 | |
2020-06-21 | Avoid writing invalid prefixed name prefixes | David Robillard | 1 | -1/+2 | |
2020-06-21 | Separate style enum from style flags types | David Robillard | 1 | -1/+1 | |
2020-06-21 | Make SerdSink opaque | David Robillard | 1 | -0/+1 | |
2020-06-21 | Simplify SerdEnv API | David Robillard | 1 | -4/+7 | |
2020-06-21 | Make statement sink take a statement rather than nodes | David Robillard | 1 | -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. | |||||
2020-06-21 | Move SerdField to public API | David Robillard | 1 | -46/+40 | |
2020-06-21 | Use a fixed-size reader stack | David Robillard | 1 | -1/+1 | |
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. | |||||
2020-06-21 | Clean up node construction API | David Robillard | 1 | -12/+6 | |
2020-06-21 | Move system utilities to separate source files | David Robillard | 1 | -0/+1 | |
2020-06-21 | Move error handling to world | David Robillard | 1 | -22/+7 | |
2020-06-21 | Add SerdWorld for shared library state | David Robillard | 1 | -12/+6 | |
2020-06-21 | Add SerdSink interface and hide individual function implementations | David Robillard | 1 | -2/+21 | |
2020-06-21 | Bring read/write interface closer to C standard | David Robillard | 1 | -14/+13 | |
2020-06-21 | Clean up and separate internal headers | David Robillard | 1 | -0/+13 | |
2020-06-21 | Merge datatype and/or language into node | David Robillard | 1 | -28/+20 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2020-06-21 | Make nodes opaque | David Robillard | 1 | -71/+74 | |
2020-06-21 | Use opaque node API | David Robillard | 1 | -29/+39 | |
2020-06-21 | Rename SerdChunk to SerdStringView | David Robillard | 1 | -6/+5 | |
2020-06-21 | Use char* for strings in public API | David Robillard | 1 | -27/+27 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2020-06-21 | Remove useless character counting | David Robillard | 1 | -4/+3 | |
2020-06-21 | Use SerdBuffer for mutable buffers | David Robillard | 1 | -7/+7 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2020-06-21 | Cleanup: Add missing default switch cases | David Robillard | 1 | -0/+3 | |
2020-06-21 | Cleanup: Fix uninitialised variables | David Robillard | 1 | -3/+4 | |
2020-06-21 | Cleanup: Avoid declaring multiple variables on a single line | David Robillard | 1 | -1/+3 | |
2020-06-21 | Clean up includes | David Robillard | 1 | -1/+6 | |