aboutsummaryrefslogtreecommitdiffstats
path: root/serd
AgeCommit message (Collapse)AuthorFilesLines
2019-04-13Add serd_new_boolean()David Robillard1-0/+5
2019-04-13Remove reader status and handle errors more preciselyDavid Robillard1-1/+2
2019-04-13WIP: Add validationDavid Robillard1-1/+6
2019-04-13WIP: Add modelDavid Robillard1-0/+417
2019-04-13Use consistent naming for function typesDavid Robillard1-15/+15
2019-04-13Expose and annotate logging functionsDavid Robillard1-0/+22
2019-04-13Use line comments where appropriate and clean up headerDavid Robillard1-451/+222
2019-04-13Add Env to SinkDavid Robillard1-1/+9
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-13Rename SerdStyle to SerdWriterFlagsDavid Robillard1-5/+5
2019-04-13Rename SerdType to SerdNodeTypeDavid Robillard1-2/+2
The old name has become ambiguous with the expanded scope of serd.
2019-04-13Clean up and expose base64 implementationDavid Robillard1-4/+45
2019-04-13Expose the node cache in the worldDavid Robillard1-0/+11
2019-04-13Remove serd_env_foreach()David Robillard1-9/+0
2019-04-13Add serd_env_write_prefixes()David Robillard1-0/+7
2019-04-13Add serd_node_compare()David Robillard1-0/+11
2019-04-13Rename SerdError to SerdMessageDavid Robillard1-14/+24
Towards more general usage for all types of logging.
2019-04-13Use simpler names for statement flagsDavid Robillard1-5/+5
2019-04-13Simplify streaming API and improve pretty printingDavid Robillard1-8/+5
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-13Add SerdNodes class for storing a cache of nodesDavid Robillard1-0/+65
2019-04-13Add serd_env_copy() and serd_env_equals()David Robillard1-0/+14
2019-04-13Separate ByteSink from WriterDavid Robillard1-2/+1
2019-04-13Expose SerdByteSink in public APIDavid Robillard1-0/+42
2019-04-13Remove serd_reader_set_default_graph()David Robillard1-12/+0
2019-04-13Simplify writer style optionsDavid Robillard1-5/+2
2019-04-13Separate style enum from style flags typesDavid Robillard1-1/+6
2019-04-13Automatically finish reader on destructionDavid Robillard1-0/+5
2019-04-13Make SerdSink opaqueDavid Robillard1-11/+52
2019-04-13Simplify SerdEnv APIDavid Robillard1-24/+6
2019-04-13Add cursor to statementDavid Robillard1-0/+7
This allows the file and position of statements to be used in sinks, for example for more helpful error reporting outside the parser.
2019-04-13Add SerdCursor to public APIDavid Robillard1-8/+77
2019-04-13Remove escape parameter from serd_new_file_uriDavid Robillard1-4/+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.
2019-04-13Shorten node constructor namesDavid Robillard1-22/+32
2019-04-13Make statement sink take a statement rather than nodesDavid Robillard1-6/+3
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-13Add sink interfaceDavid Robillard1-0/+60
2019-04-13Add SerdStatementDavid Robillard1-0/+48
2019-04-13Move syntax name/extension utilities to public APIDavid Robillard1-0/+36
2019-04-13Move SerdField to public APIDavid Robillard1-0/+10
2019-04-13Use a fixed-size reader stackDavid Robillard1-2/+6
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-13Set datatypes on integer, decimal, and base64 nodesDavid Robillard1-4/+20
2019-04-13Add serd_world_get_blank()David Robillard1-0/+10
2019-04-13Clean up node construction APIDavid Robillard1-57/+40
2019-04-13Hide fopen wrapper and use reader interface consistentlyDavid Robillard1-11/+3
2019-04-13Add blank node APIDavid Robillard1-0/+10
2019-04-13Make serd_node_new_literal take datatype as a nodeDavid Robillard1-1/+3
2019-04-13Add SerdWorld for shared library stateDavid Robillard1-26/+45
2019-04-13Add SerdSink interface and hide individual function implementationsDavid Robillard1-49/+19
2019-04-13Bring read/write interface closer to C standardDavid Robillard1-21/+23
2019-04-13Merge datatype and/or language into nodeDavid Robillard1-8/+30
This moves closer to the sord API, and is more convenient in most cases.
2019-04-13Simplify reader interfaceDavid Robillard1-36/+18
2019-04-13Remove serd_uri_to_path()David Robillard1-11/+0