Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-04-13 | Fix integer conversion warnings | David Robillard | 6 | -15/+18 | |
2019-04-13 | Remove redundant cast | David Robillard | 1 | -1/+1 | |
2019-04-13 | Fix character conversion warnings | David Robillard | 3 | -9/+12 | |
2019-04-13 | Fix implicit float to double conversion warning | David Robillard | 1 | -7/+21 | |
2019-04-13 | Suppress spurious floating point conversion warning | David Robillard | 2 | -10/+42 | |
This is defined by the standard to work with floating point expressions, the warning is a quirk of glibc. | |||||
2019-04-13 | Fix cast alignment warning | David Robillard | 1 | -4/+5 | |
2019-04-13 | Fix serd_stack_is_empty() const correctness | David Robillard | 1 | -1/+1 | |
2019-04-13 | Make char type functions take int like their standard counterparts | David Robillard | 2 | -7/+7 | |
This avoids conversion warnings by allowing these to be used with either signed or unsigned chars. | |||||
2019-04-13 | Fix various sign conversion warnings | David Robillard | 3 | -8/+9 | |
2019-04-13 | Fix implicit signed conversions in base64 implementation | David Robillard | 1 | -2/+2 | |
2019-04-13 | Fix implicit signed conversions for writer indent | David Robillard | 1 | -3/+3 | |
2019-04-13 | Add serd_new_boolean() | David Robillard | 3 | -0/+25 | |
2019-04-13 | Remove reader status and handle errors more precisely | David Robillard | 7 | -45/+40 | |
2019-04-13 | Add separate test suite for lax syntax tests | David Robillard | 6 | -15/+30 | |
2019-04-13 | Add validation test suite | David Robillard | 31 | -12/+1853 | |
2019-04-13 | WIP: Add validation | David Robillard | 8 | -15/+1073 | |
2019-04-13 | Add model to benchmarks | David Robillard | 1 | -3/+4 | |
2019-04-13 | WIP: Add model | David Robillard | 20 | -9/+2941 | |
2019-04-13 | Use consistent naming for function types | David Robillard | 7 | -34/+34 | |
2019-04-13 | Expose and annotate logging functions | David Robillard | 4 | -2/+40 | |
2019-04-13 | Use line comments where appropriate and clean up header | David Robillard | 1 | -451/+222 | |
2019-04-13 | Add Env to Sink | David Robillard | 9 | -59/+71 | |
This isn't technically necessary for any sink, but is a pattern common to every sink implementation in serd, so having it here reduces boilerplate and parameters in user code. | |||||
2019-04-13 | Rename SerdStyle to SerdWriterFlags | David Robillard | 3 | -16/+16 | |
2019-04-13 | Rename SerdType to SerdNodeType | David Robillard | 5 | -19/+24 | |
The old name has become ambiguous with the expanded scope of serd. | |||||
2019-04-13 | Clean up and expose base64 implementation | David Robillard | 7 | -65/+187 | |
2019-04-13 | Expose the node cache in the world | David Robillard | 2 | -0/+17 | |
2019-04-13 | Remove serd_env_foreach() | David Robillard | 3 | -21/+4 | |
2019-04-13 | Add serd_env_write_prefixes() | David Robillard | 2 | -0/+16 | |
2019-04-13 | Simplify reader test sink | David Robillard | 1 | -13/+8 | |
2019-04-13 | Add serd_node_compare() | David Robillard | 2 | -0/+36 | |
2019-04-13 | Rename SerdError to SerdMessage | David Robillard | 7 | -58/+70 | |
Towards more general usage for all types of logging. | |||||
2019-04-13 | Add stack overflow tests | David Robillard | 2 | -1/+71 | |
2019-04-13 | Improve node test coverage | David Robillard | 1 | -0/+8 | |
2019-04-13 | Add test for bad blank graph labels | David Robillard | 2 | -0/+9 | |
2019-04-13 | Fix writer flags type | David Robillard | 1 | -18/+18 | |
2019-04-13 | Simplify reader stack pushing code | David Robillard | 1 | -14/+16 | |
2019-04-13 | Ensure serd_new_resolved_uri returns an absolute URI or NULL | David Robillard | 3 | -8/+17 | |
2019-04-13 | Use simpler names for statement flags | David Robillard | 3 | -21/+21 | |
2019-04-13 | Simplify streaming API and improve pretty printing | David Robillard | 9 | -134/+245 | |
This removes the obligation from the caller to correctly maintain flags to describe the current anonymous context, instead making the writer handle this itself as much as possible. Flags remain for the cases the writer can not infer from context: the start of anonymous subject and object nodes. | |||||
2019-04-13 | Cache commonly used nodes in the world | David Robillard | 3 | -14/+32 | |
2019-04-13 | Add SerdNodes class for storing a cache of nodes | David Robillard | 6 | -3/+309 | |
2019-04-13 | Add serd_env_copy() and serd_env_equals() | David Robillard | 3 | -0/+66 | |
2019-04-13 | Separate ByteSink from Writer | David Robillard | 4 | -17/+25 | |
2019-04-13 | Expose SerdByteSink in public API | David Robillard | 5 | -102/+146 | |
2019-04-13 | Remove serd_reader_set_default_graph() | David Robillard | 4 | -34/+2 | |
2019-04-13 | Add debug check that BTree nodes are properly sorted | David Robillard | 1 | -0/+28 | |
2019-04-13 | Add zix data structures for use in model | David Robillard | 7 | -0/+1537 | |
2019-04-13 | Add rooted URI resolution test | David Robillard | 1 | -1/+3 | |
2019-04-13 | Add test for reading chunks | David Robillard | 2 | -1/+115 | |
2019-04-13 | Make reader return failure when no statement is read | David Robillard | 1 | -1/+1 | |