Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-13 | Replace SERD_WRITE_STRICT flag with SERD_WRITE_LAX | David Robillard | 1 | -1/+1 | |
The unset value for flags should represent the best default, which in this case is strict parsing. Lax parsing is the riskier opt-in option. | |||||
2022-01-13 | Improve writer error handling | David Robillard | 1 | -1/+4 | |
2022-01-13 | Add support for writing terse collections | David Robillard | 1 | -1/+3 | |
2022-01-13 | Add option for writing terse output without newlines | David Robillard | 1 | -1/+2 | |
2022-01-13 | Simplify streaming API and improve pretty printing | David Robillard | 1 | -8/+5 | |
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. | |||||
2022-01-13 | Simplify SerdEnv API | David Robillard | 1 | -18/+8 | |
2022-01-13 | Separate ByteSink from writer | David Robillard | 1 | -4/+3 | |
2022-01-13 | Expose SerdByteSink in public API | David Robillard | 1 | -0/+38 | |
2022-01-13 | Simplify writer style options | David Robillard | 1 | -5/+4 | |
2022-01-13 | Replace multiple stream callbacks with SerdEvent | David Robillard | 1 | -52/+67 | |
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. | |||||
2022-01-13 | Cache commonly used nodes in the world | David Robillard | 1 | -0/+11 | |
2022-01-13 | Add SerdNodes for storing a cache of interned nodes | David Robillard | 1 | -0/+139 | |
2022-01-13 | Add SerdStatement | David Robillard | 1 | -6/+89 | |
2022-01-13 | Add SerdCaret | David Robillard | 1 | -9/+70 | |
2022-01-13 | Add SerdField to public API | David Robillard | 1 | -0/+14 | |
A statement field enum was previously only used by the writer internally, but will be used in the public API (without a sentinel value) in following commits. | |||||
2022-01-13 | Add serd_world_get_blank() | David Robillard | 1 | -0/+10 | |
2022-01-13 | Remove serd_reader_set_default_graph() | David Robillard | 1 | -12/+0 | |
2022-01-13 | Add SerdWorld for shared library state | David Robillard | 1 | -42/+62 | |
2022-01-13 | Clean up base64 node construction and access API | David Robillard | 1 | -16/+58 | |
2022-01-13 | Clean up numeric node construction and access API | David Robillard | 1 | -12/+75 | |
2022-01-13 | Add serd_new_boolean() | David Robillard | 1 | -0/+5 | |
2022-01-13 | Use exess for reading and writing numeric and binary literals | David Robillard | 1 | -29/+18 | |
2022-01-13 | Simplify literal construction API | David Robillard | 1 | -6/+15 | |
2022-01-13 | Move syntax name/extension utilities to public API | David Robillard | 1 | -8/+43 | |
2022-01-13 | Use a fixed-size reader stack | David Robillard | 1 | -3/+6 | |
2022-01-13 | Simplify reader interface | David Robillard | 1 | -48/+35 | |
2022-01-13 | Add SerdSink interface and hide implementations | David Robillard | 1 | -51/+89 | |
2022-01-13 | Bring read/write interface closer to C standard | David Robillard | 1 | -32/+33 | |
2022-01-13 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 1 | -4/+16 | |
2022-01-13 | Simplify node construction API | David Robillard | 1 | -40/+38 | |
2022-01-13 | Merge datatype/language into node | David Robillard | 1 | -15/+34 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2022-01-13 | Simplify URI API and implementation | David Robillard | 1 | -83/+93 | |
2022-01-13 | Add serd_node_uri_view() | David Robillard | 1 | -0/+15 | |
2022-01-13 | Add serd_node_string_view() | David Robillard | 1 | -0/+10 | |
2022-01-13 | Make nodes opaque | David Robillard | 1 | -66/+38 | |
2022-01-13 | Add node accessor API | David Robillard | 1 | -0/+20 | |
2022-01-13 | Shorten node constructor names | David Robillard | 1 | -22/+22 | |
2022-01-13 | Add string view construction macros | David Robillard | 1 | -1/+69 | |
2022-01-13 | Remove "get" from accessor names | David Robillard | 1 | -4/+4 | |
2022-01-13 | Rename function types for consistency | David Robillard | 1 | -22/+22 | |
2022-01-13 | Rename SerdStyle to SerdWriterFlags | David Robillard | 1 | -8/+11 | |
2022-01-13 | Rename SerdType to SerdNodeType | David Robillard | 1 | -4/+4 | |
The old name will be even more ambiguous with the increased scope. | |||||
2022-01-13 | Rename SerdURI to SerdURIView | David Robillard | 1 | -39/+39 | |
2022-01-13 | Rename SerdChunk to SerdStringView | David Robillard | 1 | -14/+19 | |
2022-01-13 | Use char* for strings in public API | David Robillard | 1 | -52/+51 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2022-01-13 | Add SerdBuffer type for mutable buffers | David Robillard | 1 | -8/+14 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2022-01-13 | Remove escape parameter from serd_node_new_file_uri | David Robillard | 1 | -5/+3 | |
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best. | |||||
2022-01-13 | Remove useless character counting | David Robillard | 1 | -5/+2 | |
2022-01-13 | Remove serd_uri_to_path() | David Robillard | 1 | -28/+0 | |
2021-06-30 | Make node qualify and expand functions tolerate a null Env | David Robillard | 1 | -3/+3 | |
This is convenient in places where you don't necessarily need an Env, since these methods will work the same as with an empty Env. |