Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-03-08 | Add support for parsing variables | David Robillard | 1 | -1/+2 | |
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. | |||||
2021-03-08 | WIP: Make Writer always write to a ByteSink | David Robillard | 1 | -0/+1 | |
2021-03-08 | Make serd_uri_string_length() precise and add it to public API | David Robillard | 1 | -22/+8 | |
2021-03-08 | Add serd_new_real_file_uri() | David Robillard | 1 | -0/+47 | |
2021-03-08 | Make it possible to allocate nodes with CURIE datatypes | David Robillard | 1 | -6/+8 | |
2021-03-08 | Remove double allocations in serd_env_expand() | David Robillard | 1 | -17/+64 | |
2021-03-08 | Move local URI utility functions | David Robillard | 1 | -28/+28 | |
2021-03-08 | Split up serd_internal.h | David Robillard | 1 | -0/+1 | |
2021-03-08 | Align node allocations | David Robillard | 1 | -4/+6 | |
2021-03-08 | Add SerdNodes class for storing a cache of nodes | David Robillard | 1 | -1/+0 | |
2021-03-08 | Add numeric node construction and access API | David Robillard | 1 | -1/+63 | |
2021-03-08 | Add serd_new_float() and serd_new_double() | David Robillard | 1 | -0/+26 | |
2021-03-08 | Add serd_new_boolean() | David Robillard | 1 | -0/+8 | |
2021-03-08 | Remove serd_node_align constant | David Robillard | 1 | -10/+8 | |
2021-03-08 | WIP: Use exess for reading and writing numeric and binary literals | David Robillard | 1 | -108/+82 | |
2021-03-08 | Simplify literal construction API | David Robillard | 1 | -37/+74 | |
2021-03-08 | Add debug checks for node padding | David Robillard | 1 | -8/+36 | |
2021-03-08 | Zero node padding before passing to reader sinks | David Robillard | 1 | -1/+29 | |
2021-03-07 | Bring read/write interface closer to C standard | David Robillard | 1 | -8/+8 | |
2021-03-07 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 1 | -28/+54 | |
2021-03-07 | Simplify node construction API | David Robillard | 1 | -65/+87 | |
2021-03-07 | Simplify URI API and implementation | David Robillard | 1 | -70/+51 | |
2021-03-07 | Add serd_node_uri_view() | David Robillard | 1 | -0/+12 | |
2021-03-07 | Add serd_node_string_view() | David Robillard | 1 | -0/+8 | |
2021-03-07 | Merge datatype/language into node | David Robillard | 1 | -17/+132 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2021-03-07 | Make nodes opaque | David Robillard | 1 | -74/+98 | |
2021-03-07 | Add node accessor API | David Robillard | 1 | -0/+24 | |
2021-03-07 | Shorten node constructor names | David Robillard | 1 | -20/+18 | |
2021-03-07 | Rename SerdType to SerdNodeType | David Robillard | 1 | -2/+2 | |
The old name will be even more ambiguous with the increased scope. | |||||
2021-03-07 | Rename SerdURI to SerdURIView | David Robillard | 1 | -15/+17 | |
2021-03-07 | Use char* for strings in public API | David Robillard | 1 | -28/+25 | |
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 | -3/+2 | |
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 | 1 | -22/+14 | |
2021-03-07 | Add SerdBuffer type for mutable buffers | David Robillard | 1 | -9/+9 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2021-01-10 | Avoid use of strcpy | David Robillard | 1 | -3/+3 | |
Again, really just skirting around warnings here, but this is faster anyway since we know what we're doing here and doing require any fine-grained null termination. | |||||
2021-01-09 | Avoid GCC warning about printed string overflow | David Robillard | 1 | -9/+14 | |
GCC seems to think there was a potential overflow here, but I don't see it. I think it just can't figure out that the printed text and the size both depend on the same variable. In any case, avoiding formatting functions here avoids the warning, and is probably faster anyway. | |||||
2021-01-09 | Avoid GCC warning about potential signed overflow | David Robillard | 1 | -1/+1 | |
2021-01-02 | Use email address instead of website for attribution | David Robillard | 1 | -1/+1 | |
2020-12-31 | Format all code with clang-format | David Robillard | 1 | -237/+256 | |
2020-08-14 | Separate base64 implementation | David Robillard | 1 | -33/+4 | |
2020-08-14 | Use SerdNodeFlags type everywhere | David Robillard | 1 | -7/+7 | |
2020-08-14 | Clean up and separate internal headers | David Robillard | 1 | -0/+3 | |
2020-07-06 | Fix spurious semicolon warnings | David Robillard | 1 | -5/+5 | |
2020-07-06 | Fix format conversion warnings | David Robillard | 1 | -1/+4 | |
2020-06-21 | Clean up includes | David Robillard | 1 | -1/+7 | |
2019-10-27 | Fix integer conversion warnings | David Robillard | 1 | -8/+8 | |
2019-01-06 | Fix serd_node_new_decimal() on Windows | David Robillard | 1 | -1/+1 | |
2019-01-05 | Use lround() instead of sketchy offset and cast | David Robillard | 1 | -1/+1 | |
2019-01-05 | Fix unsorted includes | David Robillard | 1 | -3/+2 | |
2018-09-30 | Fix calloc argument order | David Robillard | 1 | -1/+1 | |