Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2023-12-02 | Remove datatype arguments from integer and base64 constructors | David Robillard | 1 | -9/+11 | |
2023-12-02 | Make SerdBuffer an output stream | David Robillard | 1 | -3/+3 | |
2023-12-02 | Factor out and expose serd_write_file_uri() | David Robillard | 1 | -82/+3 | |
2023-12-02 | Use Zix attributes directly | David Robillard | 1 | -7/+7 | |
2023-12-02 | Add assertions for all non-null pointers in the public API | David Robillard | 1 | -2/+24 | |
2023-12-02 | Make serd_uri_string_length() precise and add it to public API | David Robillard | 1 | -21/+6 | |
2023-12-02 | Be precise about the meaning of node "length" and "size" | David Robillard | 1 | -28/+22 | |
2023-12-02 | Split up serd_internal.h | David Robillard | 1 | -1/+1 | |
2023-12-02 | Add serd_node_compare() | David Robillard | 1 | -0/+27 | |
2023-12-02 | Clean up base64 node construction and access API | David Robillard | 1 | -0/+29 | |
2023-12-02 | Clean up numeric node construction and access API | David Robillard | 1 | -0/+104 | |
2023-12-02 | [WIP] Use exess for reading and writing numeric and binary literals | David Robillard | 1 | -109/+77 | |
2023-12-02 | Add debug checks for node padding | David Robillard | 1 | -8/+33 | |
2023-12-02 | Zero node padding before passing to reader sinks | David Robillard | 1 | -1/+29 | |
2023-12-02 | Use a fixed-size reader stack | David Robillard | 1 | -2/+0 | |
2023-12-02 | Bring read/write interface closer to the C standard | David Robillard | 1 | -9/+12 | |
2023-12-02 | Add serd_new_boolean() | David Robillard | 1 | -0/+8 | |
2023-12-02 | Simplify literal construction API | David Robillard | 1 | -31/+61 | |
2023-12-02 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 1 | -30/+68 | |
2023-12-02 | Simplify node construction API | David Robillard | 1 | -68/+83 | |
2023-12-02 | Merge datatype/language into node | David Robillard | 1 | -5/+114 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2023-12-02 | Simplify URI API and implementation | David Robillard | 1 | -74/+48 | |
2023-12-02 | Add serd_node_uri_view() | David Robillard | 1 | -0/+12 | |
2023-12-02 | Add serd_node_string_view() | David Robillard | 1 | -0/+9 | |
2023-12-02 | Align node allocations | David Robillard | 1 | -6/+27 | |
2023-12-02 | Make nodes opaque | David Robillard | 1 | -78/+106 | |
2023-12-02 | Add node accessor API | David Robillard | 1 | -0/+24 | |
2023-12-02 | Shorten node constructor names | David Robillard | 1 | -24/+22 | |
2023-12-02 | Rename string view fields | David Robillard | 1 | -4/+4 | |
2023-12-02 | Split up public API header | David Robillard | 1 | -1/+4 | |
2023-12-02 | Rename SerdType to SerdNodeType | David Robillard | 1 | -4/+4 | |
The old name will be even more ambiguous with the increased scope. | |||||
2023-12-02 | Rename SerdURI to SerdURIView | David Robillard | 1 | -19/+19 | |
2023-12-02 | Add SerdBuffer type for mutable buffers | David Robillard | 1 | -7/+7 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. | |||||
2023-12-02 | Use char* for strings in public API | David Robillard | 1 | -32/+31 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2023-12-02 | 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. | |||||
2023-12-02 | Remove useless character counting | David Robillard | 1 | -22/+14 | |
2023-04-05 | Fix sign conversion warnings | David Robillard | 1 | -1/+1 | |
2023-04-05 | Update to clang-format 12 | David Robillard | 1 | -4/+4 | |
2022-12-20 | Avoid using ASCII grave as a quote | David Robillard | 1 | -6/+6 | |
2022-11-24 | Fix improper use of chunk sink | David Robillard | 1 | -4/+4 | |
2022-11-15 | Fix implementation-defined integer conversion | David Robillard | 1 | -1/+1 | |
2022-11-14 | Add Windows path separator support to serd_node_new_file_uri() | David Robillard | 1 | -4/+16 | |
2022-10-23 | Use uppercase integer literal suffixes | David Robillard | 1 | -2/+2 | |
2022-08-31 | Adopt REUSE machine-readable licensing standard | David Robillard | 1 | -15/+2 | |
2021-06-30 | Move local URI utility functions | David Robillard | 1 | -28/+28 | |
2021-05-31 | Make most function parameters const | David Robillard | 1 | -26/+32 | |
More const never hurts in general, but in particular this allows the compiler to make better nullability deductions, which reduces the amount of manual nullability casting required. | |||||
2021-05-31 | Remove "static inline" for functions in implementation files | David Robillard | 1 | -2/+2 | |
This is just noise since these are static functions local to a C compilation unit. | |||||
2021-05-31 | Clean up switch case comments | David Robillard | 1 | -5/+5 | |
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. |