Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-04-13 | Fix MSVC warnings about integer literal conversions | David Robillard | 1 | -2/+2 | |
2019-04-13 | Fix implicit float to double conversion warning | David Robillard | 1 | -7/+21 | |
2019-04-13 | Fix various sign conversion warnings | David Robillard | 1 | -3/+3 | |
2019-04-13 | Add serd_new_boolean() | David Robillard | 1 | -0/+13 | |
2019-04-13 | Remove reader status and handle errors more precisely | David Robillard | 1 | -1/+1 | |
2019-04-13 | Add separate test suite for lax syntax tests | David Robillard | 4 | -7/+17 | |
2019-04-13 | Add validation test suite | David Robillard | 26 | -0/+572 | |
2019-04-13 | WIP: Add validation | David Robillard | 1 | -1/+1 | |
2019-04-13 | WIP: Add model | David Robillard | 3 | -0/+967 | |
2019-04-13 | Add Env to Sink | David Robillard | 3 | -4/+5 | |
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 | Clean up and expose base64 implementation | David Robillard | 2 | -6/+127 | |
2019-04-13 | Remove serd_env_foreach() | David Robillard | 1 | -2/+4 | |
2019-04-13 | Simplify reader test sink | David Robillard | 1 | -13/+8 | |
2019-04-13 | Add stack overflow tests | David Robillard | 1 | -0/+68 | |
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 | Ensure serd_new_resolved_uri returns an absolute URI or NULL | David Robillard | 1 | -1/+3 | |
2019-04-13 | Simplify streaming API and improve pretty printing | David Robillard | 3 | -2/+84 | |
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 | Add SerdNodes class for storing a cache of nodes | David Robillard | 1 | -0/+93 | |
2019-04-13 | Add serd_env_copy() and serd_env_equals() | David Robillard | 1 | -0/+16 | |
2019-04-13 | Separate ByteSink from Writer | David Robillard | 1 | -3/+11 | |
2019-04-13 | Remove serd_reader_set_default_graph() | David Robillard | 1 | -9/+2 | |
2019-04-13 | Add rooted URI resolution test | David Robillard | 1 | -1/+3 | |
2019-04-13 | Add test for reading chunks | David Robillard | 1 | -0/+112 | |
2019-04-13 | Separate style enum from style flags types | David Robillard | 1 | -2/+2 | |
2019-04-13 | Make SerdSink opaque | David Robillard | 1 | -6/+9 | |
2019-04-13 | Simplify SerdEnv API | David Robillard | 1 | -20/+25 | |
2019-04-13 | Add SerdCursor to public API | David Robillard | 1 | -0/+58 | |
2019-04-13 | Remove escape parameter from serd_new_file_uri | David Robillard | 1 | -9/+6 | |
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 | 1 | -50/+55 | |
2019-04-13 | Make statement sink take a statement rather than nodes | David Robillard | 1 | -19/+12 | |
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 | Use a fixed-size reader stack | David Robillard | 1 | -2/+2 | |
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 | 1 | -5/+17 | |
2019-04-13 | Add serd_world_get_blank() | David Robillard | 1 | -0/+21 | |
2019-04-13 | Clean up node construction API | David Robillard | 1 | -85/+86 | |
2019-04-13 | Clean up includes and improve source file separation | David Robillard | 1 | -1/+2 | |
2019-04-13 | Hide fopen wrapper and use reader interface consistently | David Robillard | 1 | -13/+11 | |
2019-04-13 | Add blank node API | David Robillard | 1 | -0/+10 | |
2019-04-13 | Make serd_node_new_literal take datatype as a node | David Robillard | 1 | -3/+9 | |
2019-04-13 | Add SerdWorld for shared library state | David Robillard | 1 | -4/+12 | |
2019-04-13 | Add SerdSink interface and hide individual function implementations | David Robillard | 1 | -18/+14 | |
2019-04-13 | Bring read/write interface closer to C standard | David Robillard | 1 | -1/+1 | |
2019-04-13 | Merge datatype and/or language into node | David Robillard | 1 | -32/+57 | |
This moves closer to the sord API, and is more convenient in most cases. | |||||
2019-04-13 | Remove serd_uri_to_path() | David Robillard | 1 | -26/+0 | |
2019-04-13 | Make nodes opaque | David Robillard | 1 | -144/+170 | |
2019-04-13 | Make serd_strtod API const-correct | David Robillard | 1 | -2/+4 | |
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 | 1 | -1/+2 | |
2019-04-13 | Use char* for strings in public API | David Robillard | 1 | -88/+83 | |
The constant casting just makes user code a mess, for no benefit. | |||||
2019-04-13 | Remove useless character counting | David Robillard | 1 | -19/+9 | |
2019-04-13 | Use SerdBuffer for mutable buffers | David Robillard | 1 | -4/+4 | |
This avoids const violations from abusing SerdChunk as a mutable buffer for string sinks. |