Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-14 | Move SerdEnv mutation from writer to reader | David Robillard | 5 | -46/+40 | |
Writing having side-effects seems questionable in general, and this prepares things for expanding URIs in the reader. | |||||
2022-01-14 | Add extensible logging API | David Robillard | 2 | -0/+147 | |
2022-01-13 | Add support for parsing variables | David Robillard | 18 | -12/+150 | |
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. | |||||
2022-01-13 | Make Reader always read from a ByteSource | David Robillard | 8 | -43/+169 | |
2022-01-13 | Add support for reading multiple files at once | David Robillard | 6 | -1/+75 | |
2022-01-13 | Add serd_canonical_path() | David Robillard | 2 | -1/+30 | |
2022-01-13 | Simplify handling of input string arguments | David Robillard | 1 | -0/+1 | |
2022-01-13 | Add input base URI option | David Robillard | 2 | -6/+15 | |
2022-01-13 | Support reading lone lists in lax mode | David Robillard | 3 | -0/+10 | |
This allows parsing documents like "(42) ." | |||||
2022-01-13 | Fix crash when attempting to read before starting | David Robillard | 1 | -0/+3 | |
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. |