Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2020-10-27 | Add SerdNodes class for storing a cache of nodes | David Robillard | 1 | -0/+65 | |
2020-10-27 | Add serd_env_copy() and serd_env_equals() | David Robillard | 1 | -0/+14 | |
2020-10-27 | Separate ByteSink from Writer | David Robillard | 1 | -4/+3 | |
2020-10-27 | Expose SerdByteSink in public API | David Robillard | 1 | -0/+42 | |
2020-10-27 | Remove serd_reader_set_default_graph() | David Robillard | 1 | -12/+0 | |
2020-10-27 | Simplify writer style options | David Robillard | 1 | -5/+4 | |
2020-10-27 | Separate style enum from style flags types | David Robillard | 1 | -1/+6 | |
2020-10-27 | Automatically finish reader on destruction | David Robillard | 1 | -0/+5 | |
2020-10-27 | Make SerdSink opaque | David Robillard | 1 | -11/+52 | |
2020-10-27 | Simplify SerdEnv API | David Robillard | 1 | -24/+6 | |
2020-10-27 | 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-10-27 | Add SerdCursor to public API | David Robillard | 1 | -8/+77 | |
2020-10-27 | 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-10-27 | Shorten node constructor names | David Robillard | 1 | -23/+60 | |
2020-10-27 | 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-10-27 | Add sink interface | David Robillard | 1 | -0/+60 | |
2020-10-27 | Add SerdStatement | David Robillard | 1 | -0/+48 | |
2020-10-27 | Move syntax name/extension utilities to public API | David Robillard | 1 | -0/+35 | |
2020-10-27 | Move SerdField to public API | David Robillard | 1 | -0/+10 | |
2020-10-27 | 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-10-27 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 1 | -4/+20 | |
2020-10-27 | Add serd_world_get_blank() | David Robillard | 1 | -0/+10 | |
2020-10-27 | Clean up node construction API | David Robillard | 1 | -50/+52 | |
2020-10-27 | Hide fopen wrapper and use reader interface consistently | David Robillard | 1 | -11/+3 | |
2020-10-27 | Add blank node API | David Robillard | 1 | -0/+10 | |
2020-10-27 | Make serd_node_new_literal take datatype as a node | David Robillard | 1 | -1/+3 | |
2020-10-27 | Add SerdWorld for shared library state | David Robillard | 1 | -26/+45 | |
2020-10-27 | Add SerdSink interface and hide individual function implementations | David Robillard | 1 | -49/+19 | |
2020-10-27 | Bring read/write interface closer to C standard | David Robillard | 1 | -21/+23 | |
2020-10-27 | Merge datatype and/or language into node | David Robillard | 1 | -8/+30 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2020-10-27 | Simplify reader interface | David Robillard | 1 | -37/+18 | |
2020-10-27 | Remove serd_uri_to_path() | David Robillard | 1 | -11/+0 | |
2020-10-27 | Remove SERD_NOTHING node type | David Robillard | 1 | -7/+0 | |
2020-10-27 | Make nodes opaque | David Robillard | 1 | -46/+29 | |
2020-10-27 | Add node accessor API | David Robillard | 1 | -0/+28 | |
2020-10-27 | Remove "get" from accessor names | David Robillard | 1 | -4/+3 | |
2020-10-27 | Make serd_strtod API const-correct | David Robillard | 1 | -3/+5 | |
This is an API breakage, but a minor one (particularly since NULL is allowed) that avoids the flaw in the standard C API. | |||||
2020-10-27 | Rename SerdChunk to SerdStringView | David Robillard | 1 | -13/+13 | |
2020-10-27 | Use char* for strings in public API | David Robillard | 1 | -45/+45 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2020-10-27 | Remove useless character counting | David Robillard | 1 | -5/+3 | |
2020-10-27 | Add SerdBuffer type for mutable buffers | David Robillard | 1 | -6/+14 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2020-09-27 | Update stale copyright dates | David Robillard | 1 | -1/+1 | |
2020-08-14 | Suppress Wzero-as-null-pointer-constant in header for GCC as well | David Robillard | 1 | -5/+5 | |
2020-08-14 | Reorder declarations to put node constructors together | David Robillard | 1 | -16/+16 | |
2020-07-21 | Suppress Wzero-as-null-pointer-constant in header | David Robillard | 1 | -0/+7 | |
For convenience of C++ projects that include the C header. | |||||
2019-01-05 | Remove ancient MSVC workaround for stdbool.h | David Robillard | 1 | -2/+1 | |
2018-07-22 | Add serd_free for freeing memory allocated by serd | David Robillard | 1 | -2/+13 | |
2018-06-03 | Move byte source/sink functions into their own section | David Robillard | 1 | -31/+37 | |
2018-06-03 | Fix comment typo | David Robillard | 1 | -1/+1 | |
2018-05-27 | Clarify errors returned by serd_env_expand() | David Robillard | 1 | -0/+5 | |