Stream ProcessingΒΆ

enum SerdCanonFlag

Flags that control canonical node transformation.

enumerator SERD_CANON_LAX

Tolerate and pass through invalid input.

typedef uint32_t SerdCanonFlags

Bitwise OR of SerdCanonFlag values.

SerdSink *serd_canon_new(const SerdWorld *world, const SerdSink *target, SerdReaderFlags flags)

Return a sink that transforms literals to canonical form where possible.

The returned sink acts like target in all respects, except literal nodes in statements may be modified from the original.

SerdSink *serd_filter_new(const SerdSink *target, const SerdNode *subject, const SerdNode *predicate, const SerdNode *object, const SerdNode *graph)

Return a sink that filters out statements that do not match a pattern.

The returned sink acts like target in all respects, except statements that do not match the pattern are dropped. Only statements where each node is either equivalent to the corresponding pattern node, or the pattern node is null, will be passed through to the target sink.