Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-12-02 | Clean up nodes in reader/writer tests | David Robillard | 1 | -12/+20 | |
2023-12-02 | Move syntax name/extension utilities to public API | David Robillard | 6 | -55/+158 | |
2023-12-02 | Improve reader error handling | David Robillard | 5 | -137/+320 | |
2023-12-02 | Set flags directly when reading literal nodes | David Robillard | 1 | -64/+43 | |
2023-12-02 | Add debug checks for node padding | David Robillard | 2 | -13/+37 | |
2023-12-02 | Zero node padding before passing to reader sinks | David Robillard | 5 | -2/+41 | |
2023-12-02 | Remove datatype and language from reader context | David Robillard | 2 | -40/+32 | |
2023-12-02 | Simplify stack management by popping in bulk at higher levels | David Robillard | 4 | -139/+55 | |
Since all memory used by the reader is POD in the stack, there is no benefit to forcing code to explicitly pop everything pushed to the stack, since any function can record an offset and pop back down to it regardless of what its callers pushed if it knows that it does not need those items. This is slightly more efficient (due to avoiding many pop calls), but also more resilient since "leaks" at deeper levels of recursion get nuked by some caller regardless of what was pushed. This should help prevent future regressions like f6437f606 (Fix memory consumption when reading documents). | |||||
2023-12-02 | Use a fixed-size reader stack | David Robillard | 13 | -208/+301 | |
2023-12-02 | Simplify reader interface | David Robillard | 7 | -266/+179 | |
2023-12-02 | Add SerdSink interface and hide implementations | David Robillard | 17 | -196/+480 | |
2023-12-02 | Bring read/write interface closer to the C standard | David Robillard | 16 | -105/+130 | |
2023-12-02 | Add serd_new_boolean() | David Robillard | 3 | -0/+35 | |
2023-12-02 | Simplify literal construction API | David Robillard | 5 | -70/+123 | |
2023-12-02 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 3 | -41/+111 | |
2023-12-02 | Simplify node construction API | David Robillard | 13 | -294/+365 | |
2023-12-02 | Merge datatype/language into node | David Robillard | 11 | -140/+282 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2023-12-02 | Simplify URI API and implementation | David Robillard | 12 | -377/+490 | |
2023-12-02 | Add serd_node_uri_view() | David Robillard | 3 | -5/+37 | |
2023-12-02 | Add serd_node_string_view() | David Robillard | 3 | -0/+21 | |
2023-12-02 | Align node allocations | David Robillard | 3 | -6/+46 | |
2023-12-02 | Make nodes opaque | David Robillard | 24 | -596/+651 | |
2023-12-02 | Add node accessor API | David Robillard | 2 | -0/+44 | |
2023-12-02 | Shorten node constructor names | David Robillard | 7 | -66/+67 | |
2023-12-02 | Rename string view fields | David Robillard | 7 | -77/+77 | |
2023-12-02 | Use more human-readable status codes | David Robillard | 15 | -139/+157 | |
2023-12-02 | Add version constants to public header | David Robillard | 7 | -6/+68 | |
2023-12-02 | Split up public API header | David Robillard | 47 | -977/+1554 | |
2023-12-02 | Remove "get" from accessor names | David Robillard | 6 | -18/+18 | |
2023-12-02 | Rename function types for consistency | David Robillard | 9 | -62/+62 | |
2023-12-02 | Rename SerdStyle to SerdWriterFlags | David Robillard | 5 | -60/+64 | |
2023-12-02 | Rename SerdType to SerdNodeType | David Robillard | 5 | -25/+28 | |
The old name will be even more ambiguous with the increased scope. | |||||
2023-12-02 | Rename SerdURI to SerdURIView | David Robillard | 8 | -111/+113 | |
2023-12-02 | Rename SerdChunk to SerdStringView | David Robillard | 8 | -32/+38 | |
2023-12-02 | Add SerdBuffer type for mutable buffers | David Robillard | 7 | -45/+50 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2023-12-02 | Use char* for strings in public API | David Robillard | 24 | -430/+388 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2023-12-02 | Remove support for reading Turtle named inline nodes extension | David Robillard | 9 | -61/+1 | |
2023-12-02 | Remove escape parameter from serd_node_new_file_uri | David Robillard | 4 | -34/+16 | |
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best. | |||||
2023-12-02 | Remove useless character counting | David Robillard | 11 | -101/+55 | |
2023-12-02 | Remove serd_uri_to_path() | David Robillard | 9 | -104/+11 | |
2023-12-02 | Delete trailing whitespace | David Robillard | 1 | -1/+1 | |
2023-10-22 | Serd 0.32.0v0.32.0 | David Robillard | 4 | -5/+5 | |
2023-10-06 | Tolerate reduce floating point precision on Apple Silicon | David Robillard | 1 | -2/+2 | |
This is... strange, and slightly worrying, although it's already known that this conversion code isn't exact in all cases. The next major version will fix that (and I've confirmed that these issues aren't present there), but that's a major change so, for now, just reduce the very large number in the test case slightly so that it passes on these chips as well. | |||||
2023-09-23 | Avoid use of deprecated meson string formatting with files | David Robillard | 2 | -24/+29 | |
Meson annoyingly doesn't provide access to the path of file objects (but it should). It was possible to do that by formatting a string with a file argument, but now this triggers a loud warning that claims it has always been broken and will be deprecated. So, avoid this by juggling things around and maintaining unchecked path strings instead, and hope that they're all passed to files() at some point so they can't get stale. | |||||
2023-09-23 | Explicitly specify all documentation dependencies | David Robillard | 5 | -14/+37 | |
Yet another attempt to sort out flaky documentation builds. This tries to be careful and describe the complete documentation dependency graph to meson explicitly (ignoring tool outputs that aren't used). Also remove the shared doctrees directory option, since I suspect this causes issues in parallel builds. | |||||
2023-09-22 | Suppress new warnings in clang-tidy 16 | David Robillard | 1 | -1/+2 | |
2023-09-22 | Fix documentation dependencies | David Robillard | 3 | -4/+4 | |
2023-09-22 | Fix potential realloc leaks | David Robillard | 2 | -6/+12 | |
2023-09-22 | Remove unused include | David Robillard | 1 | -1/+0 | |
2023-09-22 | Suppress new warnings in clang 16 | David Robillard | 1 | -0/+2 | |