Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-14 | Factor out serd_write_file_uri() | David Robillard | 1 | -2/+25 | |
2022-01-14 | Add serd_statement_matches() | David Robillard | 1 | -0/+14 | |
2022-01-14 | Add serd_node_compare() | David Robillard | 1 | -0/+15 | |
2022-01-14 | Add serd_node_from_syntax() and serd_node_to_syntax() | David Robillard | 1 | -0/+48 | |
2022-01-14 | Remove SERD_CURIE node datatype entirely | David Robillard | 1 | -34/+36 | |
2022-01-14 | Expand URIs in reader | David Robillard | 1 | -0/+3 | |
This expands relative and prefixed URIs in the reader on the stack, rather than passing them to the caller to be dealt with. This pushes these context-full forms to the edge of the system as much as possible to minimise the headaches they can cause. Towards having stricter guarantees about nodes and eliminating the CURIE node type altogether. | |||||
2022-01-14 | Move SerdEnv mutation from writer to reader | David Robillard | 1 | -5/+6 | |
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 | 1 | -23/+193 | |
2022-01-13 | Add SERD_READ_EXACT_BLANKS flag | David Robillard | 1 | -2/+3 | |
This allows suppressing the blank node ID clashing mechanism to read blank IDs exactly as they appear in the input, even if they match the scheme used to generate blank node IDs internally. | |||||
2022-01-13 | Add support for parsing variables | David Robillard | 1 | -3/+14 | |
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 | 1 | -35/+86 | |
2022-01-13 | Add serd_canonical_path() | David Robillard | 1 | -0/+13 | |
2022-01-13 | Make serd_uri_string_length() precise and add it to public API | David Robillard | 1 | -1/+15 | |
2022-01-13 | Replace serd_reader_set_strict() with SerdReaderFlags | David Robillard | 1 | -11/+9 | |
2022-01-13 | Handle read errors more precisely | David Robillard | 1 | -0/+1 | |
2022-01-13 | Add serd_env_copy() and serd_env_equals() | David Robillard | 1 | -0/+10 | |
2022-01-13 | Make Writer always write to a ByteSink | David Robillard | 1 | -46/+72 | |
2022-01-13 | Move I/O function prototypes to their own section | David Robillard | 1 | -4/+10 | |
2022-01-13 | Add empty syntax type for suppressing output | David Robillard | 1 | -8/+14 | |
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. |