aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
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
2021-03-08Strengthen writer statement preconditionsDavid Robillard1-1/+3
2021-03-08Add option for writing terse output without newlinesDavid Robillard5-27/+34
2021-03-08Factor out writing top level separatorDavid Robillard1-7/+10
2021-03-08Support reading lone lists in lax modeDavid Robillard1-1/+1
This allows parsing documents like "(42) ."
2021-03-08WIP: Fix reading from socket-like streamsDavid Robillard1-0/+1
2021-03-08Make reader tolerant of being started several timesDavid Robillard1-0/+4
2021-03-08WIP: Write invalid characters in URIs with percent encodingDavid Robillard2-5/+11
2021-03-08Fix socket-like stream reading testDavid Robillard1-3/+5
2021-03-08Handle read errors more preciselyDavid Robillard5-29/+24
2021-03-08Add stack overflow testsDavid Robillard2-0/+69
2021-03-08Simplify reader stack pushing codeDavid Robillard1-6/+6
2021-03-08Clean up env testDavid Robillard1-4/+4
2021-03-08Use simpler names for statement flagsDavid Robillard3-27/+24
2021-03-08Simplify streaming API and improve pretty printingDavid Robillard9-174/+374
This removes the obligation from the caller to correctly maintain flags to describe the current anonymous context, instead making the writer handle this itself as much as possible. Flags remain for the cases the writer can not infer from context: the start of anonymous subject and object nodes.
2021-03-08WIP: Leave statement cursor at the start of literalsDavid Robillard1-1/+11
2021-03-08Cache commonly used nodes in the worldDavid Robillard4-15/+58
2021-03-08Add SerdNodes class for storing a cache of nodesDavid Robillard8-2/+305
2021-03-08Add zix data structuresDavid Robillard9-1/+1839
2021-03-08Add serd_env_copy() and serd_env_equals()David Robillard3-0/+75