Model¶
-
enum
SerdValidatorCheck
¶ -
enumerator
SERD_CHECK_ALL_VALUES_FROM
¶
-
enumerator
SERD_CHECK_ANY_URI
¶
-
enumerator
SERD_CHECK_CARDINALITY_EQUAL
¶
-
enumerator
SERD_CHECK_CARDINALITY_MAX
¶
-
enumerator
SERD_CHECK_CARDINALITY_MIN
¶
-
enumerator
SERD_CHECK_CLASS_CYCLE
¶
-
enumerator
SERD_CHECK_CLASS_LABEL
¶
-
enumerator
SERD_CHECK_CLASS_TYPE
¶
-
enumerator
SERD_CHECK_DATATYPE_PROPERTY
¶
-
enumerator
SERD_CHECK_DATATYPE_TYPE
¶
-
enumerator
SERD_CHECK_DEPRECATED_CLASS
¶
-
enumerator
SERD_CHECK_DEPRECATED_PROPERTY
¶
-
enumerator
SERD_CHECK_FUNCTIONAL_PROPERTY
¶
-
enumerator
SERD_CHECK_INSTANCE_LITERAL
¶
-
enumerator
SERD_CHECK_INSTANCE_TYPE
¶
-
enumerator
SERD_CHECK_INVERSE_FUNCTIONAL_PROPERTY
¶
-
enumerator
SERD_CHECK_LITERAL_INSTANCE
¶
-
enumerator
SERD_CHECK_LITERAL_MAX_EXCLUSIVE
¶
-
enumerator
SERD_CHECK_LITERAL_MAX_INCLUSIVE
¶
-
enumerator
SERD_CHECK_LITERAL_MIN_EXCLUSIVE
¶
-
enumerator
SERD_CHECK_LITERAL_MIN_INCLUSIVE
¶
-
enumerator
SERD_CHECK_LITERAL_PATTERN
¶
-
enumerator
SERD_CHECK_LITERAL_RESTRICTION
¶
-
enumerator
SERD_CHECK_LITERAL_VALUE
¶
-
enumerator
SERD_CHECK_OBJECT_PROPERTY
¶
-
enumerator
SERD_CHECK_PLAIN_LITERAL_DATATYPE
¶
-
enumerator
SERD_CHECK_PREDICATE_TYPE
¶
-
enumerator
SERD_CHECK_PROPERTY_CYCLE
¶
-
enumerator
SERD_CHECK_PROPERTY_DOMAIN
¶
-
enumerator
SERD_CHECK_PROPERTY_LABEL
¶
-
enumerator
SERD_CHECK_PROPERTY_RANGE
¶
-
enumerator
SERD_CHECK_SOME_VALUES_FROM
¶
-
enumerator
-
typedef struct SerdValidatorImpl
SerdValidator
¶ Validator.
-
typedef uint64_t
SerdValidatorChecks
¶
-
SerdModel *
serd_model_new
(SerdWorld *world, SerdModelFlags flags)¶ Create a new model.
- Parameters
world – The world in which to make this model.
flags – Model options, including enabled indices, for example
SERD_SPO | SERD_OPS
. Be sure to enable an index where the most significant node(s) are not variables in your queries. For example, to make (? P O) queries, enable either SERD_OPS or SERD_POS.
-
bool
serd_model_equals
(const SerdModel *a, const SerdModel *b)¶ Return true iff
a
is equal tob
, ignoring statement cursor metadata.
-
SerdModelFlags
serd_model_flags
(const SerdModel *model)¶ Get the flags enabled on
model
-
bool
serd_model_empty
(const SerdModel *model)¶ Return true iff there are no statements stored in
model
-
SerdRange *
serd_model_all
(const SerdModel *model, const SerdStatementOrder order)¶ Return a range of all statements in
model
-
SerdIter *
serd_model_find
(const SerdModel *model, const SerdNode *s, const SerdNode *p, const SerdNode *o, const SerdNode *g)¶ Search for statements by a quad pattern.
- Returns
An iterator to the first match, or NULL if no matches found.
-
SerdRange *
serd_model_range
(const SerdModel *model, const SerdNode *s, const SerdNode *p, const SerdNode *o, const SerdNode *g)¶ Search for statements by a quad pattern.
- Returns
A range containing all matching statements.
-
const SerdNode *
serd_model_get
(const SerdModel *model, const SerdNode *s, const SerdNode *p, const SerdNode *o, const SerdNode *g)¶ Search for a single node that matches a pattern.
Exactly one of
s
,p
,o
must be NULL. This function is mainly useful for predicates that only have one value. :returns: The first matching node, or NULL if no matches are found.
-
const SerdStatement *
serd_model_get_statement
(const SerdModel *model, const SerdNode *s, const SerdNode *p, const SerdNode *o, const SerdNode *g)¶ Search for a single statement that matches a pattern.
This function is mainly useful for predicates that only have one value.
- Returns
The first matching statement, or NULL if none are found.
-
bool
serd_model_ask
(const SerdModel *model, const SerdNode *s, const SerdNode *p, const SerdNode *o, const SerdNode *g)¶ Return true iff a statement exists.
-
size_t
serd_model_count
(const SerdModel *model, const SerdNode *s, const SerdNode *p, const SerdNode *o, const SerdNode *g)¶ Return the number of matching statements.
-
SerdStatus
serd_model_add
(SerdModel *model, const SerdNode *s, const SerdNode *p, const SerdNode *o, const SerdNode *g)¶ Add a statement to a model from nodes.
This function fails if there are any active iterators on
model
.
-
SerdStatus
serd_model_insert
(SerdModel *model, const SerdStatement *statement)¶ Add a statement to a model.
This function fails if there are any active iterators on
model
. If statement is null, then SERD_FAILURE is returned.
-
SerdStatus
serd_model_add_range
(SerdModel *model, SerdRange *range)¶ Add a range of statements to a model.
This function fails if there are any active iterators on
model
.
-
SerdStatus
serd_model_erase
(SerdModel *model, SerdIter *iter)¶ Remove a quad from a model via an iterator.
Calling this function invalidates all iterators on
model
exceptiter
.- Parameters
model – The model which
iter
points to.iter – Iterator to the element to erase, which is incremented to the next value on return.
-
SerdStatus
serd_model_erase_range
(SerdModel *model, SerdRange *range)¶ Remove a range from a model.
Calling this function invalidates all iterators on
model
exceptiter
.- Parameters
model – The model which
range
points to.range – Range to erase, which will be empty on return;
-
SerdValidatorChecks
serd_validator_checks_enable
(const SerdValidatorChecks checks, const char*)¶
-
SerdValidatorChecks
serd_validator_checks_disable
(SerdValidatorChecks checks, const char*)¶
-
SerdValidator *
serd_validator_new
(SerdWorld *world)¶
-
void
serd_validator_free
(SerdValidator *validator)¶ Free
validator
-
SerdStatus
serd_validator_enable_checks
(SerdValidator *validator, const char *pattern)¶
-
SerdStatus
serd_validator_disable_checks
(SerdValidator *validator, const char *pattern)¶
-
SerdStatus
serd_validate_model
(SerdValidator *const validator, const SerdModel *model, const SerdNode *graph)¶ Validate model.
This performs validation based on the XSD, RDF, RDFS, and OWL vocabularies. All necessary data, including those vocabularies and any property/class definitions that use them, are assumed to be in
model
.Validation errors are reported to the world’s error sink.
- Parameters
validator – Validator configured to run the desired checks.
model – The model to run the validator on.
graph – Optional graph to check. Is this is non-null, then top-level checks will be initiated only by statements in the given graph. The entire model is still searched while running a check so that, for example, schemas that define classes and properties can be stored in separate graphs. If this is null, then the validator simply ignores graphs and searches the entire model for everything.
- Returns
SerdStatus.SERD_SUCCESS
if no errors are found, orSerdStatus.SERD_ERR_INVALID
if validation checks failed.