aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2020-10-27fixup! WIP: Generate Sphinx documentationpythonDavid Robillard1-0/+2
2020-10-27fixup! WIP: Generate Sphinx documentationDavid Robillard1-2/+2
2020-10-27fixup! WIP: Add Python bindingsDavid Robillard1-29/+46
2020-10-27fixup! WIP: Add serd_node_from_syntax() and serd_node_to_syntax()David Robillard1-3/+3
2020-10-27fixup! WIP: Add Python bindingsDavid Robillard1-1/+1
2020-10-27fixup! WIP: Improve documentationDavid Robillard1-1/+1
2020-10-27fixup! WIP: Add Python bindingsDavid Robillard2-58/+56
2020-10-27fixup! WIP: Generate Sphinx documentationDavid Robillard1-0/+4
2020-10-27fixup! WIP: Add Python bindingsDavid Robillard2-27/+104
2020-10-27fixup! WIP: Generate Sphinx documentationDavid Robillard1-8/+14
2020-10-27Fix release buildDavid Robillard1-0/+3
2020-10-27WIP: expanderDavid Robillard1-0/+91
2020-10-27WIP: Generate Sphinx documentationDavid Robillard7-0/+907
2020-10-27WIP: Improve documentationDavid Robillard1-38/+58
2020-10-27Suppress warnings from some compilersDavid Robillard1-0/+13
2020-10-27WIP: Improve writer performanceDavid Robillard1-10/+12
2020-10-27WIP: Add Python bindingsDavid Robillard4-6/+3338
2020-10-27WIP: Simply reader byte reader interfaceDavid Robillard1-9/+0
2020-10-27WIP: Test reading string EOF as chunkDavid Robillard1-1/+14
2020-10-27WIP: Add C++ bindingsDavid Robillard10-9/+3244
2020-10-27WIP: Add serd_node_from_syntax() and serd_node_to_syntax()David Robillard7-2/+319
2020-10-27Add SERD_READ_EXACT_BLANKS flagsDavid Robillard2-3/+4
This allows suppressing the blank node ID clashing mechanism to read blank IDs exactly as they appear in the input, even if they match the scheme used to generate blank node IDs internally.
2020-10-27WIP: Make Reader always read from a ByteSourceDavid Robillard12-248/+309
2020-10-27WIP: Make Writer always write to a ByteSinkDavid Robillard10-183/+232
2020-10-27Fix crash when attempting to read before startingDavid Robillard2-0/+7
2020-10-27Refuse to write relative URIRefs to NTriplesDavid Robillard2-1/+17
2020-10-27Simplify abbreviated URI writing codeDavid Robillard1-15/+17
2020-10-27WIP: Get base URI from single input path if possibleDavid Robillard1-2/+43
2020-10-27Use a manual type-safe stack in SerdWriterDavid Robillard2-29/+27
This fixes alignment issues on ARM. Since this stack is just for WriteContext which has a fixed size, using SerdStack here just made things more confusing anyway.
2020-10-27Emit reader errors on stack overflows in string literalsDavid Robillard1-1/+9
2020-10-27Simplify ByteSource implementationDavid Robillard2-32/+27
2020-10-27WIP: Add statement filteringDavid Robillard4-0/+196
2020-10-27Add support for parsing variablesDavid Robillard19-14/+186
This adds a reader flag and serdi option for extending a syntax with support for SPARQL-like variables, for storing things like patterns or simple queries.
2020-10-27Fix crash when expanding empty URI prefixesDavid Robillard1-1/+1
2020-10-27Fix memory leak in writer when caller doesn't clean up the stackDavid Robillard1-0/+5
2020-10-27Avoid use of ctype.h macros entirelyDavid Robillard2-4/+15
Some of these cause warnings, and should never have been used in the first place since they depend on locale.
2020-10-27Improve writer packingDavid Robillard1-1/+1
2020-10-27Normalise away rdf:langString datatypeDavid Robillard3-0/+5
Depending on how you read the specifications, a rdf:langString isn't identical to an xsd:string, but an rdf:langString must have a non-empty language tag so having this datatype doesn't really make any sense anyway.
2020-10-27Add support for basic literal normalisationDavid Robillard10-5/+483
2020-10-27Make serd_env_expand() always return a node if it is not relativeDavid Robillard3-46/+176
The old interface was potentially faster, because it avoided unnecessary copies, but was annoying to use and problematic because nodes that don't need expansion were indistinguishable from nodes that failed to expand (like those that use undefined namespace prefixes). In the grand scheme of things, the potential performance improvement isn't worth it, and unexpected unexpanded nodes causes deep nightmarish problems, so just make serd_env_expand() copy the input if it doesn't need expansion to make the API simpler and safer.
2020-10-27Make it possible to allocate nodes with CURIE datatypesDavid Robillard3-9/+15
2020-10-27Remove double allocation in serd_env_set_prefix()David Robillard1-9/+5
2020-10-27Remove double allocations in serd_env_expand()David Robillard3-33/+116
2020-10-27Move local URI utility functionsDavid Robillard1-26/+26
2020-10-27Split up node expansion codeDavid Robillard1-30/+53
2020-10-27Clean up Env tests and behaviourDavid Robillard2-78/+188
2020-10-27Make const Env functions tolerant of NULLDavid Robillard2-1/+13
This is convenient in places where you don't necessarily need an Env, since in this case these methods work the same as if with an empty Env.
2020-10-27Allow setting the base URI of an Env to NULLDavid Robillard1-1/+5
2020-10-27Replace multiple stream callbacks with SerdEventDavid Robillard9-104/+194
This makes plumbing easier since everything goes through the same "stream" and only one callback is required to handling everything. It's also more easily extensible in case more event types need to be added in the future.
2020-10-27Remove old floating point testsDavid Robillard1-96/+0