Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-06-21 | Replace serd_reader_set_strict() with SerdReaderFlags | David Robillard | 7 | -34/+30 | |
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 | 7 | -173/+273 | |
2020-06-21 | Fix node alignment on 32-bit ARM | David Robillard | 3 | -2/+5 | |
2020-06-21 | Make node size always 64 bits | David Robillard | 1 | -1/+2 | |
This ensures that sizeof(SerdNode) is a power of two, even on 32-bit platforms, which is required by posix_memalign. | |||||
2020-06-21 | Allocate nodes with posix_memalign when available | David Robillard | 3 | -8/+43 | |
This fixes platforms where the system malloc returns memory that is not aligned to sizeof(SerdNode) (128 bits). | |||||
2020-06-21 | Avoid absurd Windows warnings about "deprecated" POSIX functions | David Robillard | 1 | -2/+2 | |
2020-06-21 | Improve Env test coverage | David Robillard | 1 | -0/+3 | |
2020-06-21 | Add support for writing terse collections | David Robillard | 10 | -17/+209 | |
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 | 6 | -24/+35 | |
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 | 3 | -3/+3 | |
2020-06-21 | Support reading lone lists in lax mode | David Robillard | 1 | -1/+1 | |
This allows parsing documents like "(42) ." | |||||
2020-06-21 | Simplify writer statement validity checking | David Robillard | 1 | -3/+2 | |
2020-06-21 | Add test for serd_strerror with unknown errors | David Robillard | 1 | -3/+4 | |
2020-06-21 | Fix reading from socket-like streams and add test | David Robillard | 2 | -1/+66 | |
2020-06-21 | Make reader tolerant of being started several times | David Robillard | 1 | -0/+4 | |
2020-06-21 | Remove pointless switch statement | David Robillard | 1 | -3/+1 | |
2020-06-21 | Fix various warnings and conversion issues | David Robillard | 14 | -51/+59 | |
2020-06-21 | Add serd_new_boolean() | David Robillard | 4 | -0/+29 | |
2020-06-21 | Remove reader status and handle errors more precisely | David Robillard | 7 | -43/+36 | |
2020-06-21 | Add model validation | David Robillard | 6 | -4/+928 | |
2020-06-21 | Factor out test option iterator generation | David Robillard | 1 | -6/+11 | |
2020-06-21 | Add model to benchmarks | David Robillard | 1 | -3/+4 | |
2020-06-21 | Add model | David Robillard | 20 | -7/+3059 | |
2020-06-21 | Use conventional short variable name for status | David Robillard | 1 | -13/+13 | |
2020-06-21 | Use consistent naming for function types | David Robillard | 4 | -23/+23 | |
2020-06-21 | Add extensible logging API | David Robillard | 8 | -73/+280 | |
2020-06-21 | Use line comments where appropriate and clean up header | David Robillard | 1 | -433/+210 | |
2020-06-21 | Add Env to Sink | David Robillard | 9 | -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. | |||||
2020-06-21 | Rename SerdStyle to SerdWriterFlags | David Robillard | 3 | -33/+33 | |
2020-06-21 | Rename SerdType to SerdNodeType | David Robillard | 5 | -20/+25 | |
The old name has become ambiguous with the expanded scope of serd. | |||||
2020-06-21 | Clean up and expose base64 implementation | David Robillard | 7 | -65/+188 | |
2020-06-21 | Expose the node cache in the world | David Robillard | 2 | -0/+17 | |
2020-06-21 | Remove serd_env_foreach() | David Robillard | 3 | -21/+4 | |
2020-06-21 | Add serd_env_write_prefixes() | David Robillard | 2 | -0/+16 | |
2020-06-21 | Simplify reader test sink | David Robillard | 1 | -28/+23 | |
2020-06-21 | Add serd_node_compare() | David Robillard | 2 | -0/+30 | |
2020-06-21 | Add stack overflow tests | David Robillard | 2 | -1/+72 | |
2020-06-21 | Improve node test coverage | David Robillard | 1 | -0/+6 | |
2020-06-21 | Add test for bad blank graph labels | David Robillard | 2 | -0/+9 | |
2020-06-21 | Fix writer flags type | David Robillard | 1 | -18/+18 | |
2020-06-21 | Simplify reader stack pushing code | David Robillard | 1 | -8/+10 | |
2020-06-21 | Ensure serd_new_resolved_uri returns an absolute URI or NULL | David Robillard | 3 | -8/+17 | |
2020-06-21 | Use simpler names for statement flags | David Robillard | 3 | -26/+24 | |