Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-04-13 | Fix node alignment on 32-bit ARM | David Robillard | 3 | -2/+5 | |
2019-04-13 | Make node size always 64 bits | David Robillard | 1 | -1/+1 | |
This ensures that sizeof(SerdNode) is a power of two, even on 32-bit platforms, which is required by posix_memalign. | |||||
2019-04-13 | Allocate nodes with posix_memalign when available | David Robillard | 3 | -9/+43 | |
This fixes platforms where the system malloc returns memory that is not aligned to sizeof(SerdNode) (128 bits). | |||||
2019-04-13 | WIP: log | David Robillard | 5 | -31/+22 | |
2019-04-13 | Fix integer conversion warnings | David Robillard | 1 | -2/+2 | |
2019-04-13 | Avoid absurd Windows warnings about "deprecated" POSIX functions | David Robillard | 1 | -2/+2 | |
2019-04-13 | WIP: Add support for writing terse collections | David Robillard | 1 | -12/+23 | |
2019-04-13 | Tolerate lack of predicate when context is popped | David Robillard | 1 | -1/+2 | |
2019-04-13 | Reset writer to empty when finished to avoid spurious blank lines | David Robillard | 1 | -0/+1 | |
2019-04-13 | Pass context flags to write_sep() | David Robillard | 1 | -22/+24 | |
2019-04-13 | Add initial flags to write context | David Robillard | 1 | -13/+16 | |
2019-04-13 | Factor out pushing writer context | David Robillard | 1 | -29/+34 | |
2019-04-13 | Strengthen writer statement preconditions | David Robillard | 1 | -1/+3 | |
2019-04-13 | Add option for writing terse output without newlines | David Robillard | 3 | -24/+29 | |
2019-04-13 | Factor out writing top level separator | David Robillard | 1 | -6/+10 | |
2019-04-13 | Rename SERD_STYLE_ASCII to SERD_WRITE_ASCII | David Robillard | 2 | -2/+2 | |
2019-04-13 | Support reading lone lists in lax mode | David Robillard | 1 | -1/+1 | |
This allows parsing documents like "(42) ." | |||||
2019-04-13 | Simplify writer statement validity checking | David Robillard | 1 | -3/+2 | |
2019-04-13 | Fix reading from socket-like streams and add test | David Robillard | 1 | -1/+1 | |
2019-04-13 | Make reader tolerant of being started several times | David Robillard | 1 | -0/+4 | |
2019-04-13 | Remove pointless switch statement | David Robillard | 1 | -3/+1 | |
2019-04-13 | Fix MSVC warnings about integer literal conversions | David Robillard | 4 | -12/+12 | |
2019-04-13 | Fix potential use of uninitialized values | David Robillard | 1 | -6/+6 | |
2019-04-13 | Fix integer conversion warnings | David Robillard | 6 | -15/+18 | |
2019-04-13 | Remove redundant cast | David Robillard | 1 | -1/+1 | |
2019-04-13 | Fix character conversion warnings | David Robillard | 3 | -9/+12 | |
2019-04-13 | Suppress spurious floating point conversion warning | David Robillard | 2 | -10/+42 | |
This is defined by the standard to work with floating point expressions, the warning is a quirk of glibc. | |||||
2019-04-13 | Fix cast alignment warning | David Robillard | 1 | -4/+5 | |
2019-04-13 | Fix serd_stack_is_empty() const correctness | David Robillard | 1 | -1/+1 | |
2019-04-13 | Make char type functions take int like their standard counterparts | David Robillard | 2 | -7/+7 | |
This avoids conversion warnings by allowing these to be used with either signed or unsigned chars. | |||||
2019-04-13 | Fix various sign conversion warnings | David Robillard | 2 | -5/+6 | |
2019-04-13 | Fix implicit signed conversions in base64 implementation | David Robillard | 1 | -2/+2 | |
2019-04-13 | Fix implicit signed conversions for writer indent | David Robillard | 1 | -3/+3 | |
2019-04-13 | Add serd_new_boolean() | David Robillard | 1 | -0/+7 | |
2019-04-13 | Remove reader status and handle errors more precisely | David Robillard | 5 | -43/+37 | |
2019-04-13 | Add separate test suite for lax syntax tests | David Robillard | 1 | -2/+2 | |
2019-04-13 | WIP: Add validation | David Robillard | 4 | -1/+1029 | |
2019-04-13 | WIP: Add model | David Robillard | 13 | -2/+1504 | |
2019-04-13 | Use consistent naming for function types | David Robillard | 6 | -19/+19 | |
2019-04-13 | Expose and annotate logging functions | David Robillard | 2 | -2/+17 | |
2019-04-13 | Add Env to Sink | David Robillard | 5 | -54/+57 | |
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-04-13 | Rename SerdStyle to SerdWriterFlags | David Robillard | 2 | -11/+11 | |
2019-04-13 | Rename SerdType to SerdNodeType | David Robillard | 4 | -17/+22 | |
The old name has become ambiguous with the expanded scope of serd. | |||||
2019-04-13 | Clean up and expose base64 implementation | David Robillard | 3 | -55/+13 | |
2019-04-13 | Expose the node cache in the world | David Robillard | 1 | -0/+6 | |
2019-04-13 | Remove serd_env_foreach() | David Robillard | 1 | -10/+0 | |
2019-04-13 | Add serd_env_write_prefixes() | David Robillard | 1 | -0/+9 | |
2019-04-13 | Add serd_node_compare() | David Robillard | 1 | -0/+25 | |
2019-04-13 | Rename SerdError to SerdMessage | David Robillard | 6 | -44/+46 | |
Towards more general usage for all types of logging. | |||||
2019-04-13 | Fix writer flags type | David Robillard | 1 | -18/+18 | |