summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-02-07 22:17:02 +0100
committerDavid Robillard <d@drobilla.net>2017-02-07 22:21:44 +0100
commit59b708654825333ee944495dd5f892299c25a6a9 (patch)
treeafd1e8f2d152cf885f3b31eecfed8c3df9ede433
parent6fe3e98af68bc1fb2c593395a71dbedb96d4d52f (diff)
downloadsord-59b708654825333ee944495dd5f892299c25a6a9.tar.gz
sord-59b708654825333ee944495dd5f892299c25a6a9.tar.bz2
sord-59b708654825333ee944495dd5f892299c25a6a9.zip
Use consistent error format
-rw-r--r--NEWS3
-rw-r--r--src/sord_validate.c86
2 files changed, 46 insertions, 43 deletions
diff --git a/NEWS b/NEWS
index f1a84ee..34d4497 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,9 @@
sord (0.16.1) unstable;
* sord_validate: Fix restriction count reporting
+ * sord_validate: Use consistent error format
- -- David Robillard <d@drobilla.net> Tue, 07 Feb 2017 21:24:00 +0100
+ -- David Robillard <d@drobilla.net> Tue, 07 Feb 2017 22:17:34 +0100
sord (0.16.0) stable;
diff --git a/src/sord_validate.c b/src/sord_validate.c
index c36dc09..d88fd3f 100644
--- a/src/sord_validate.c
+++ b/src/sord_validate.c
@@ -127,25 +127,21 @@ absolute_path(const uint8_t* path)
}
static int
-error(const char* msg, const SordQuad quad)
+errorf(const SordQuad quad, const char* fmt, ...)
{
+ va_list args;
+ va_start(args, fmt);
+ fprintf(stderr, "error: ");
+ vfprintf(stderr, fmt, args);
+ va_end(args);
+
const char* sep = one_line_errors ? "\t" : "\n ";
- ++n_errors;
- fprintf(stderr, "error: %s:%s%s%s%s%s%s\n",
- msg,
+ fprintf(stderr, "%s%s%s%s%s%s\n",
sep, (const char*)sord_node_get_string(quad[SORD_SUBJECT]),
sep, (const char*)sord_node_get_string(quad[SORD_PREDICATE]),
sep, (const char*)sord_node_get_string(quad[SORD_OBJECT]));
- return 1;
-}
-static int
-errorf(const char* fmt, ...)
-{
- va_list args;
- va_start(args, fmt);
- vfprintf(stderr, fmt, args);
- va_end(args);
+ ++n_errors;
return 1;
}
@@ -295,6 +291,7 @@ check_restriction(SordModel* model,
static bool
literal_is_valid(SordModel* model,
const URIs* uris,
+ const SordQuad quad,
const SordNode* literal,
const SordNode* type)
{
@@ -319,7 +316,8 @@ literal_is_valid(SordModel* model,
is_descendant_of(
model, uris,
type, uris->xsd_double, uris->owl_onDatatype))) {
- errorf("Literal `%s' datatype <%s> is not compatible with <%s>\n",
+ errorf(quad,
+ "Literal `%s' datatype <%s> is not compatible with <%s>\n",
sord_node_get_string(literal),
sord_node_get_string(datatype),
sord_node_get_string(type));
@@ -343,7 +341,7 @@ literal_is_valid(SordModel* model,
// Check this restriction
const bool good = check_restriction(
- model, uris, literal, type, sord_iter_get_node(f, SORD_OBJECT));
+ model, uris, literal, type, sord_iter_get_node(f, SORD_OBJECT));
sord_iter_free(f);
if (!good) {
@@ -362,7 +360,8 @@ literal_is_valid(SordModel* model,
SordIter* s = sord_search(model, type, uris->owl_onDatatype, 0, 0);
if (s) {
const SordNode* super = sord_iter_get_node(s, SORD_OBJECT);
- const bool good = literal_is_valid(model, uris, literal, super);
+ const bool good = literal_is_valid(
+ model, uris, quad, literal, super);
sord_iter_free(s);
return good; // Match iff literal also matches supertype
}
@@ -373,6 +372,7 @@ literal_is_valid(SordModel* model,
static bool
check_type(SordModel* model,
const URIs* uris,
+ const SordQuad quad,
const SordNode* node,
const SordNode* type)
{
@@ -387,7 +387,7 @@ check_type(SordModel* model,
} else if (sord_node_equals(type, uris->rdf_PlainLiteral)) {
return !sord_node_get_language(node);
} else {
- return literal_is_valid(model, uris, node, type);
+ return literal_is_valid(model, uris, quad, node, type);
}
} else if (sord_node_get_type(node) == SORD_URI) {
if (sord_node_equals(type, uris->foaf_Document)) {
@@ -455,52 +455,52 @@ check_properties(SordModel* model, URIs* uris)
model, pred, uris->rdf_type, uris->owl_DatatypeProperty, 0);
if (!is_any_property) {
- st = error("Use of undefined property", quad);
+ st = errorf(quad, "Use of undefined property");
}
if (!sord_ask(model, pred, uris->rdfs_label, NULL, NULL)) {
- st = errorf("Property <%s> has no label\n",
+ st = errorf(quad, "Property <%s> has no label",
sord_node_get_string(pred));
}
if (is_DatatypeProperty &&
sord_node_get_type(obj) != SORD_LITERAL) {
- st = error("Datatype property with non-literal value", quad);
+ st = errorf(quad, "Datatype property with non-literal value");
}
if (is_ObjectProperty &&
sord_node_get_type(obj) == SORD_LITERAL) {
- st = error("Object property with literal value", quad);
+ st = errorf(quad, "Object property with literal value");
}
if (is_FunctionalProperty &&
sord_count(model, subj, pred, NULL, NULL) > 1) {
- st = error("Functional property with several objects", quad);
+ st = errorf(quad, "Functional property with many objects");
}
if (is_InverseFunctionalProperty &&
sord_count(model, NULL, pred, obj, NULL) > 1) {
- st = error("Inverse functional property with several subjects", quad);
+ st = errorf(quad, "Inverse functional property with many subjects");
}
if (sord_node_equals(pred, uris->rdf_type) &&
!sord_ask(model, obj, uris->rdf_type, uris->rdfs_Class, NULL) &&
!sord_ask(model, obj, uris->rdf_type, uris->owl_Class, NULL)) {
- st = error("Type is not a rdfs:Class or owl:Class", quad);
+ st = errorf(quad, "Type is not a rdfs:Class or owl:Class");
}
if (sord_node_get_type(obj) == SORD_LITERAL &&
- !literal_is_valid(model, uris, obj, sord_node_get_datatype(obj))) {
- st = error("Literal does not match datatype", quad);
+ !literal_is_valid(model, uris, quad,
+ obj, sord_node_get_datatype(obj))) {
+ st = errorf(quad, "Literal does not match datatype");
}
SordIter* r = sord_search(model, pred, uris->rdfs_range, NULL, NULL);
for (; !sord_iter_end(r); sord_iter_next(r)) {
const SordNode* range = sord_iter_get_node(r, SORD_OBJECT);
- if (!check_type(model, uris, obj, range)) {
- st = error("Object not in property range", quad);
- fprintf(stderr, "note: Range is <%s>\n",
- sord_node_get_string(range));
+ if (!check_type(model, uris, quad, obj, range)) {
+ st = errorf(quad, "Object not in range <%s>\n",
+ sord_node_get_string(range));
}
}
sord_iter_free(r);
@@ -508,10 +508,9 @@ check_properties(SordModel* model, URIs* uris)
SordIter* d = sord_search(model, pred, uris->rdfs_domain, NULL, NULL);
if (d) {
const SordNode* domain = sord_iter_get_node(d, SORD_OBJECT);
- if (!check_type(model, uris, subj, domain)) {
- st = error("Subject not in property domain", quad);
- fprintf(stderr, "note: Domain is <%s>\n",
- sord_node_get_string(domain));
+ if (!check_type(model, uris, quad, subj, domain)) {
+ st = errorf(quad, "Subject not in domain <%s>",
+ sord_node_get_string(domain));
}
sord_iter_free(d);
}
@@ -525,9 +524,10 @@ static int
check_instance(SordModel* model,
const URIs* uris,
const SordNode* restriction,
- const SordNode* instance)
+ const SordQuad quad)
{
- int st = 0;
+ const SordNode* instance = quad[SORD_SUBJECT];
+ int st = 0;
const SordNode* prop = sord_get(
model, restriction, uris->owl_onProperty, NULL, NULL);
@@ -543,7 +543,7 @@ check_instance(SordModel* model,
if (card) {
const unsigned c = atoi((const char*)sord_node_get_string(card));
if (values != c) {
- st = errorf("Property %s on %s has %u != %u values\n",
+ st = errorf(quad, "Property %s on %s has %u != %u values",
sord_node_get_string(prop),
sord_node_get_string(instance),
values, c);
@@ -556,7 +556,7 @@ check_instance(SordModel* model,
if (minCard) {
const unsigned m = atoi((const char*)sord_node_get_string(minCard));
if (values < m) {
- st = errorf("Property %s on %s has %u < %u values\n",
+ st = errorf(quad, "Property %s on %s has %u < %u values",
sord_node_get_string(prop),
sord_node_get_string(instance),
values, m);
@@ -568,17 +568,18 @@ check_instance(SordModel* model,
model, restriction, uris->owl_someValuesFrom, NULL, NULL);
if (sf) {
const SordNode* type = sord_iter_get_node(sf, SORD_OBJECT);
+
SordIter* v = sord_search(model, instance, prop, NULL, NULL);
bool found = false;
for (; !sord_iter_end(v); sord_iter_next(v)) {
const SordNode* value = sord_iter_get_node(v, SORD_OBJECT);
- if (check_type(model, uris, value, type)) {
+ if (check_type(model, uris, quad, value, type)) {
found = true;
break;
}
}
if (!found) {
- st = errorf("%s has no <%s> values of type <%s>\n",
+ st = errorf(quad, "%s has no <%s> values of type <%s>\n",
sord_node_get_string(instance),
sord_node_get_string(prop),
sord_node_get_string(type));
@@ -599,8 +600,9 @@ check_class_instances(SordModel* model,
// Check immediate instances of this class
SordIter* i = sord_search(model, NULL, uris->rdf_type, klass, NULL);
for (; !sord_iter_end(i); sord_iter_next(i)) {
- const SordNode* instance = sord_iter_get_node(i, SORD_SUBJECT);
- check_instance(model, uris, restriction, instance);
+ SordQuad quad;
+ sord_iter_get(i, quad);
+ check_instance(model, uris, restriction, quad);
}
sord_iter_free(i);