Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-01-14 | Add extensible logging API | David Robillard | 14 | -168/+734 | |
2022-01-13 | Add SERD_READ_EXACT_BLANKS flag | David Robillard | 2 | -3/+4 | |
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 | 29 | -24/+275 | |
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 | 19 | -268/+460 | |
2022-01-13 | Add support for reading multiple files at once | David Robillard | 9 | -35/+186 | |
2022-01-13 | Add serd_canonical_path() | David Robillard | 5 | -2/+72 | |
2022-01-13 | Make serd_uri_string_length() precise and add it to public API | David Robillard | 3 | -22/+59 | |
2022-01-13 | Simplify handling of input string arguments | David Robillard | 3 | -12/+17 | |
2022-01-13 | Add input base URI option | David Robillard | 4 | -12/+35 | |
2022-01-13 | Support reading lone lists in lax mode | David Robillard | 4 | -1/+11 | |
This allows parsing documents like "(42) ." | |||||
2022-01-13 | Fix hang when skipping an error at EOF when lax parsing | David Robillard | 1 | -1/+1 | |
2022-01-13 | Fix crash when attempting to read before starting | David Robillard | 2 | -0/+7 | |
2022-01-13 | Simplify ByteSource implementation | David Robillard | 3 | -34/+20 | |
2022-01-13 | Be precise about the meaning of node "length" and "size" | David Robillard | 4 | -39/+36 | |
2022-01-13 | Align nodes on the reader stack | David Robillard | 3 | -7/+12 | |
2022-01-13 | Replace serd_reader_set_strict() with SerdReaderFlags | David Robillard | 7 | -32/+27 | |
2022-01-13 | Handle read errors more precisely | David Robillard | 6 | -27/+47 | |
2022-01-13 | Simplify reader stack pushing code | David Robillard | 1 | -6/+6 | |
2022-01-13 | Split out simple reader unit tests | David Robillard | 3 | -176/+234 | |
2022-01-13 | Use a lookup table to determine UTF-8 encoding length | David Robillard | 1 | -20/+38 | |
2022-01-13 | Clean up SerdEnv tests | David Robillard | 1 | -65/+252 | |
2022-01-13 | Split up serd_env_expand() implementation | David Robillard | 1 | -17/+35 | |
2022-01-13 | Add serd_env_copy() and serd_env_equals() | David Robillard | 3 | -0/+100 | |
2022-01-13 | Split up serd_internal.h | David Robillard | 10 | -16/+32 | |
2022-01-13 | Factor out TRY macro | David Robillard | 3 | -14/+29 | |
2022-01-13 | Reduce complexity of string writing functions | David Robillard | 1 | -78/+98 | |
2022-01-13 | Reduce complexity of URI node writing functions | David Robillard | 1 | -21/+38 | |
2022-01-13 | Reduce complexity of statement writing functions | David Robillard | 1 | -89/+212 | |
2022-01-13 | Make Writer always write to a ByteSink | David Robillard | 13 | -215/+318 | |
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 | 8 | -29/+115 | |
2022-01-13 | Use a manual type-safe stack in writer | David Robillard | 2 | -40/+28 | |
This fixes alignment issues on ARM. Since this stack is just for WriteContext which has a fixed size, using SerdStack here just made things more confusing anyway. | |||||
2022-01-13 | Replace SERD_WRITE_STRICT flag with SERD_WRITE_LAX | David Robillard | 5 | -12/+12 | |
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 | 7 | -200/+391 | |
2022-01-13 | Add support for writing terse collections | David Robillard | 11 | -15/+210 | |
2022-01-13 | Tolerate popping writer contexts with no predicate | David Robillard | 1 | -1/+2 | |
2022-01-13 | Reset writer to empty when finished to avoid spurious blank lines | David Robillard | 1 | -0/+1 | |
2022-01-13 | Pass context flags to write_sep() | David Robillard | 1 | -20/+22 | |
2022-01-13 | Add initial flags to write context | David Robillard | 1 | -21/+24 | |
2022-01-13 | Simplify internal writer context API | David Robillard | 1 | -32/+30 | |
2022-01-13 | Strengthen writer statement preconditions | David Robillard | 1 | -1/+3 | |
2022-01-13 | Add option for writing terse output without newlines | David Robillard | 5 | -27/+34 | |
2022-01-13 | Factor out writing top level separator | David Robillard | 1 | -7/+10 | |
2022-01-13 | Simplify streaming API and improve pretty printing | David Robillard | 10 | -191/+371 | |
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 | 5 | -71/+105 | |
2022-01-13 | Separate ByteSink from writer | David Robillard | 4 | -19/+28 | |
2022-01-13 | Expose SerdByteSink in public API | David Robillard | 5 | -5/+150 | |
2022-01-13 | Simplify writer style options | David Robillard | 8 | -55/+35 | |
2022-01-13 | Replace multiple stream callbacks with SerdEvent | David Robillard | 11 | -138/+228 | |
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 | |