aboutsummaryrefslogtreecommitdiffstats
path: root/test
AgeCommit message (Collapse)AuthorFilesLines
2021-03-08Report writer errors and add strict write modeDavid Robillard2-1/+38
2021-03-08Align node allocationsDavid Robillard1-13/+15
2021-03-08Add support for writing terse collectionsDavid Robillard8-2/+184
2021-03-08WIP: Write invalid characters in URIs with percent encodingDavid Robillard1-0/+2
2021-03-08Fix socket-like stream reading testDavid Robillard1-3/+5
2021-03-08Handle read errors more preciselyDavid Robillard1-1/+1
2021-03-08Add stack overflow testsDavid Robillard2-0/+69
2021-03-08Clean up env testDavid Robillard1-4/+4
2021-03-08Simplify streaming API and improve pretty printingDavid Robillard3-2/+98
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-08Add SerdNodes class for storing a cache of nodesDavid Robillard3-0/+95
2021-03-08Add serd_env_copy() and serd_env_equals()David Robillard1-0/+23
2021-03-08Separate ByteSink from WriterDavid Robillard1-3/+7
2021-03-08Expose SerdByteSink in public APIDavid Robillard1-0/+1
2021-03-08Simplify writer style optionsDavid Robillard2-14/+23
2021-03-08Replace multiple stream callbacks with SerdEventDavid Robillard3-41/+53
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.
2021-03-08Add SerdStatementDavid Robillard2-20/+10
2021-03-08Add SerdCursorDavid Robillard5-2/+65
2021-03-08Remove serd_reader_set_default_graph()David Robillard1-36/+23
2021-03-08Simplify SerdEnv APIDavid Robillard1-32/+28
2021-03-08Add serd_world_get_blank()David Robillard1-0/+18
2021-03-08Move error handling to worldDavid Robillard1-0/+2
2021-03-08Add SerdWorld for shared library stateDavid Robillard4-7/+26
2021-03-08Clean up nodes in reader/writer testsDavid Robillard1-12/+20
2021-03-08Add numeric node construction and access APIDavid Robillard1-22/+191
2021-03-08Add serd_new_boolean()David Robillard1-0/+21
2021-03-08Remove old floating point testsDavid Robillard1-88/+0
2021-03-08WIP: Use exess for reading and writing numeric and binary literalsDavid Robillard1-6/+6
2021-03-08Simplify literal construction APIDavid Robillard2-26/+41
2021-03-08Use a fixed-size reader stackDavid Robillard4-6/+9
This improves performance, and makes the reader more suitable for embedded or network-facing applications, at the cost of requiring the user to specify a maximum stack size.
2021-03-07Simplify reader interfaceDavid Robillard2-21/+21
2021-03-07Add SerdSink interface and hide implementationsDavid Robillard3-29/+45
2021-03-07Bring read/write interface closer to C standardDavid Robillard1-5/+10
2021-03-07Simplify reader interfaceDavid Robillard2-32/+25
2021-03-07Set datatypes on integer, decimal, and base64 nodesDavid Robillard1-7/+27
2021-03-07Simplify node construction APIDavid Robillard4-70/+112
2021-03-07Simplify URI API and implementationDavid Robillard3-42/+134
2021-03-07Merge datatype/language into nodeDavid Robillard3-48/+48
This moves closer to the sord API, and is more convenient in most cases.
2021-03-07Remove SERD_NOTHING node typeDavid Robillard1-15/+1
2021-03-07Make nodes opaqueDavid Robillard4-157/+174
2021-03-07Shorten node constructor namesDavid Robillard2-15/+13
2021-03-07Remove "get" from accessor namesDavid Robillard2-7/+7
2021-03-07Rename SerdStyle to SerdWriterFlagsDavid Robillard1-5/+4
2021-03-07Rename SerdURI to SerdURIViewDavid Robillard1-9/+9
2021-03-07Rename SerdChunk to SerdStringViewDavid Robillard1-2/+2
2021-03-07Use char* for strings in public APIDavid Robillard5-95/+81
The constant casting just makes user code a mess, for no benefit.
2021-03-07Remove escape parameter from serd_node_new_file_uriDavid Robillard1-10/+5
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best.
2021-03-07Remove useless character countingDavid Robillard2-17/+9
2021-03-07Add SerdBuffer type for mutable buffersDavid Robillard1-5/+5
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks.
2021-03-07Remove serd_uri_to_path()David Robillard1-41/+0
2021-03-07WIP: Switch to MesonDavid Robillard4-0/+257