aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2022-01-28Add FreeBSD row to CIserd1David Robillard1-0/+15
2022-01-28WIP: make end always return an allocated cursorDavid Robillard1-3/+1
2022-01-28[WIP] Build a Python packageDavid Robillard4-6/+108
2022-01-28[WIP] Add Python bindingsDavid Robillard14-1/+4561
2022-01-28WIP: dox_to_sphinx.py: Improve C++ supportDavid Robillard1-27/+123
2022-01-28[WIP] Add C++ bindingsDavid Robillard33-1/+5853
2022-01-28Update dox_to_sphinx.pyDavid Robillard1-4/+9
2022-01-28Add high-level documentationDavid Robillard27-29/+2713
2022-01-28Remove fill from logoDavid Robillard1-17/+9
2022-01-28Improve API reference documentationDavid Robillard1-31/+65
2022-01-28Fix code whitespace in HTML man pagesDavid Robillard1-0/+1
2022-01-28Isolate man pages and build HTML versions with mandoc if possibleDavid Robillard8-6/+43
The HTML versions are mainly useful for generating the online documentation as part of a CI pipeline. They are installed anyway, which is redundant for systems with a man page reader, but handy elsewhere.
2022-01-28WIPDavid Robillard2-5/+36
2022-01-28[WIP] Add validationDavid Robillard84-22/+9103
2022-01-28Add rerex subprojectDavid Robillard5-5/+15
2022-01-28[TESTED] Use a custom allocator to simplify SerdNodes implementationDavid Robillard1-129/+137
Also reduces the amount of code duplication in general, since the "measure with the constructor then allocate and actually construct" pattern (more or less) only needs to be implemented for a given node type in one place.
2022-01-28Add support for xsd:hexBinary literalsDavid Robillard5-57/+268
2022-01-28Add serd_nodes_file_uri()David Robillard3-4/+44
2022-01-28Use SerdNodes instead of manual memory management in testsDavid Robillard6-92/+132
2022-01-28Expose serd_nodes_token()David Robillard2-1/+22
2022-01-28Consolidate number support into a single "value" APIDavid Robillard10-422/+685
2022-01-28Remove datatype arguments from integer and base64 constructorsDavid Robillard7-123/+50
2022-01-28Add custom allocator supportDavid Robillard62-915/+2729
2022-01-28Update zix and make it a proper subprojectDavid Robillard15-2357/+33
2022-01-28Make environments and sinks part of the worldDavid Robillard21-179/+299
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-28Fix handling of deferred write errors that happen when closingDavid Robillard10-30/+77
2022-01-28Use simpler names for I/O function typesDavid Robillard5-46/+46
2022-01-28Use more human-readable status codesDavid Robillard35-247/+246
2022-01-28Add "contextual" output optionDavid Robillard10-4/+83
This is mainly for developer or power-user cases, where one wants to look at some data for investigation or debugging. In such cases, it's common for the set of prefixes to be implicitly known (because they are baked in to the application, for example), so printing them just produces a large amount of redundant noise. That said, it can also be useful programmatically, because it allows several snippets to be written independently and ultimately concatenated (with a header to define the prefixes) without redundancy.
2022-01-28Simplify input stream APIDavid Robillard20-382/+422
More or less the same rationale as the previous commit, but for reading. This makes for nice symmetry with writing, at the cost of a slightly more annoying reader interface since the source doesn't know its block size or name.
2022-01-28Simplify output stream APIDavid Robillard23-409/+449
This makes the paging mechanism an internal detail once again. While it's conceptually elegant to simply have a single write interface and have the block dumper just be another implementation of that, unfortunately it is not practical. The inlining of serd_block_dumper_write() is a significant performance boost, because it avoids a non-inlinable function call of overhead per character. Compared to the SerdByteSink approach, this removes the burden and overhead of needing to dynamically allocate the structure itself.
2022-01-28Provide a full output stream implementation for SerdBufferDavid Robillard11-79/+120
Essentially replaces serd_buffer_sink_finish() with serd_buffer_close(), which makes writing to a buffer consistent with writing to a file or anything else.
2022-01-28Build with C11 on CIDavid Robillard1-13/+13
Since this is not the default (because that would break the default build for some older systems), distributions and users are likely covering the C99 case heavily, so this is the best way to ensure that both are covered well.
2022-01-28Remove SERD_NO_INLINE_OBJECTSDavid Robillard3-22/+13
This seems like pointless complexity now, since it's easy to just write simply ordered statements yourself.
2022-01-28Put rdf:type properties first when pretty-printingDavid Robillard21-91/+214
This is a common convention in Turtle and TriG because the special "a" syntax for rdf type as the first property looks nice, makes things easier to read, and can be useful for streaming implementations because the type of the instance is known before reading its properties. Also significantly clean up the pretty-printing implementation in the process.
2022-01-28Fix TriG graph indentationDavid Robillard4-9/+37
2022-01-28Ensure that indentation is always reset with the writer contextDavid Robillard1-3/+1
2022-01-28Fix pretty-printing nested empty lists and add test suiteDavid Robillard28-202/+446
The earlier "test" was just hitting the code without actually checking the output. This new suite is a set of pretty-printed documents which serd must reproduce from a model exactly to pass. This should make it easy to add cases in the future, since each case is just a document, as it should look.
2022-01-28Make tools read stdin by defaultDavid Robillard6-32/+15
2022-01-28Replace serdi with more fine-grained toolsDavid Robillard64-1132/+3228
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-28Make blank node prefixing automaticDavid Robillard12-153/+27
Though potentially useful, I don't think the complexity cost of the old interface (both to the implementation and to the user) is worth it. A special tool to transform blank node labels (for example with regular expressions) would be a better approach to this if it's ever needed in the future.
2022-01-28Split SERD_READ_VERBATIM into two more precise flagsDavid Robillard4-14/+24
Although the "verbatim" idea is nice and simple, more fine-grained control is necessary since these features (relative URI preservation and blank node label clash avoidance) are useful in different situations.
2022-01-28Add a reader flag to disable generated blank label avoidanceDavid Robillard4-4/+27
2022-01-28Write test outputs to a temporary directoryDavid Robillard2-44/+36
While occasionally useful, I almost always end up reproducing the issue live to investigate something anyway. Not keeping the many tests results around results in less clutter, and hopefully makes the test suites faster in environments with bad I/O like Docker.
2022-01-28Split up test suite build definitionsDavid Robillard12-87/+166
2022-01-28Factor out serd_choose_input_syntax()David Robillard4-13/+40
2022-01-28Add a close function to SerdByteSinkDavid Robillard10-81/+90
This simplifies everything by replacing special cases with a more general close function. A type is no longer stored in the structure, so the other constructors are now essentially syntactic sugar for the universal serd_byte_sink_new_function().
2022-01-28Collapse input and output options into a single flagDavid Robillard6-60/+168
2022-01-28Expose serd_strncasecmp in public APIDavid Robillard4-15/+28
2022-01-28Simplify command line usage printingDavid Robillard1-24/+27