Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-28 | Simplify input stream API | David Robillard | 1 | -47/+70 | |
More or less the same rationale as the previous commit, but for reading. This makes for nice symmetry with writing, at the cost of a slightly more annoying reader interface since the source doesn't know its block size or name. | |||||
2022-01-28 | Simplify output stream API | David Robillard | 1 | -52/+49 | |
This makes the paging mechanism an internal detail once again. While it's conceptually elegant to simply have a single write interface and have the block dumper just be another implementation of that, unfortunately it is not practical. The inlining of serd_block_dumper_write() is a significant performance boost, because it avoids a non-inlinable function call of overhead per character. Compared to the SerdByteSink approach, this removes the burden and overhead of needing to dynamically allocate the structure itself. | |||||
2022-01-28 | Provide a full output stream implementation for SerdBuffer | David Robillard | 1 | -31/+46 | |
Essentially replaces serd_buffer_sink_finish() with serd_buffer_close(), which makes writing to a buffer consistent with writing to a file or anything else. | |||||
2022-01-28 | Remove SERD_NO_INLINE_OBJECTS | David Robillard | 1 | -2/+1 | |
This seems like pointless complexity now, since it's easy to just write simply ordered statements yourself. | |||||
2022-01-28 | Put rdf:type properties first when pretty-printing | David Robillard | 1 | -3/+11 | |
This is a common convention in Turtle and TriG because the special "a" syntax for rdf type as the first property looks nice, makes things easier to read, and can be useful for streaming implementations because the type of the instance is known before reading its properties. Also significantly clean up the pretty-printing implementation in the process. | |||||
2022-01-28 | Make blank node prefixing automatic | David Robillard | 1 | -25/+0 | |
Though potentially useful, I don't think the complexity cost of the old interface (both to the implementation and to the user) is worth it. A special tool to transform blank node labels (for example with regular expressions) would be a better approach to this if it's ever needed in the future. | |||||
2022-01-28 | Split SERD_READ_VERBATIM into two more precise flags | David Robillard | 1 | -11/+20 | |
Although the "verbatim" idea is nice and simple, more fine-grained control is necessary since these features (relative URI preservation and blank node label clash avoidance) are useful in different situations. | |||||
2022-01-28 | Add a reader flag to disable generated blank label avoidance | David Robillard | 1 | -0/+15 | |
2022-01-28 | Add a close function to SerdByteSink | David Robillard | 1 | -4/+8 | |
This simplifies everything by replacing special cases with a more general close function. A type is no longer stored in the structure, so the other constructors are now essentially syntactic sugar for the universal serd_byte_sink_new_function(). | |||||
2022-01-28 | Expose serd_strncasecmp in public API | David Robillard | 1 | -0/+12 | |
2022-01-28 | Preserve anonymous graph syntax in TriG | David Robillard | 1 | -6/+7 | |
2022-01-28 | Add version constants to public header | David Robillard | 1 | -0/+23 | |
2022-01-28 | Make serd_writer_set_root_uri() take a string view | David Robillard | 1 | -2/+1 | |
This is generally more convenient, and the node was just being copied anyway. | |||||
2022-01-28 | Simplify reader and writer flags | David Robillard | 1 | -9/+84 | |
2022-01-14 | Add statement filtering | David Robillard | 1 | -0/+35 | |
2022-01-14 | Add support for converting literals to canonical form | David Robillard | 1 | -0/+27 | |
2022-01-14 | Add model | David Robillard | 1 | -1/+408 | |
2022-01-14 | Avoid dynamic allocation when fetching interned nodes | David Robillard | 1 | -14/+79 | |
This is more or less a total rewrite of SerdNodes and the underlying ZixHash to make efficient use of the new node construction API. | |||||
2022-01-14 | Make StringView buffer non-nullable | David Robillard | 1 | -2/+2 | |
2022-01-14 | Expose low-level node construction API | David Robillard | 1 | -65/+322 | |
2022-01-14 | Rename serd_new_simple_node() to serd_new_token() | David Robillard | 1 | -5/+10 | |
Things get confusing without a term for this concept (which is roughly "nodes that are not annoying to construct"), so "token" it is. | |||||
2022-01-14 | Preserve long or short quoting from input documents | David Robillard | 1 | -50/+45 | |
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 | |