Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-06-21 | Replace serd_reader_set_strict() with SerdReaderFlags | David Robillard | 1 | -12/+10 | |
This makes reader options extensible and should hopefully prevent the need for grafting on more similar functions in the future. | |||||
2020-06-21 | Report writer errors and add strict write mode | David Robillard | 1 | -3/+5 | |
2020-06-21 | Add support for writing terse collections | David Robillard | 1 | -1/+3 | |
2020-06-21 | Add option for writing terse output without newlines | David Robillard | 1 | -0/+1 | |
2020-06-21 | Rename SERD_STYLE_ASCII to SERD_WRITE_ASCII | David Robillard | 1 | -1/+1 | |
2020-06-21 | Add serd_new_boolean() | David Robillard | 1 | -0/+5 | |
2020-06-21 | Remove reader status and handle errors more precisely | David Robillard | 1 | -1/+2 | |
2020-06-21 | Add model validation | David Robillard | 1 | -1/+17 | |
2020-06-21 | Add model | David Robillard | 1 | -0/+422 | |
2020-06-21 | Use consistent naming for function types | David Robillard | 1 | -11/+11 | |
2020-06-21 | Add extensible logging API | David Robillard | 1 | -23/+102 | |
2020-06-21 | Use line comments where appropriate and clean up header | David Robillard | 1 | -433/+210 | |
2020-06-21 | Add Env to Sink | David Robillard | 1 | -8/+9 | |
This isn't technically necessary for any sink, but is a pattern common to every sink implementation in serd, so having it here reduces boilerplate and parameters in user code. | |||||
2020-06-21 | Rename SerdStyle to SerdWriterFlags | David Robillard | 1 | -5/+5 | |
2020-06-21 | Rename SerdType to SerdNodeType | David Robillard | 1 | -3/+3 | |
The old name has become ambiguous with the expanded scope of serd. | |||||
2020-06-21 | Clean up and expose base64 implementation | David Robillard | 1 | -4/+45 | |
2020-06-21 | Expose the node cache in the world | David Robillard | 1 | -0/+11 | |
2020-06-21 | Remove serd_env_foreach() | David Robillard | 1 | -9/+0 | |
2020-06-21 | Add serd_env_write_prefixes() | David Robillard | 1 | -0/+7 | |
2020-06-21 | Add serd_node_compare() | David Robillard | 1 | -0/+11 | |
2020-06-21 | Use simpler names for statement flags | David Robillard | 1 | -5/+5 | |
2020-06-21 | 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. | |||||
2020-06-21 | Add SerdNodes class for storing a cache of nodes | David Robillard | 1 | -0/+65 | |
2020-06-21 | Add serd_env_copy() and serd_env_equals() | David Robillard | 1 | -0/+14 | |
2020-06-21 | Separate ByteSink from Writer | David Robillard | 1 | -2/+1 | |
2020-06-21 | Expose SerdByteSink in public API | David Robillard | 1 | -0/+42 | |
2020-06-21 | Remove serd_reader_set_default_graph() | David Robillard | 1 | -12/+0 | |
2020-06-21 | Simplify writer style options | David Robillard | 1 | -5/+2 | |
2020-06-21 | Separate style enum from style flags types | David Robillard | 1 | -1/+6 | |
2020-06-21 | Automatically finish reader on destruction | David Robillard | 1 | -0/+5 | |
2020-06-21 | Make SerdSink opaque | David Robillard | 1 | -11/+52 | |
2020-06-21 | Simplify SerdEnv API | David Robillard | 1 | -24/+6 | |
2020-06-21 | Add cursor to statement | David Robillard | 1 | -0/+7 | |
This allows the file and position of statements to be used in sinks, for example for more helpful error reporting outside the parser. | |||||
2020-06-21 | Add SerdCursor to public API | David Robillard | 1 | -8/+77 | |
2020-06-21 | Remove escape parameter from serd_new_file_uri | David Robillard | 1 | -4/+3 | |
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best. | |||||
2020-06-21 | Shorten node constructor names | David Robillard | 1 | -23/+60 | |
2020-06-21 | Make statement sink take a statement rather than nodes | David Robillard | 1 | -6/+3 | |
This makes the interface more extensible, towards associating more information with statements. The serd_sink_write_nodes wrapper remains so that user code does not need to allocate in order to write statement. | |||||
2020-06-21 | Add sink interface | David Robillard | 1 | -0/+60 | |
2020-06-21 | Add SerdStatement | David Robillard | 1 | -0/+48 | |
2020-06-21 | Move syntax name/extension utilities to public API | David Robillard | 1 | -0/+35 | |
2020-06-21 | Move SerdField to public API | David Robillard | 1 | -0/+10 | |
2020-06-21 | Use a fixed-size reader stack | David Robillard | 1 | -2/+6 | |
This improves performance, and makes the reader more suitable for embedded or network-facing applications, at the cost of requiring the user to specify a maximum stack size. | |||||
2020-06-21 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 1 | -4/+20 | |
2020-06-21 | Add serd_world_get_blank() | David Robillard | 1 | -0/+10 | |
2020-06-21 | Clean up node construction API | David Robillard | 1 | -51/+52 | |
2020-06-21 | Hide fopen wrapper and use reader interface consistently | David Robillard | 1 | -11/+3 | |
2020-06-21 | Add blank node API | David Robillard | 1 | -0/+10 | |
2020-06-21 | Make serd_node_new_literal take datatype as a node | David Robillard | 1 | -1/+3 | |
2020-06-21 | Add SerdWorld for shared library state | David Robillard | 1 | -26/+45 | |
2020-06-21 | Add SerdSink interface and hide individual function implementations | David Robillard | 1 | -49/+19 | |