Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2018-11-25 | Remove serd_reader_set_default_graph | David Robillard | 2 | -13/+0 | |
This is easily handled by the sink. In particular, the inserter already contains this functionality. | |||||
2018-11-25 | Add debug check that BTree nodes are properly sorted | David Robillard | 1 | -0/+26 | |
2018-11-25 | Add zix data structures for use in model | David Robillard | 7 | -0/+1453 | |
2018-11-25 | Make reader return failure when no statement is read | David Robillard | 1 | -1/+1 | |
2018-11-25 | Fix warnings | David Robillard | 3 | -7/+9 | |
2018-11-25 | Simplify writer style options | David Robillard | 2 | -25/+4 | |
2018-11-25 | Separate style enum from style flags types | David Robillard | 2 | -3/+3 | |
2018-11-25 | Automatically finish reader on destruction | David Robillard | 1 | -0/+1 | |
2018-11-25 | Make SerdSink opaque | David Robillard | 5 | -6/+90 | |
2018-11-25 | Simplify SerdEnv API | David Robillard | 3 | -33/+82 | |
2018-11-25 | Add cursor to statement | David Robillard | 4 | -3/+12 | |
This allows the file and position of statements to be used in sinks, for example for more helpful error reporting outside the parser. | |||||
2018-11-25 | Add SerdCursor to public API | David Robillard | 7 | -29/+113 | |
2018-11-25 | Remove escape parameter from serd_new_file_uri | David Robillard | 2 | -3/+3 | |
Since characters are escaped because they are not valid characters in a URI, any use of this function without escaping is problematic at best. | |||||
2018-11-25 | Shorten node constructor names | David Robillard | 5 | -74/+87 | |
2018-11-25 | Make statement sink take a statement rather than nodes | David Robillard | 3 | -16/+19 | |
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. | |||||
2018-11-25 | Add sink interface | David Robillard | 1 | -0/+62 | |
2018-11-25 | Add SerdStatement | David Robillard | 2 | -0/+80 | |
2018-11-25 | Expand datatype of literal nodes in serd_env_expand_node | David Robillard | 1 | -0/+12 | |
2018-11-25 | Move syntax name/extension utilities to public API | David Robillard | 2 | -48/+69 | |
2018-11-25 | Move SerdField to public API | David Robillard | 1 | -47/+41 | |
2018-11-25 | Clean up reader error handling | David Robillard | 4 | -340/+382 | |
2018-11-25 | Fix UTF-8 round tripping | David Robillard | 3 | -6/+6 | |
2018-11-25 | Add debug checks for node padding | David Robillard | 1 | -8/+39 | |
2018-11-25 | Zero node padding before passing to reader sinks | David Robillard | 5 | -3/+38 | |
2018-11-25 | Remove datatype and language from reader context | David Robillard | 2 | -30/+17 | |
2018-11-25 | Remove unused parameters from emit_statement | David Robillard | 3 | -16/+7 | |
2018-11-25 | Simplify stack management by popping in bulk at higher levels | David Robillard | 4 | -92/+60 | |
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. | |||||
2018-11-25 | Use fixed size stack | David Robillard | 7 | -217/+274 | |
2018-11-25 | Set datatypes on integer, decimal, and base64 nodes | David Robillard | 1 | -26/+65 | |
2018-11-25 | Add serd_world_get_blank() | David Robillard | 2 | -1/+21 | |
2018-11-25 | Avoid copying nodes when equivalent prefixes are set | David Robillard | 1 | -3/+5 | |
2018-11-25 | Separate base64 implementation | David Robillard | 4 | -81/+175 | |
2018-11-25 | Clean up node construction API | David Robillard | 7 | -119/+140 | |
2018-11-25 | Clean up includes and improve source file separation | David Robillard | 19 | -66/+86 | |
2018-11-25 | Move system utilities to separate source files | David Robillard | 7 | -29/+86 | |
2018-11-25 | Hide fopen wrapper and use reader interface consistently | David Robillard | 7 | -118/+98 | |
2018-11-25 | Add blank node API | David Robillard | 1 | -0/+14 | |
2018-11-25 | Make serd_node_new_literal take datatype as a node | David Robillard | 1 | -6/+8 | |
2018-11-25 | Move error handling to world | David Robillard | 5 | -33/+37 | |
2018-11-25 | Add SerdWorld for shared library state | David Robillard | 7 | -32/+90 | |
2018-11-25 | Add SerdSink interface and hide individual function implementations | David Robillard | 5 | -71/+62 | |
2018-11-25 | Bring read/write interface closer to C standard | David Robillard | 8 | -61/+58 | |
2018-11-25 | Clean up and separate internal headers | David Robillard | 17 | -592/+747 | |
2018-11-25 | Merge datatype and/or language into node | David Robillard | 4 | -42/+149 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2018-11-25 | Simplify reader interface | David Robillard | 4 | -98/+80 | |
2018-11-25 | Remove serd_uri_to_path() | David Robillard | 2 | -25/+7 | |
2018-11-25 | Make nodes opaque | David Robillard | 6 | -199/+246 | |
2018-11-25 | Use opaque node API | David Robillard | 5 | -58/+83 | |
2018-11-25 | Add node accessor API | David Robillard | 1 | -0/+24 | |
2018-11-25 | Make serd_strtod API const-correct | David Robillard | 4 | -6/+6 | |
This is an API breakage, but a minor one (particularly since NULL is allowed) that avoids the flaw in the C API. |