aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2021-03-08WIP: Simplify node constructionDavid Robillard10-177/+38
2021-03-08WIP: expanderDavid Robillard1-0/+88
2021-03-08WIP: Add Python bindingsDavid Robillard12-1/+4444
2021-03-08WIP: Add C++ bindingsDavid Robillard14-0/+3385
2021-03-08WIP: Add statement filteringDavid Robillard7-3/+232
2021-03-08WIP: Test reading string EOF as chunkDavid Robillard1-1/+14
2021-03-08Add support for converting literals to canonical formDavid Robillard19-7/+499
2021-03-08Add validation to command line interfaceDavid Robillard44-70/+2363
2021-03-08Add model validationDavid Robillard6-1/+886
2021-03-08Add rerex from git@gitlab.com:drobilla/rerex 2420851David Robillard17-0/+2475
2021-03-08Add model to benchmarksDavid Robillard1-4/+6
2021-03-08Add modelDavid Robillard23-5/+3253
2021-03-08Fix various warnings and conversion issuesDavid Robillard6-26/+18
2021-03-08WIP: Add extensible logging APIDavid Robillard10-95/+367
2021-03-08Add serd_node_compare()David Robillard2-0/+37
2021-03-08Expand URIs in readerDavid Robillard11-78/+207
2021-03-08WIP: Add serd_node_from_syntax() and serd_node_to_syntax()David Robillard10-2/+322
2021-03-08Add SERD_READ_EXACT_BLANKS flagDavid 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.
2021-03-08Add support for parsing variablesDavid Robillard19-10/+192
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.
2021-03-08WIP: Make Reader always read from a ByteSourceDavid Robillard14-280/+322
2021-03-08Add support for reading multiple files at onceDavid Robillard8-31/+173
2021-03-08Simplify handling of input string argumentsDavid Robillard3-11/+14
2021-03-08Add input base URI optionDavid Robillard4-12/+35
2021-03-08WIP: Make Writer always write to a ByteSinkDavid Robillard10-158/+202
2021-03-08Fix crash when attempting to read before startingDavid Robillard2-0/+7
2021-03-08Make serd_uri_string_length() precise and add it to public APIDavid Robillard3-23/+61
2021-03-08Add serd_new_real_file_uri()David Robillard4-1/+92
2021-03-08Clean up file URI testsDavid Robillard1-9/+7
2021-03-08Use a manual type-safe stack in SerdWriterDavid Robillard1-31/+24
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.
2021-03-08Emit reader errors on stack overflows in string literalsDavid Robillard1-1/+9
2021-03-08Simplify ByteSource implementationDavid Robillard2-30/+20
2021-03-08WIP: Make serd_env_expand() always return a node if it is not relativeDavid Robillard4-41/+190
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.
2021-03-08Make it possible to allocate nodes with CURIE datatypesDavid Robillard3-7/+10
2021-03-08Remove double allocation in serd_env_set_prefix()David Robillard1-6/+7
2021-03-08Remove double allocations in serd_env_expand()David Robillard4-24/+90
2021-03-08Move local URI utility functionsDavid Robillard1-28/+28
2021-03-08Split up node expansion codeDavid Robillard1-32/+53
2021-03-08Clean up Env tests and behaviourDavid Robillard2-69/+185
2021-03-08Make const Env functions tolerant of NULLDavid Robillard3-5/+17
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.
2021-03-08Split up serd_internal.hDavid Robillard11-17/+34
2021-03-08Add empty syntax type for suppressing outputDavid Robillard7-17/+70
2021-03-08Replace serd_reader_set_strict() with SerdReaderFlagsDavid Robillard7-48/+41
This makes reader options extensible and should hopefully prevent the need for grafting on more similar functions in the future.
2021-03-08Report writer errors and add strict write modeDavid Robillard7-180/+303
2021-03-08Align node allocationsDavid Robillard7-21/+61
2021-03-08Add support for writing terse collectionsDavid Robillard11-15/+211
2021-03-08Tolerate lack of predicate when context is poppedDavid Robillard1-1/+2
2021-03-08Reset writer to empty when finished to avoid spurious blank linesDavid Robillard1-0/+1
2021-03-08Pass context flags to write_sep()David Robillard1-22/+24
2021-03-08Add initial flags to write contextDavid Robillard1-21/+24
2021-03-08Simplify internal writer context APIDavid Robillard1-31/+31