Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-04-13 | Remove escape parameter from serd_new_file_uri | David Robillard | 4 | -16/+12 | |
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best. | |||||
2019-04-13 | Shorten node constructor names | David Robillard | 7 | -146/+174 | |
2019-04-13 | Make statement sink take a statement rather than nodes | David Robillard | 5 | -41/+34 | |
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. | |||||
2019-04-13 | Add sink interface | David Robillard | 3 | -0/+123 | |
2019-04-13 | Add SerdStatement | David Robillard | 4 | -0/+129 | |
2019-04-13 | Expand datatype of literal nodes in serd_env_expand_node | David Robillard | 1 | -0/+12 | |
2019-04-13 | Move syntax name/extension utilities to public API | David Robillard | 4 | -48/+110 | |
2019-04-13 | Move SerdField to public API | David Robillard | 2 | -46/+50 | |
2019-04-13 | Clean up reader error handling | David Robillard | 4 | -340/+377 | |
2019-04-13 | Fix UTF-8 round tripping | David Robillard | 1 | -1/+1 | |
2019-04-13 | Add debug checks for node padding | David Robillard | 1 | -8/+40 | |
2019-04-13 | Zero node padding before passing to reader sinks | David Robillard | 5 | -3/+38 | |
2019-04-13 | Remove datatype and language from reader context | David Robillard | 2 | -30/+17 | |
2019-04-13 | Simplify stack management by popping in bulk at higher levels | David Robillard | 4 | -98/+66 | |
Since all memory used by the reader is POD in the stack, there is no benefit to forcing code to explicitly pop everything pushed to the stack, since any function can record an offset and pop back down to it regardless of what its callers pushed if it knows that it does not need those items. | |||||
2019-04-13 | Use a fixed-size reader stack | David Robillard | 12 | -228/+288 | |
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. | |||||
2019-04-13 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 3 | -35/+102 | |
2019-04-13 | Add serd_world_get_blank() | David Robillard | 4 | -1/+52 | |
2019-04-13 | Avoid copying nodes when equivalent prefixes are set | David Robillard | 1 | -3/+5 | |
2019-04-13 | Separate base64 implementation | David Robillard | 5 | -82/+179 | |
2019-04-13 | Clean up node construction API | David Robillard | 9 | -261/+266 | |
2019-04-13 | Clean up includes and improve source file separation | David Robillard | 21 | -55/+99 | |
2019-04-13 | Move system utilities to separate source files | David Robillard | 13 | -47/+99 | |
2019-04-13 | Hide fopen wrapper and use reader interface consistently | David Robillard | 9 | -145/+115 | |
2019-04-13 | Add blank node API | David Robillard | 3 | -0/+34 | |
2019-04-13 | Make serd_node_new_literal take datatype as a node | David Robillard | 3 | -10/+20 | |
2019-04-13 | Move error handling to world | David Robillard | 5 | -33/+37 | |
2019-04-13 | Add SerdWorld for shared library state | David Robillard | 11 | -62/+149 | |
2019-04-13 | Add SerdSink interface and hide individual function implementations | David Robillard | 7 | -138/+95 | |
2019-04-13 | Bring read/write interface closer to C standard | David Robillard | 11 | -82/+87 | |
2019-04-13 | Clean up and separate internal headers | David Robillard | 18 | -598/+767 | |
2019-04-13 | Merge datatype and/or language into node | David Robillard | 7 | -90/+243 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2019-04-13 | Simplify reader interface | David Robillard | 5 | -137/+101 | |
2019-04-13 | Remove serd_uri_to_path() | David Robillard | 5 | -62/+8 | |
2019-04-13 | Make nodes opaque | David Robillard | 9 | -379/+439 | |
2019-04-13 | Use opaque node API | David Robillard | 5 | -58/+83 | |
2019-04-13 | Add node accessor API | David Robillard | 2 | -0/+52 | |
2019-04-13 | Make serd_strtod API const-correct | David Robillard | 7 | -11/+16 | |
This is an API breakage, but a minor one (particularly since NULL is allowed) that avoids the flaw in the C API. | |||||
2019-04-13 | Rename SerdChunk to SerdStringView | David Robillard | 7 | -28/+30 | |
2019-04-13 | Use char* for strings in public API | David Robillard | 14 | -311/+308 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2019-04-13 | Remove useless character counting | David Robillard | 10 | -90/+50 | |
2019-04-13 | Use SerdBuffer for mutable buffers | David Robillard | 7 | -32/+47 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2019-04-13 | Fix configuration summary output | David Robillard | 1 | -1/+1 | |
2019-04-02 | Remove Tk dependency from benchmark script | David Robillard | 1 | -2/+6 | |
2019-03-31 | Add documentation main page | David Robillard | 1 | -0/+15 | |
2019-03-30 | Fix parsing "a" abbreviation without padding whitespace | David Robillard | 5 | -14/+23 | |
2019-03-30 | Improve documentation | David Robillard | 7 | -244/+313 | |
2019-03-23 | Update Doxygen configuration | David Robillard | 1 | -52/+119 | |
2019-03-18 | Pass file comparison test if difflib finds no changes | David Robillard | 1 | -3/+5 | |
The Python filecmp module seems to be a bit flaky on some platforms, so with this change the test only fails if actual visible changes are printed. | |||||
2019-03-18 | Seek to end before checking the size of stderr output | David Robillard | 1 | -1/+2 | |
This fixes the error message checks in virtual environments where temporary files act weird. | |||||
2019-03-18 | Use distinct output paths for each test run | David Robillard | 1 | -2/+2 | |
Even though there is no parallelism, this seems to cause sporadic problems on Windows. Regardless, it's a good idea, since the test framework might become parallel some day. |