Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-13 | Align nodes on the reader stack | David Robillard | 1 | -1/+3 | |
2022-01-13 | Replace serd_reader_set_strict() with SerdReaderFlags | David Robillard | 4 | -9/+12 | |
2022-01-13 | Handle read errors more precisely | David Robillard | 1 | -1/+1 | |
2022-01-13 | Split out simple reader unit tests | David Robillard | 3 | -176/+234 | |
2022-01-13 | Clean up SerdEnv tests | David Robillard | 1 | -65/+252 | |
2022-01-13 | Add serd_env_copy() and serd_env_equals() | David Robillard | 1 | -0/+43 | |
2022-01-13 | Make Writer always write to a ByteSink | David Robillard | 6 | -43/+106 | |
2022-01-13 | Add empty syntax type for suppressing output | David Robillard | 3 | -0/+70 | |
2022-01-13 | Replace SERD_WRITE_STRICT flag with SERD_WRITE_LAX | David Robillard | 2 | -5/+5 | |
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 | 2 | -1/+102 | |
2022-01-13 | Add support for writing terse collections | David Robillard | 8 | -3/+182 | |
2022-01-13 | Simplify streaming API and improve pretty printing | David Robillard | 4 | -8/+104 | |
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 | -33/+41 | |
2022-01-13 | Separate ByteSink from writer | David Robillard | 1 | -3/+7 | |
2022-01-13 | Expose SerdByteSink in public API | David Robillard | 1 | -0/+1 | |
2022-01-13 | Simplify writer style options | David Robillard | 2 | -14/+23 | |
2022-01-13 | Replace multiple stream callbacks with SerdEvent | David Robillard | 6 | -41/+112 | |
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 | Use SerdNodes to simplify some tests | David Robillard | 6 | -99/+89 | |
2022-01-13 | Cache commonly used nodes in the world | David Robillard | 1 | -0/+12 | |
2022-01-13 | Add SerdNodes for storing a cache of interned nodes | David Robillard | 3 | -0/+238 | |
2022-01-13 | Add SerdStatement | David Robillard | 5 | -45/+151 | |
2022-01-13 | Add SerdCaret | David Robillard | 6 | -3/+67 | |
2022-01-13 | Add serd_world_get_blank() | David Robillard | 2 | -0/+48 | |
2022-01-13 | Remove serd_reader_set_default_graph() | David Robillard | 1 | -37/+23 | |
2022-01-13 | Add SerdWorld for shared library state | David Robillard | 5 | -21/+54 | |
2022-01-13 | Clean up base64 node construction and access API | David Robillard | 1 | -18/+47 | |
2022-01-13 | Clean up numeric node construction and access API | David Robillard | 1 | -65/+262 | |
2022-01-13 | Add serd_new_boolean() | David Robillard | 1 | -0/+22 | |
2022-01-13 | Use exess for reading and writing numeric and binary literals | David Robillard | 2 | -47/+70 | |
2022-01-13 | Clean up nodes in reader/writer tests | David Robillard | 1 | -12/+20 | |
2022-01-13 | Simplify literal construction API | David Robillard | 3 | -30/+45 | |
2022-01-13 | Improve reader error handling | David Robillard | 2 | -0/+164 | |
2022-01-13 | Handle writer stack overflows gracefully | David Robillard | 1 | -0/+56 | |
2022-01-13 | Use a fixed-size reader stack | David Robillard | 4 | -10/+17 | |
2022-01-13 | Simplify reader interface | David Robillard | 2 | -50/+47 | |
2022-01-13 | Add SerdSink interface and hide implementations | David Robillard | 6 | -32/+210 | |
2022-01-13 | Bring read/write interface closer to C standard | David Robillard | 1 | -2/+3 | |
2022-01-13 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 1 | -7/+27 | |
2022-01-13 | Simplify node construction API | David Robillard | 5 | -75/+143 | |
2022-01-13 | Merge datatype/language into node | David Robillard | 4 | -54/+68 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2022-01-13 | Improve URI tests | David Robillard | 1 | -9/+29 | |
2022-01-13 | Simplify URI API and implementation | David Robillard | 4 | -42/+141 | |
2022-01-13 | Make nodes opaque | David Robillard | 5 | -177/+182 | |
2022-01-13 | Shorten node constructor names | David Robillard | 2 | -15/+13 | |
2022-01-13 | Remove "get" from accessor names | David Robillard | 2 | -7/+7 | |
2022-01-13 | Rename SerdStyle to SerdWriterFlags | David Robillard | 2 | -7/+6 | |
2022-01-13 | Rename SerdURI to SerdURIView | David Robillard | 1 | -9/+9 | |
2022-01-13 | Rename SerdChunk to SerdStringView | David Robillard | 1 | -2/+2 | |
2022-01-13 | Use char* for strings in public API | David Robillard | 6 | -103/+85 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2022-01-13 | Add SerdBuffer type for mutable buffers | David Robillard | 2 | -8/+8 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. |