aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_node_syntax.c
AgeCommit message (Collapse)AuthorFilesLines
2022-01-28Add support for xsd:hexBinary literalsDavid Robillard1-2/+8
2022-01-28Use SerdNodes instead of manual memory management in testsDavid Robillard1-35/+42
2022-01-28Consolidate number support into a single "value" APIDavid Robillard1-6/+9
2022-01-28Remove datatype arguments from integer and base64 constructorsDavid Robillard1-21/+3
2022-01-28Add custom allocator supportDavid Robillard1-46/+97
2022-01-28Make environments and sinks part of the worldDavid Robillard1-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-28Replace serdi with more fine-grained toolsDavid Robillard1-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-14Expose low-level node construction APIDavid Robillard1-15/+21
2022-01-14Preserve long or short quoting from input documentsDavid Robillard1-2/+3
2022-01-14Add serd_node_from_syntax() and serd_node_to_syntax()David Robillard1-0/+154