Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-03-08 | Add SerdNodes class for storing a cache of nodes | David Robillard | 3 | -0/+95 | |
2021-03-08 | Add serd_env_copy() and serd_env_equals() | David Robillard | 1 | -0/+23 | |
2021-03-08 | Separate ByteSink from Writer | David Robillard | 1 | -3/+7 | |
2021-03-08 | Expose SerdByteSink in public API | David Robillard | 1 | -0/+1 | |
2021-03-08 | Simplify writer style options | David Robillard | 2 | -14/+23 | |
2021-03-08 | Replace multiple stream callbacks with SerdEvent | David Robillard | 3 | -41/+53 | |
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. | |||||
2021-03-08 | Add SerdStatement | David Robillard | 2 | -20/+10 | |
2021-03-08 | Add SerdCursor | David Robillard | 5 | -2/+65 | |
2021-03-08 | Remove serd_reader_set_default_graph() | David Robillard | 1 | -36/+23 | |
2021-03-08 | Simplify SerdEnv API | David Robillard | 1 | -32/+28 | |
2021-03-08 | Add serd_world_get_blank() | David Robillard | 1 | -0/+18 | |
2021-03-08 | Move error handling to world | David Robillard | 1 | -0/+2 | |
2021-03-08 | Add SerdWorld for shared library state | David Robillard | 4 | -7/+26 | |
2021-03-08 | Clean up nodes in reader/writer tests | David Robillard | 1 | -12/+20 | |
2021-03-08 | Add numeric node construction and access API | David Robillard | 1 | -22/+191 | |
2021-03-08 | Add serd_new_boolean() | David Robillard | 1 | -0/+21 | |
2021-03-08 | Remove old floating point tests | David Robillard | 1 | -88/+0 | |
2021-03-08 | WIP: Use exess for reading and writing numeric and binary literals | David Robillard | 1 | -6/+6 | |
2021-03-08 | Simplify literal construction API | David Robillard | 2 | -26/+41 | |
2021-03-08 | Use a fixed-size reader stack | David Robillard | 4 | -6/+9 | |
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. | |||||
2021-03-07 | Simplify reader interface | David Robillard | 2 | -21/+21 | |
2021-03-07 | Add SerdSink interface and hide implementations | David Robillard | 3 | -29/+45 | |
2021-03-07 | Bring read/write interface closer to C standard | David Robillard | 1 | -5/+10 | |
2021-03-07 | Simplify reader interface | David Robillard | 2 | -32/+25 | |
2021-03-07 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 1 | -7/+27 | |
2021-03-07 | Simplify node construction API | David Robillard | 4 | -70/+112 | |
2021-03-07 | Simplify URI API and implementation | David Robillard | 3 | -42/+134 | |
2021-03-07 | Merge datatype/language into node | David Robillard | 3 | -48/+48 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2021-03-07 | Remove SERD_NOTHING node type | David Robillard | 1 | -15/+1 | |
2021-03-07 | Make nodes opaque | David Robillard | 4 | -157/+174 | |
2021-03-07 | Shorten node constructor names | David Robillard | 2 | -15/+13 | |
2021-03-07 | Remove "get" from accessor names | David Robillard | 2 | -7/+7 | |
2021-03-07 | Rename SerdStyle to SerdWriterFlags | David Robillard | 1 | -5/+4 | |
2021-03-07 | Rename SerdURI to SerdURIView | David Robillard | 1 | -9/+9 | |
2021-03-07 | Rename SerdChunk to SerdStringView | David Robillard | 1 | -2/+2 | |
2021-03-07 | Use char* for strings in public API | David Robillard | 5 | -95/+81 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2021-03-07 | Remove escape parameter from serd_node_new_file_uri | David Robillard | 1 | -10/+5 | |
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best. | |||||
2021-03-07 | Remove useless character counting | David Robillard | 2 | -17/+9 | |
2021-03-07 | Add SerdBuffer type for mutable buffers | David Robillard | 1 | -5/+5 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2021-03-07 | Remove serd_uri_to_path() | David Robillard | 1 | -41/+0 | |
2021-03-07 | WIP: Switch to Meson | David Robillard | 4 | -0/+257 | |
2021-03-07 | Factor out test suite running to a standalone script | David Robillard | 1 | -0/+380 | |
2021-02-15 | Fix writing long literals with triple quotes | David Robillard | 1 | -0/+65 | |
2021-01-02 | Use email address instead of website for attribution | David Robillard | 7 | -7/+7 | |
2020-12-31 | Format all code with clang-format | David Robillard | 7 | -614/+635 | |
2020-12-17 | Add test for attempting to convert a non-file URI to a path | David Robillard | 1 | -0/+3 | |
2020-12-15 | Suppress new clang-tidy warnings | David Robillard | 1 | -0/+3 | |
2020-11-14 | Deprecate serd_uri_to_path() | David Robillard | 1 | -0/+9 | |
2020-11-13 | Remove tests that pass null to nonnull parameters | David Robillard | 2 | -8/+4 | |
2020-11-13 | Add failure test for unescaped quotes in URIs | David Robillard | 2 | -0/+7 | |