Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-28 | Add support for xsd:hexBinary literals | David Robillard | 1 | -2/+8 | |
2022-01-28 | Use SerdNodes instead of manual memory management in tests | David Robillard | 1 | -35/+42 | |
2022-01-28 | Consolidate number support into a single "value" API | David Robillard | 1 | -6/+9 | |
2022-01-28 | Remove datatype arguments from integer and base64 constructors | David Robillard | 1 | -21/+3 | |
2022-01-28 | Add custom allocator support | David Robillard | 1 | -46/+97 | |
2022-01-28 | Make environments and sinks part of the world | David Robillard | 1 | -62/+94 | |
Although functions/components that require minimal pre-existing state are nice, these allocate memory and could potentially share resources. So, give them a pointer to a world which can be used to configure such things. In particular, this is working towards supporting custom allocators everywhere. | |||||
2022-01-28 | Replace serdi with more fine-grained tools | David Robillard | 1 | -0/+3 | |
Especially with the new functionality, the complexity of the command-line interface alone was really becoming unmanageable. The serdi implementation also had the highest cyclomatic complexity of the entire codebase by a huge margin. So, take a page from the Unix philosophy and split serdi into several more finely-honed tools that can be freely composed. Though there is still unfortunately quite a bit of option overlap between them due to the common details of reading RDF, I think the resulting tools are a lot easier to understand, both from a user and a developer perspective. | |||||
2022-01-14 | Expose low-level node construction API | David Robillard | 1 | -15/+21 | |
2022-01-14 | Preserve long or short quoting from input documents | David Robillard | 1 | -2/+3 | |
2022-01-14 | Add serd_node_from_syntax() and serd_node_to_syntax() | David Robillard | 1 | -0/+154 | |