Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-10-27 | Simplify reader interface | David Robillard | 6 | -155/+120 | |
2020-10-27 | Remove serd_uri_to_path() | David Robillard | 5 | -65/+9 | |
2020-10-27 | Remove SERD_NOTHING node type | David Robillard | 5 | -30/+1 | |
2020-10-27 | Make nodes opaque | David Robillard | 10 | -408/+464 | |
2020-10-27 | Use opaque node API | David Robillard | 4 | -55/+76 | |
2020-10-27 | Add node accessor API | David Robillard | 2 | -0/+52 | |
2020-10-27 | Remove "get" from accessor names | David Robillard | 6 | -15/+13 | |
2020-10-27 | Add support for parsing NaN, INF, and -INF | David Robillard | 2 | -4/+24 | |
2020-10-27 | Make serd_strtod API const-correct | David Robillard | 4 | -8/+12 | |
This is an API breakage, but a minor one (particularly since NULL is allowed) that avoids the flaw in the standard C API. | |||||
2020-10-27 | Rename SerdChunk to SerdStringView | David Robillard | 7 | -30/+30 | |
2020-10-27 | Use char* for strings in public API | David Robillard | 20 | -336/+321 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2020-10-27 | Remove useless character counting | David Robillard | 10 | -91/+53 | |
2020-10-27 | Add SerdBuffer type for mutable buffers | David Robillard | 7 | -32/+47 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2020-10-27 | Add a test for reading strings with no trailing newline | David Robillard | 1 | -0/+23 | |
2020-10-27 | Simplify reader byte reading interface | David Robillard | 1 | -10/+3 | |
This eliminates eat_byte() and the way it conflates the status of advancing the source with the current character, which can cause problems with custom sinks. | |||||
2020-10-27 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-10-27 | Update autowaf | David Robillard | 2 | -2/+2 | |
2020-09-27 | Serd 0.30.6v0.30.6 | David Robillard | 2 | -3/+3 | |
2020-09-27 | Update stale copyright dates | David Robillard | 5 | -5/+5 | |
2020-09-26 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-09-26 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-08-16 | Use conventional short variable name for status | David Robillard | 1 | -8/+8 | |
2020-08-16 | Ensure that all free methods tolerate NULL | David Robillard | 6 | -1/+49 | |
2020-08-16 | Move Env tests to a separate file | David Robillard | 3 | -64/+97 | |
2020-08-16 | Add test for reading chunks | David Robillard | 2 | -0/+122 | |
2020-08-16 | Fix loop index variable type | David Robillard | 1 | -5/+5 | |
2020-08-16 | Fix handling of bad syntax that ends a collection | David Robillard | 3 | -1/+9 | |
2020-08-16 | Fix EOF and null byte handling | David Robillard | 3 | -3/+12 | |
This is a bit questionable, but the null byte support is needed for streaming over a socket where some delimiter is required. This caused a bug where serdi would hang forever on corrupt files that contain a null byte. Fix this by consuming the byte, but otherwise behaving as before. | |||||
2020-08-16 | Add a test for reading from socket-like streams | David Robillard | 1 | -0/+61 | |
2020-08-15 | Clean up reader error handling | David Robillard | 5 | -315/+363 | |
2020-08-15 | Make read_String() return a status | David Robillard | 1 | -42/+47 | |
2020-08-15 | Make read_IRIREF_scheme() return a status | David Robillard | 1 | -15/+11 | |
2020-08-15 | Make r_err() return a status | David Robillard | 3 | -57/+80 | |
2020-08-15 | Make read_PrefixedName() return a status | David Robillard | 1 | -12/+17 | |
2020-08-15 | Make read_PERCENT() return a status | David Robillard | 1 | -8/+4 | |
2020-08-15 | Make read_UCHAR() and read_ECHAR() return a status | David Robillard | 1 | -21/+21 | |
2020-08-15 | Exploit push_byte return status | David Robillard | 1 | -2/+1 | |
2020-08-15 | Move prototype to a more sensible location | David Robillard | 1 | -4/+4 | |
2020-08-15 | Fix stack check C++ compatibility | David Robillard | 1 | -1/+1 | |
2020-08-15 | Harden prefixed name parsing | David Robillard | 4 | -10/+49 | |
2020-08-14 | Update autowaf | David Robillard | 1 | -0/+0 | |
2020-08-14 | Use ultra-strict warnings and Werror on Windows CI rows | David Robillard | 2 | -2/+4 | |
2020-08-14 | Factor out command wrapping for ARM emulator | David Robillard | 1 | -5/+9 | |
2020-08-14 | Factor out test option iterator generation | David Robillard | 1 | -7/+12 | |
2020-08-14 | Use one sentence per line in man page | David Robillard | 1 | -7/+5 | |
This apparently lets troff do line wrapping better in some scenarios, and is the best practice for text in revision control anyway. | |||||
2020-08-14 | Avoid use of rand() | David Robillard | 2 | -12/+3 | |
2020-08-14 | Fix incorrect separator length | David Robillard | 1 | -1/+1 | |
2020-08-14 | Avoid absurd Windows warnings about "deprecated" POSIX functions | David Robillard | 1 | -2/+2 | |
2020-08-14 | Add test for serd_strerror with unknown errors | David Robillard | 1 | -3/+6 | |
2020-08-14 | Fix Wswitch-enum warnings | David Robillard | 4 | -14/+35 | |