Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-03-08 | Use a fixed-size reader stack | David Robillard | 14 | -206/+259 | |
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. | |||||
2021-03-07 | Simplify reader interface | David Robillard | 8 | -167/+113 | |
2021-03-07 | Add SerdSink interface and hide implementations | David Robillard | 12 | -154/+334 | |
2021-03-07 | Use consistent naming for function types | David Robillard | 8 | -55/+55 | |
2021-03-07 | Bring read/write interface closer to C standard | David Robillard | 11 | -93/+97 | |
2021-03-07 | Simplify reader interface | David Robillard | 6 | -162/+121 | |
2021-03-07 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 4 | -39/+135 | |
2021-03-07 | Simplify node construction API | David Robillard | 10 | -260/+327 | |
2021-03-07 | Simplify URI API and implementation | David Robillard | 12 | -436/+514 | |
2021-03-07 | Add serd_node_uri_view() | David Robillard | 2 | -0/+27 | |
2021-03-07 | Add serd_node_string_view() | David Robillard | 2 | -0/+18 | |
2021-03-07 | Merge datatype/language into node | David Robillard | 9 | -128/+258 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2021-03-07 | Remove SERD_NOTHING node type | David Robillard | 4 | -26/+1 | |
2021-03-07 | Make nodes opaque | David Robillard | 16 | -482/+530 | |
2021-03-07 | Add node accessor API | David Robillard | 2 | -0/+44 | |
2021-03-07 | Shorten node constructor names | David Robillard | 6 | -62/+58 | |
2021-03-07 | Add string view construction macros | David Robillard | 1 | -0/+30 | |
2021-03-07 | Remove "get" from accessor names | David Robillard | 6 | -18/+21 | |
2021-03-07 | Rename SerdStyle to SerdWriterFlags | David Robillard | 4 | -48/+50 | |
2021-03-07 | Rename SerdType to SerdNodeType | David Robillard | 5 | -21/+27 | |
The old name will be even more ambiguous with the increased scope. | |||||
2021-03-07 | Rename SerdURI to SerdURIView | David Robillard | 8 | -105/+107 | |
2021-03-07 | Rename SerdChunk to SerdStringView | David Robillard | 7 | -35/+30 | |
2021-03-07 | Use char* for strings in public API | David Robillard | 23 | -385/+344 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2021-03-07 | Remove escape parameter from serd_node_new_file_uri | David Robillard | 4 | -19/+11 | |
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best. | |||||
2021-03-07 | Remove useless character counting | David Robillard | 11 | -99/+55 | |
2021-03-07 | Add SerdBuffer type for mutable buffers | David Robillard | 8 | -38/+44 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2021-03-07 | Remove serd_uri_to_path() | David Robillard | 4 | -95/+7 | |
2021-03-07 | WIP: Switch to Meson | David Robillard | 22 | -721/+812 | |
2021-03-07 | Factor out test suite running to a standalone script | David Robillard | 2 | -199/+419 | |
2021-03-07 | dox_to_sphinx: Support computeroutput nodes with children | David Robillard | 1 | -2/+1 | |
2021-03-07 | Rewrite man page in mdoc and use mandoc to generate HTML | David Robillard | 3 | -78/+344 | |
2021-02-15 | Fix writing long literals with triple quotes | David Robillard | 5 | -4/+83 | |
2021-01-20 | Serd 0.30.10v0.30.10 | David Robillard | 3 | -4/+4 | |
2021-01-17 | Remove aligned_alloc support | David Robillard | 4 | -27/+2 | |
This causes build issues when targeting older versions of MacOS. That could be fixed, but I don't have the ability to reproduce it at the moment, and it's a problem in the build system check code which is about to be entirely replaced anyway. Since, as far as I know, this does not actually add aligned allocation support to any real system (they all support one of the other methods), just remove it for now. | |||||
2021-01-16 | Fix documentation installation directory | Guido Aulisi | 2 | -1/+3 | |
2021-01-16 | Add fallback configuration if documentation theme is unavailable | David Robillard | 2 | -27/+52 | |
2021-01-10 | Add clant configuration | David Robillard | 2 | -0/+10 | |
Older versions of include-what-you-use do not understand stdint.h for some reason, so add some local configuration for this for now. | |||||
2021-01-10 | Add missing includes | David Robillard | 1 | -0/+2 | |
2021-01-10 | Avoid use of strcpy | David Robillard | 1 | -3/+3 | |
Again, really just skirting around warnings here, but this is faster anyway since we know what we're doing here and doing require any fine-grained null termination. | |||||
2021-01-10 | Only use modern deprecated attributes on clang 7 and newer | David Robillard | 1 | -1/+1 | |
2021-01-10 | Only use nullability attributes on clang 7 and newer | David Robillard | 1 | -1/+1 | |
These have existed for longer, but the names were changed. | |||||
2021-01-09 | Fix plots in README | David Robillard | 1 | -3/+3 | |
2021-01-09 | Only define WIN32_LEAN_AND_MEAN for MSVC | David Robillard | 1 | -1/+3 | |
This avoids a warning with MinGW. | |||||
2021-01-09 | Avoid GCC warning about printed string overflow | David Robillard | 1 | -9/+14 | |
GCC seems to think there was a potential overflow here, but I don't see it. I think it just can't figure out that the printed text and the size both depend on the same variable. In any case, avoiding formatting functions here avoids the warning, and is probably faster anyway. | |||||
2021-01-09 | Avoid GCC warning about potential signed overflow | David Robillard | 1 | -1/+1 | |
2021-01-09 | Add missing pure attributes | David Robillard | 2 | -2/+2 | |
2021-01-09 | Fix fallback aligned_alloc() detection | David Robillard | 1 | -1/+1 | |
2021-01-09 | Fix SERD_DISABLE_DEPRECATED | David Robillard | 4 | -2/+12 | |
2021-01-07 | Update fallback version | David Robillard | 1 | -1/+1 | |
Oops. | |||||
2021-01-07 | Serd 0.30.8v0.30.8 | David Robillard | 2 | -3/+3 | |