From SPARQL to Rules (and back)1

Axel Polleres

Digital Enterprise Research Institute, National University of Ireland, Galway, Ireland

ABSTRACT

As the data and ontology layers of the Semantic Web stack have achieved a certain level of maturity in standard recommendations such as RDF and OWL, the current focus lies on two related aspects. On the one hand, the definition of a suitable query language for RDF, SPARQL, is close to recommendation status within the W3C. The establishment of the rules layer on top of the existing stack on the other hand marks the next step to be taken, where languages with their roots in Logic Programming and Deductive Databases are receiving considerable attention. The purpose of this paper is threefold. First, we discuss the formal semantics of SPARQL extending recent results in several ways. Second, we provide translations from SPARQL to Datalog with negation as failure. Third, we propose some useful and easy to implement extensions of SPARQL, based on this translation. As it turns out, the combination serves for direct implementations of SPARQL on top of existing rules engines as well as a basis for more general rules and query languages on top of RDF.

Categories & Subject Descriptors

H.2.3[Languages] Query Languages, H.3.5[Online Information Services] Web-based services

General Terms

Languages, Standardization

Keywords

SPARQL, Datalog, Rules

1 Introduction

After the data and ontology layers of the Semantic Web stack have achieved a certain level of maturity in standard recommendations such as RDF and OWL, the query and the rules layers seem to be the next building-blocks to be finalized. For the first part, SPARQL [18], W3C's proposed query language, seems to be close to recommendation, though the Data Access working group is still struggling with defining aspects such as a formal semantics or layering on top of OWL and RDFS. As for the second part, the RIF working group 2, who is responsible for the rules layer, is just producing first concrete results. Besides aspects like business rules exchange or reactive rules, deductive rules languages on top of RDF and OWL are of special interest to the RIF group. One such deductive rules language is Datalog, which has been successfully applied in areas such as deductive databases and thus might be viewed as a query language itself. Let us briefly recap our starting points:

Datalog and SQL. Analogies between Datalog and relational query languages such as SQL are well-known and -studied. Both formalisms cover UCQ (unions of conjunctive queries), where Datalog adds recursion, particularly unrestricted recursion involving nonmonotonic negation (aka unstratified negation as failure). Still, SQL is often viewed to be more powerful in several respects. On the one hand, the lack of recursion has been partly solved in the standard's 1999 version [20]. On the other hand, aggregates or external function calls are missing in pure Datalog. However, also developments on the Datalog side are evolving and with recent extensions of Datalog towards Answer Set Programming (ASP) - a logic programming paradigm extending and building on top of Datalog - lots of these issues have been solved, for instance by defining a declarative semantics for aggregates [9], external predicates [8].

The Semantic Web rules layer. Remarkably, logic programming dialects such as Datalog with nonmonotonic negation which are covered by Answer Set Programming are often viewed as a natural basis for the Semantic Web rules layer [7]. Current ASP systems offer extensions for retrieving RDF data and querying OWL knowledge bases from the Web [8]. Particular concerns in the Semantic Web community exist with respect to adding rules including nonmonotonic negation [3] which involve a form of closed world reasoning on top of RDF and OWL which both adopt an open world assumption. Recent proposals for solving this issue suggest a ``safe'' use of negation as failure over finite contexts only for the Web, also called scoped negation [17].

The Semantic Web query layer - SPARQL. Since we base our considerations in this paper on the assumption that similar correspondences as between SQL and Datalog can be established for SPARQL, we have to observe that SPARQL inherits a lot from SQL, but there also remain substantial differences: On the one hand, SPARQL does not deal with nested queries or recursion, a detail which is indeed surprising by the fact that SPARQL is a graph query language on RDF where, typical recursive queries such as transitive closure of a property might seem very useful. Likewise, aggregation (such as count, average, etc.) of object values in RDF triples which might appear useful have not yet been included in the current standard. On the other hand, subtleties like blank nodes (aka bNodes), or optional graph patterns, which are similar but (as we will see) different to outer joins in SQL or relational algebra, are not straightforwardly translatable to Datalog. The goal of this paper is to shed light on the actual relation between declarative rules languages such as Datalog and SPARQL, and by this also provide valuable input for the currently ongoing discussions on the Semantic Web rules layer, in particular its integration with SPARQL, taking the likely direction into account that LP style rules languages will play a significant role in this context.

Although the SPARQL specification does not seem 100% stable at the current point, just having taken a step back from candidate recommendation to working draft, we think that it is not too early for this exercise, as we will gain valuable insights and positive side effects by our investigation. More precisely, the contributions of the present work are:

The remainder of this paper is structured as follows: In Sec. 2 we first overview SPARQL, discuss some issues in the language (Sec. 2.1) and then define its formal semantics (Sec. 2.2). After introducing a general form of Datalog with negation as failure under the answer set semantics in Sec. 3, we proceed with the translations of SPARQL to Datalog in Sec. 4. We finally discuss the above-mentioned language extensions in Sec. 5, before we conclude in Sec. 6.


2 RDF and SPARQL

In examples, we will subsequently refer to the two RDF graphs in Fig. 1 which give some information about $ Bob$ and $ Alice$ . Such information is common in FOAF files which are gaining popularity to describe personal data. Similarities with existing examples in [18] are on purpose. We assume the two RDF graphs given in TURTLE [2] notation and accessible via the IRIs ex.org/bob and alice.org3

Figure 1: Two RDF graphs in TURTLE notation and a simple SPARQL query.
# Graph: ex.org/bob
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix bob: <ex.org/bob#> .

<ex.org/bob> foaf:maker $ \_:\mathtt{a}$ .
$ \_:\mathtt{a}$ a foaf:Person ; foaf:name "Bob";
foaf:knows $ \_:\mathtt{b}$ .

$ \_:\mathtt{b}$ a foaf:Person ; foaf:nick "Alice".
<alice.org/> foaf:maker $ \_:\mathtt{b}$
# Graph: alice.org

@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix alice: <alice.org#> .

alice:me a foaf:Person ; foaf:name "Alice" ;
foaf:knows $ \_:\mathtt{c}$ .

$ \_:\mathtt{c}$ a foaf:Person ; foaf:name "Bob" ;
foaf:nick "Bobby".
PREFIX foaf: <http://xmlns.com/foaf/0.1/>


SELECT ?Y ?X

FROM <alice.org>

FROM <ex.org/bob>

WHERE { ?Y foaf:name ?X .}

We assume the pairwise disjoint, infinite sets $ I$ , $ B$ , $ L$ and $ Var$ , which denote IRIs, Blank nodes, RDF literals, and variables respectively. In this paper, an RDF Graph is then a finite set, of triples from $ I \cup B \cup L \times I \times I \cup B \cup L$ ,4 dereferenceable by an IRI. A SPARQL query is a quadruple $ Q=(V,P,DS,SM)$ , where $ V$ is a result form, $ P$ is a graph pattern, $ DS$ is a dataset, and $ SM$ is a set of solution modifiers. We refer to [18] for syntactical details and will explain these in the following as far as necessary. In this paper, we will ignore solution modifiers mostly, thus we will usually write queries as triples $ Q = (V,P,DS)$ , and will use the syntax for graph patterns introduced below.

Result Forms

Since we will, to a large extent, restrict ourselves to SELECT queries, it is sufficient for our purposes to describe result forms by sets variables. Other result forms will be discussed in Sec. 5. For instance, let $ Q = (V,P,DS)$ denote the query from Fig. 1, then $ V = \{ ?X, ?Y \}$ . Query results in SPARQL are given by partial, i.e. possibly incomplete, substitutions of variables in $ V$ by RDF terms. In traditional relational query languages, such incompleteness is usually expressed using null values. Using such null values we will write solutions as tuples where the order of columns is determined by lexicographically ordering the variables in $ V$ . Given a set of variables $ V$ , let $ \overline{V}$ denote the tuple obtained from lexicographically ordering $ V$ .

The query from Fig. 1 with result form $ \overline{V}=(?X,?Y)$ then has solution tuples $ (\mathtt{''Bob'',\ensuremath{\_:\mathtt{a}}})$ , $ (\mathtt{''Alice'',alice.org\char93 me})$ , $ (\mathtt{''Bob'',\ensuremath{\_:\mathtt{c}}})$ . We write substitutions in sqare brackets, so these tuples correspond to the substitutions $ [?X\rightarrow\mathtt{''Bob''}$ , $ ?Y\rightarrow\ensuremath{\_:\mathtt{a}}]$ , $ [?X\rightarrow\mathtt{''Alice''}$ , $ ?Y\rightarrow\mathtt{alice.org\char93 me}]$ , and $ [?X\rightarrow\mathtt{''Bob''}$ , $ ?Y\rightarrow\ensuremath{\_:\mathtt{c}}]$ , respectively.

Graph Patterns

We follow the recursive definition of graph patterns $ P$ from [16]: For any pattern $ P$ , we denote by $ vars(P)$ the set of all variables occurring in $ P$ . As atomic filter expression, SPARQL allows the unary predicates BOUND, isBLANK, isIRI, isLITERAL, binary equality predicates '$ =$ ' for literals, and other features such as comparison operators, data type conversion and string functions which we omit here, see [18, Sec. 11.3] for details. Complex filter expressions can be built using the connectives '$ \neg$ ','$ \wedge$ ','$ \vee$ '.

Datasets

The dataset $ DS=(G, \{(g_1,G_1), \ldots (g_k,G_k)\})$ of a SPARQL query is defined by a default graph $ G$ plus a set of named graphs, i.e. pairs of IRIs and corresponding graphs. Without loss of generality (there are other ways to define the dataset such as in a SPARQL protocol query), we assume $ G$ given as the merge of the graphs denoted by the IRIs given in a set of FROM and FROM NAMED clauses. For instance, the query from Fig. 1 refers to the dataset which consists of the default graph obtained from merging alice.org $ \uplus$ ex.org/bob plus an empty set of named graphs.

The relation between names and graphs in SPARQL is defined solely in terms of that the IRI defines a resource which is represented by the respective graph. In this paper, we assume that the IRIs represent indeed network-accessible resources where the respective RDF-graphs can be retrieved from. This view has also be taken e.g. in [17]. Particularly, this treatment is not to be confused with so-called named graphs in the sense of [4]. We thus identify each IRI with the RDF graph available at this IRI and each set of IRIs with the graph merge [13] of the respective IRIs. This allows us to identify the dataset by a pair of sets of IRIs $ DS=(G,G_{n})$ with $ G=\{d_1,\ldots, d_n\}$ and $ G_{n}=\{g_1,\ldots,g_k\}$ denoting the (merged) default graph and the set of named graphs, respectively. Hence, the following set of clauses

FROM <ex.org/bob>
FROM NAMED <alice.org>
defines the dataset $ DS=(\{\mathtt{ex.org/bob}\},\{\mathtt{alice.org}\})$ .


2.1 Assumptions and Issues

In this section we will discuss some important issues about the current specification, and how we will deal with them here.

First, note that the default graph if specified by name in a FROM clause is not counted among the named graphs automatically [18, section 8, definition 1]. An unbound variable in the GRAPH directive, means any of the named graphs in $ DS$ , but does NOT necessarily include the default graph.

Example 1 This issue becomes obvious in the following query with dataset $ DS=(\{\mathtt{ex.org/bob}\}, \emptyset)$ which has an empty solution set.
SELECT ?N WHERE {?G foaf:maker ?M .
GRAPH ?G { ?X foaf:name ?N } }
We will sometimes find the following assumption convenient to avoid such arguably unintuitive effects:
Definition 1 (Dataset closedness assumption) Given a dataset $ DS=(G,G_n)$ , $ G_n$ implicitly contains (i) all graphs mentioned in $ G$ and (ii) all IRIs mentioned explicitly in the graphs corresponding to $ G$ .
Under this assumption, the previous query has both $ (''Alice'')$ and $ (''Bob'')$ in its solution set.

Some more remarks are in place concerning FILTER expressions. According to the SPARQL specification ``Graph pattern matching creates bindings of variables [where] it is possible to further restrict solutions by constraining the allowable bindings of variables to RDF Terms [with FILTER expressions].'' However, it is not clearly specified how to deal with filter constraints referring to variables which do not appear in simple graph patterns. In this paper, for graph patterns of the form $ (P\ \textsf{FILTER}\xspace \ R)$ we tacitly assume safe filter expressions, i.e. that all variables used in a filter expression $ R$ also appear in the corresponding pattern $ P$ . This corresponds with the notion of safety in Datalog (see Sec.3), where the built-in predicates (which obviously correspond to filter predicates) do not suffice to safe unbound variables.

Moreover, the specification defines errors to avoid mistyped comparisons, or evaluation of built-in functions over unbound values, i.e. ``any potential solution that causes an error condition in a constraint will not form part of the final results, but does not cause the query to fail.'' These errors propagate over the whole FILTER expression, also over negation, as shown by the following example.

Example 2 Assuming the dataset does not contain triples for the $ \mathtt{foaf:dummy}$ property, the example query
SELECT ?X
WHERE { {?X a foaf:Person .
OPTIONAL { ?X foaf:dummy ?Y . } }
FILTER (
$ \neg$ (isLITERAL (?Y)) ) }
would discard any solution for $ \mathtt{?X}$ , since the unbound value for $ \mathtt{?Y}$ causes an error in the isLITERAL expression and thus the whole FILTER expression returns an error.

We will take special care for these errors, when defining the semantics of FILTER expressions later on.


2.2 Formal Semantics of SPARQL

The semantics of SPARQL is still not formally defined in its current version. This lack of formal semantics has been tackled by a recent proposal of Pérez et al. [16]. We will base on this proposal, but suggest three variants thereof, namely (a) bravely joining, (b) cautiously-joining, and (c) strictly-joining semantics. Particularly, our definitions vary from [16] in the way we define joining unbound variables. Moreover, we will refine their notion of FILTER satisfaction in order to deal with error propagation properly.

We denote by $ \ensuremath{T_{\sf null}\xspace }$ the union $ I \cup B \cup L \cup \{{\sf null}\xspace \}$ , where $ {\sf null}\xspace $ is a dedicated constant denoting the unknown value not appearing in any of $ I,B,$ or $ L$ , how it is commonly introduced when defining outer joins in relational algebra.

A substitution $ \theta$ from $ Var$ to $ \ensuremath{T_{\sf null}\xspace }$ is a partial function $ \theta : Var \rightarrow \ensuremath{T_{\sf null}\xspace }$ . We write substitutions in postfix notation: For a triple pattern $ t=(s,p,o)$ we denote by $ t\theta$ the triple $ (s\theta,p\theta,o\theta)$ obtained by applying the substitution to all variables in $ t$ . The domain of $ \theta$ , $ dom(\theta)$ , is the subset of $ Var$ where $ \theta$ is defined. For a substitution $ \theta$ and a set of variables $ D \subseteq Var$ we define the substitution $ \theta^D$ with domain $ D$ as follows:

$\displaystyle x\theta^D = \left\{\mbox{\begin{minipage}{0.3\textwidth} $x\theta... ... ${\sf null}\xspace $ if $x\in D\setminus dom(\theta)$ \end{minipage}}\right.$

Let $ \theta_1$ and $ \theta_2$ be substitutions, then $ \theta_1 \cup \theta_2$ is the substitution obtained as follows:

$\displaystyle x(\theta_1 \cup \theta_2) = \left\{\mbox{\begin{minipage}{0.45\te... ...e: $x\theta_2$ if $x\theta_2$ defined\ else: undefined \end{minipage}}\right.$
Thus, in the union of two substitutions defined values in one take precedence over null values the other substitution. For instance, given the substitutions $ \theta_1 = [?X\rightarrow ''Alice'', ?Y\rightarrow \ensuremath{\_:\mathtt{a}}, ?Z\rightarrow {\sf null}\xspace ]$ and $ \theta_2 = [?U\rightarrow ''Bob'', ?X\rightarrow ''Alice'', ?Y\rightarrow {\sf null}\xspace ]$ we get: $ \theta_1 \cup \theta_2 = [?U\rightarrow ''Bob'', ?X\rightarrow ''Alice'', ?Y\rightarrow \ensuremath{\_:\mathtt{a}}, ?Z\rightarrow {\sf null}\xspace ]$

Now, as opposed to [16], we define three notions of compatibility between substitutions:

Analogously to [16] we define join, union, difference, and outer join between two sets of substitutions $ \Omega_1$ and $ \Omega_2$ over domains $ D_1$ and $ D_2$ , respectively, all except union parameterized by $ x \in \{\textrm{b,c,s}\}$ :

$ \Omega_1 \bowtie_x \Omega_2\ \ =\ \ \{\theta_1 \cup \theta_2\ \vert\ \theta_1 \in \Omega_1, \theta_2 \in \Omega_2\textrm{, are $x$-compatible}\}$
$ \Omega_1\ \cup\ \Omega_2\ \ =\ \ \{\theta\ \vert\ $ $ \exists\theta_1 \in \Omega_1\textrm{ with }\theta=\theta_1^{D_1\cup D_2}\textrm{ or }$
$ \exists\theta_2 \in \Omega_2\textrm{ with }\theta=\theta_2^{D_1\cup D_2}\}$
$ \Omega_1 -_x \Omega_2\ \ =\ \ \{\theta \in \Omega_1\ \vert\ \forall \theta_2 \in \Omega_2,\ \theta\textrm{ and }\theta_2\textrm{ not $x$-compatible}\}$
$ \Omega_1 \ensuremath{\text{{$\small\sqsupset$}\vspace{-6ex}$\bowtie$}}_x \Omega_2\ \ =\ \ (\Omega_1 \bowtie_x \Omega_2) \cup (\Omega_1 -_x \Omega_2)$

The semantics of a graph pattern $ P$ over dataset $ DS=(G,G_n)$ , can now be defined recursively by the evaluation function returning sets of substitutions.

Definition 2 (Evaluation, extends [16, Def. 2]) Let $ t=(s,p,o)$ be a triple pattern, $ P,P_1,P_2$ graph patterns, $ DS=(G,G_n)$ a dataset, and $ i \in G_n$ , and $ v \in Var$ , then the $ x$ -joining evaluation $ [[\cdot]]^x_{DS}$ is defined as follows:
$ [[t]]^x_{DS}\ =\ \{\theta\ \vert\ dom(\theta)=vars(P)\textrm{ and }t\theta \in G\}$
$ [[P_1\ \textsf{AND}\xspace \ P_2]]^x_{DS}\ \ \ \ =\ \ [[P_1]]^x_{DS}\ \ \bowtie_x\ [[P_2]]^x_{DS}$
$ [[P_1\ \textsf{UNION}\xspace \ P_2]]^x_{DS}\ \ =\ \ [[P_1]]^x_{DS}\ \ \ \cup\ \ [[P_2]]^x_{DS}$
$ [[P_1\ \textsf{MINUS}\xspace \ P_2]]^x_{DS}\ \ =\ \ [[P_1]]^x_{DS}\ \ \ -_x\ \ [[P_2]]^x_{DS}$
$ [[P_1\ \textsf{OPT}\xspace \ P_2]]^x_{DS}\ \ \ \ \ =\ \ [[P_1]]^x_{DS}\ensuremath{\text{{$\small\sqsupset$}\vspace{-6ex}$\bowtie$}}_x\ [[P_2]]^x_{DS}$
$ [[\textsf{GRAPH}\xspace \ i\ P]]^x_{DS}\ \ \ \ =\ \ [[P]]^x_{(i,\emptyset)}$
$ [[\textsf{GRAPH}\xspace \ v\ P]]^x_{DS}\ \ \ \ =\ \ \{\theta \cup[v\rightarrow g]~\vert~g \in G_n, \theta \in [[P[v\rightarrow g]~]]^x_{(g,\emptyset)}\}$
$ [[P\ \textsf{FILTER}\xspace \ R]]^x_{DS}\ \ \ =\ \ \{\theta \in [[P]]^x_{DS}\ \vert\ R\theta=\top\}$

Let $ R$ be a
FILTER expression, $ u,v \in Var$ , $ c \in I \cup B \cup L$ . The valuation of $ R$ on substitution $ \theta$ , written $ R\theta$ takes one of the three values $ \{\top,\bot,\varepsilon\}$ 7and is defined as follows.
$ R\theta=\top$ , if:
(1) $ R = \textsf{BOUND}\xspace (v)\textrm{ with }v \in dom(\theta)~\wedge~v\theta\not={\sf null}\xspace $ ;
(2) $ R = \textsf{isBLANK}\xspace (v)\textrm{ with }v \in dom(\theta)~\wedge~v\theta \in B$ ;
(3) $ R = \textsf{isIRI}\xspace (v)\textrm{ with }v \in dom(\theta)~\wedge~v\theta \in I$ ;
(4) $ R = \textsf{isLITERAL}\xspace (v)\textrm{ with }v \in dom(\theta)~\wedge~v\theta \in L$ ;
(5) $ R = (v=c)\textrm{ with }v \in dom(\theta)~\wedge~v\theta=c$ ;
(6) $ R = (u=v)\textrm{ with }u,v \in dom(\theta)~\wedge~u\theta=v\theta~\wedge~u\theta\not={\sf null}\xspace $ ;
(7) $ R = (\neg R_1)\textrm{ with }R_1\theta=\bot$ ;
(8) $ R = (R1 \vee R2 )\textrm{ with }R_1\theta=\top\ \vee\ R_2\theta=\top$ ;
(9) $ R = (R1 \wedge R2)\textrm{ with }R_1\theta=\top\ \wedge\ R_2\theta=\top$ .

$ R\theta=\varepsilon$ , if:
(1) $ R = \textsf{isBLANK}\xspace (v)$ , $ R = \textsf{isIRI}\xspace (v)$ , $ R = \textsf{isLITERAL}\xspace (v)$ , or $ R = (v=c)$ with $ v \not\in dom(\theta)\ \vee\ v\theta={\sf null}\xspace $ ;
(2) $ R = (u=v)\textrm{ with }u\not\in dom(\theta)\ \vee\ u\theta={\sf null}\xspace \vee\ v\not\in dom(\theta)\ \vee\ v\theta={\sf null}\xspace $ ;
(3) $ R = (\neg R_1)\textrm{ and }R_1\theta=\varepsilon$ ;
(4) $ R = (R_1 \vee R_2 )\textrm{ and }(R_1\theta\not=\top\ \wedge\ R_2\theta\not=\top)\ \wedge (R_1\theta=\varepsilon\ \vee\ R_2\theta=\varepsilon$ );
(5) $ R = (R1 \wedge R2)\textrm{ and }R_1\theta=\varepsilon\ \vee\ R_2\theta=\varepsilon$ .
$ R\theta=\bot$ otherwise.
We will now exemplify the three different semantics defined above, namely bravely joining (b-joining), cautiously joining (c-joining), and strictly-joining (s-joining) semantics. When taking a closer look to the AND and MINUS operators, one will realize that all three semantics take a slightly differing view only when joining null. Indeed, the AND operator behaves as the traditional natural join operator $ \bowtie$ in relational algebra, when no null values are involved.

Take for instance, $ DS=(\{\mathtt{ex.org/bob,alice.org}\},\emptyset)$ and $ P = ( (?X,\mathtt{name},?Name)$ AND $ (?X,\mathtt{knows},?Friend))$ . When viewing each solution set as a relational table with variables denoting attribute names, we can write:

?X ?Name
$ \_:\mathtt{a}$ "Bob"
alice.org#me "Alice"
$ \_:\mathtt{c}$ "Bob"
$ \bowtie$
?X ?Friend
$ \_:\mathtt{a}$ $ \_:\mathtt{b}$
alice.org#me $ \_:\mathtt{c}$
=
?X ?Name ?Friend
$ \_:\mathtt{a}$ "Bob" $ \_:\mathtt{b}$
alice.org#me "Alice" $ \_:\mathtt{c}$

Differences between the three semantics appear when joining over null-bound variables, as shown in the next example.

Example 3 Let $ DS$ be as before and assume the following query which might be considered a naive attempt to ask for pairs of persons $ ?X1$ , $ ?X2$ who share the same name and nickname where both, name and nickname are optional:


$ P = (\ ( (?X1,a,\mathtt{Person})\ \textsf{OPT}\xspace \ (?X1,\mathtt{name},?N)... ...ce \ ((?X2,a,\mathtt{Person})\ \textsf{OPT}\xspace \ (?X2,\mathtt{nick},?N))\ )$


Again, we consider the tabular view of the resulting join:
?X1 ?N
$ \_:\mathtt{a}$ "Bob"
$ \_:\mathtt{b}$ null
$ \_:\mathtt{c}$ "Bob"
alice.org#me "Alice"
$ \bowtie_x$
?X2 ?N
$ \_:\mathtt{a}$ null
$ \_:\mathtt{b}$ "Alice"
$ \_:\mathtt{c}$ "Bobby"
alice.org#me null

Now, let us see what happens when we evaluate the join $ \bowtie_x$ with respect to the different semantics. The following result table lists in the last column which tuples belong to the result of b-, c- and s-join, respectively.

$ =$
?X1 ?N X2
$ \_:\mathtt{a}$ "Bob" $ \_:\mathtt{a}$ b
$ \_:\mathtt{a}$ "Bob" alice.org#me b
$ \_:\mathtt{b}$ null $ \_:\mathtt{a}$ b,c
$ \_:\mathtt{b}$ "Alice" $ \_:\mathtt{b}$ b
$ \_:\mathtt{b}$ "Bobby" $ \_:\mathtt{c}$ b
$ \_:\mathtt{b}$ null alice.org#me b,c
$ \_:\mathtt{c}$ "Bob" $ \_:\mathtt{a}$ b
$ \_:\mathtt{c}$ "Bob" alice.org#me b
alice.org#me "Alice" $ \_:\mathtt{a}$ b
alice.org#me "Alice" $ \_:\mathtt{b}$ b,c,s
alice.org#me "Alice" alice.org#me b
Leaving aside the question whether the query formulation was intuitively broken, we remark that only the s-join would have the expected result. At the very least we might argue, that the liberal behavior of b-joins might be considered surprising in some cases. The c-joining semantics acts a bit more cautious in between the two, treating null values as normal values, only unifiable with other null values.

Compared to how joins over incomplete relations are treated in common relational database systems, the s-joining semantics might be considered the intuitive behavior. Another interesting divergence (which would rather suggest to adopt the c-joining semantics) shows up when we consider a simple idempotent join.

Example 4 Let us consider the following single triple dataset $ DS = (\{(\mathtt{alice.org\char93 me},a,\mathtt{Person})\},\emptyset)$ and the following simple query pattern:

$ P = ( (?X,a,\mathtt{Person})\ \textsf{UNION}\xspace \ (?Y,a,\mathtt{Person}) )$

Clearly, this pattern, has the solution set

$ [[P]]^x_{DS}=\{ (\mathtt{alice.org\char93 me},{\sf null}\xspace ), ({\sf null}\xspace ,\mathtt{alice.org\char93 me})\}$

under all three semantics. Surprisingly, $ P'=(P\ \textsf{AND}\xspace \ P)$ has different solution sets for the different semantics. First, $ [[P']]^c_{DS} = [[P]]^x_{DS}$ , but $ [[P']]^s_{DS} = \emptyset$ , since null values are not compatible under the s-joining semantics. Finally,

$ [[P']]^b_{DS}=\{ (\mathtt{alice.org\char93 me},{\sf null}\xspace ), ({\sf null... ...org\char93 me}),\ (\mathtt{alice.org\char93 me},\mathtt{alice.org\char93 me})\}$

As shown by this example, under the reasonable assumption, that the join operator is idempotent, i.e., $ (P \bowtie P) \equiv P$ , only the c-joining semantics behaves correctly.

However, the brave b-joining behavior is advocated by the current SPARQL document, and we might also think of examples where this obviously makes a lot of sense. Especially, when considering no explicit joins, but the implicit joins within the OPT operator:
Example 5 Let $ DS=(\{\mathtt{ex.org/bob,alice.org}\},\emptyset)$ and assume a slight variant of a query from [5] which asks for persons and some names for these persons, where preferably the $ \mathtt{foaf:name}$ is taken, and, if not specified, $ \mathtt{foaf:nick}$ .

$ P = ( ( ( (?X,a,\mathtt{Person})\ \textsf{OPT}\xspace \ (?X,\mathtt{name},?XNAME))\ \textsf{OPT}\xspace \ (?X,\mathtt{nick},?XNAME) )$

Only $ [[P]]^b_{DS}$ contains the expected solution $ (\ensuremath{\_:\mathtt{b}},''Alice'')$ for the bNode $ \_:\mathtt{b}$ .

All three semantics may be considered as variations of the original definitions in [16], for which the authors proved complexity results and various desirable features, such as semantics-preserving normal form transformations and compositionality. The following proposition shows that all these results carry over to the normative b-joining semantics:

Proposition 1 Given a dataset $ DS$ and a pattern $ P$ which does not contain GRAPH patterns, the solutions of $ [[P]]_{DS}$ as in [16] and $ [[P]]^b_{DS}$ are in 1-to-1 correspondence.
Proof. Given $ DS$ and $ P$ each substitution $ \theta$ obtained by evaluation $ [[P]]^b_{DS}$ can be reduced to a substitution $ \theta'$ obtained from the evaluation $ [[P]]_{DS}$ in [16] by dropping all mappings of the form $ v\rightarrow{\sf null}\xspace $ from $ \theta$ . Likewise, each substitution $ \theta'$ obtained from $ [[P]]_{DS}$ can be extended to a substitution $ \theta=\theta'^{vars(P)}$ for $ [[P]]^b_{DS}$ . $ \qedsymbol$

Following the definitions from the SPARQL specification and [16], the b-joining semantics is the only admissible definition. There are still advantages for gradually defining alternatives towards traditional treatment of joins involving null s. On the one hand, as we have seen in the examples above, the brave view on joining unbound variables might have partly surprising results, on the other hand, as we will see, the c- and s-joining semantics allow for a more efficient implementation in terms of Datalog rules.

Let us now take a closer look on some properties of the three defined semantics.

Compositionality and Equivalences

As shown in [16], some implementations have a non-compositional semantics, leading to undesired effects such as non-commutativity of the join operator, etc. A semantics is called compositional if for each $ P'$ sub-pattern of $ P$ the result of evaluating $ P'$ can be used to evaluate $ P$ . Obviously, all three the c-, s- and b-joining semantics defined here retain this property, since all three semantics are defined recursively, and independent of the evaluation order of the sub-patterns.

The following proposition summarizes equivalences which hold for all three semantics, showing some interesting additions to the results of Pérez et al.

Proposition 2 (extends [][Prop. 1) pere-etal-2006] The following equivalences hold or do not hold in the different semantics as indicated after each law:

(1) AND, UNION are associative and commutative. (b,c,s)
(2) $ (P_1\ \textsf{AND}\xspace \ (P_2\ \textsf{UNION}\xspace \ P_3 ))\ \equiv\ ((P_... ...AND}\xspace \ P_2 )\ \textsf{UNION}\xspace \ (P_1\ \textsf{AND}\xspace \ P_3 ))$ . (b)
(3) $ (P_1\ \textsf{OPT}\xspace \ (P_2\ \textsf{UNION}\xspace \ P_3 ))\ \equiv\ ((P_... ...OPT}\xspace \ P_2 )\ \textsf{UNION}\xspace \ (P_1\ \textsf{OPT}\xspace \ P_3 ))$ . (b)
(4) $ ((P_1\ \textsf{UNION}\xspace \ P_2 )\ \textsf{OPT}\xspace \ P_3 )\ \equiv\ ((P... ...OPT}\xspace \ P_3 )\ \textsf{UNION}\xspace \ (P_2\ \textsf{OPT}\xspace \ P_3 ))$ . (b)
(5) $ ((P_1\ \textsf{UNION}\xspace \ P_2 )\ \textsf{FILTER}\xspace \ R)\ \equiv\ ((P... ...FILTER}\xspace \ R)\ \textsf{UNION}\xspace \ (P_2\ \textsf{FILTER}\xspace \ R))$ . (b,c,s)
(6) AND is idempotent, i.e. $ (P\ \textsf{AND}\xspace \ P) \equiv P$ . (c)

Proof. [Sketch.] (1-5) for the b-joining semantics are proven in [16], (1): for c-joining and s-joining follows straight from the definitions. (2)-(4): the substitution sets $ [[P_1]]^{c,s}=\{[?X\rightarrow a,?Y\rightarrow b]\}$ , $ [[P_2]]^{c,s}=\{ [?X\rightarrow a, ?Z\rightarrow c]\}$ , $ [[P_3]]^{c,s}=\{[?Y\rightarrow b, ?Z\rightarrow c] \}$ provide counterexamples for c-joining and s-joining semantics for all three equivalences (2)-(4). (5): The semantics of FILTER expressions and UNION is exactly the same for all three semantics, thus, the result for the b-joining semantics carries over to all three semantics. (6): follows from the observations in Example 4. $ \qedsymbol$

Ideally, we would like to identify a subclass of programs, where the three semantics coincide. Obviously, this is the case for any query involving neither UNION nor OPT operators. Pérez et al. [16] define a bigger class of programs, including ``well-behaving'' optional patterns:

Definition 3 ([16, Def. 4]) A UNION-free graph pattern $ P$ is well-designed if for every occurrence of a sub-pattern $ P' = (P_1\ \textsf{OPT}\xspace \ P_2 )$ of $ P$ and for every variable $ v$ occurring in $ P$ , the following condition holds: if $ v$ occurs both in $ P_2$ and outside $ P'$ then it also occurs in $ P_1$ .
As may be easily verified by the reader, neither Example 3 nor Example 5, which are both UNION-free, satisfy the well-designedness condition. Since in the general case the equivalences for Prop. 2 do not hold, we also need to consider nested UNION patterns as a potential source for null bindings which might affect join results. We extend the notion of well-designedness, which direclty leads us to another correspondence in the subsequent proposition.
Definition 4 A graph pattern $ P$ is well-designed if the condition from Def. 3 holds and for every occurrence of a sub-pattern $ P' = (P_1\ \textsf{UNION}\xspace \ P_2 )$ of $ P$ and for every variable $ v$ occurring in $ P'$ , the following condition holds: if $ v$ occurs outside $ P'$ then it occurs in both $ P_1$ and $ P_2$ .
Proposition 3 On well-designed graph patterns the c-, s-, and b-joining semantics coincide.
Proof. [Sketch.] Follows directly from the observation that all variables which are re-used outside $ P'$ must be bound to a value unequal to null in $ P'$ due to well-designedness, and thus cannot generate null bindings which might carry over to joins. $ \qedsymbol$

Likewise, we can identify ``dangerous'' variables in graph patterns, which might cause semantic differences:

Definition 5 Let $ P'$ a sub-pattern of $ P$ of either the form $ P' = (P_1\ \textsf{OPT}\xspace \ P_2 )$ or $ P' = (P_1\ \textsf{UNION}\xspace \ P_2 )$ . Any variable $ v$ in $ P'$ which violates the well-designedness-condition is called possibly-null-binding in $ P$ .
Note that, so far we have only defined the semantics in terms of a pattern $ P$ and dataset $ DS$ , but not yet taken the result form $ V$ of query $ Q = (V,P,DS)$ into account.

We now define solution tuples that were informally introduced in Sec. 2. Recall that by $ \overline{V}$ we denote the tuple obtained from lexicographically ordering a set of variables in $ V$ . The notion $ \overline{V[V'\rightarrow{\sf null}\xspace ]}$ means that, after ordering $ V$ all variables from a subset $ V' \subseteq V$ are replaced by null.

Definition 6 (Solution Tuples) Let $ Q = (V,P,DS)$ be a SPARQL query, and $ \theta$ a substitution in $ [[P]]^x_{DS}$ , then we call the tuple $ \overline{V[(V\setminus vars(P))\rightarrow{\sf null}\xspace ]}\theta$ a solution tuple of $ Q$ with respect to the $ x$ -joining semantics.
Let us remark at this point, that as for the discussion of intuitivity of the different join semantics discussed in Examples 3-5, we did not yet consider combinations of different join semantics, e.g. using b-joins for OPT and c-joins for AND patterns. We leave this for further work.


3 Datalog and Answer Sets

In this paper we will use a very general form of Datalog commonly referred to as Answer Set Programming (ASP), i.e. function-free logic programming (LP) under the answer set semantics [1, 11]. ASP is widely proposed as a useful tool for various problem solving tasks in e.g. Knowledge Representation and Deductive databases. ASP extends Datalog with useful features such as negation as failure, disjunction in rule heads, aggregates [9], external predicates[8], etc. 8

Let $ Pred$ , $ Const$ , $ Var$ , $ exPr$ be sets of predicate, constant, variable symbols, and external predicate names, respectively. Note that we assume all these sets except $ Pred$ and $ Const$ (which may overlap), to be disjoint. In accordance with common notation in LP and the notation for external predicates from [7] we will in the following assume that $ Const$ and $ Pred$ comprise sets of numeric constants, string constants beginning with a lower case letter, or '"' quoted strings, and strings of the form $ \langle$ quoted-string$ \rangle$ ^^$ \langle$ IRI$ \rangle$ , $ \langle$ quoted-string $ \rangle@\langle$ valid-lang-tag$ \rangle$ , $ Var$ is the set of string constants beginning with an upper case letter. Given $ p \in Pred$ an atom is defined as $ p(t_1, \ldots, t_n)$ , where $ n$ is called the arity of $ p$ and $ t_1, \ldots, t_n \in Const \cup Var$ .

Moreover, we define a fixed set of external predicates $ exPr=\{rdf$ , $ isBLANK$ , $ isIRI$ , $ isLITERAL$ , $ =, \ensuremath{\mathtt{!=}\,}\}$ All external predicates have a fixed semantics and fixed arities, distinguishing input and output terms. The atoms $ isBLANK[c](val)$ , $ isIRI[c](val)$ , $ isLITERAL[c](val)$ test the input term $ c\in Const\cup Var$ (in square brackets) for being valid string representations of Blank nodes, IRI References or RDF literals, returning an output value $ val \in \{\mathtt{t},\mathtt{f},\mathtt{e}\}$ , representing truth, falsity or an error, following the semantics defined in [18, Sec. 11.3]. For the $ rdf$ predicate we write atoms as $ rdf[i](s,p,o)$ to denote that $ i \in Const\cup Var$ is an input term, whereas $ s,p,o\in Const \cup Var$ are output terms which may be bound by the external predicate. The external atom $ rdf[i](s,p,o)$ is true if $ (s, p, o)$ is an RDF triple entailed by the RDF graph which is accessibly at IRI $ i$ . For the moment, we consider simple RDF entailment [13] only. Finally, we write comparison atoms '$ t_1=t_2$ ' and ' $ t_1 \ensuremath{\mathtt{!=}\,}t_2$ ' in infix notation with $ t_1,t_2\in Const\cup Var$ and the obvious semantics of (lexicographic or numeric) (in)equality. Here, for $ =$ either $ t_1$ or $ t_2$ is an output term, but at least one is an input term, and for $ \ensuremath{\mathtt{!=}\,}$ both $ t_1$ and $ t_2$ are input terms.

Definition 7 Finally, a rule is of the form
$\displaystyle h$ : - $\displaystyle \xspace \ b_1,\ \ldots,\ b_m,\ \ensuremath{\mathtt{not}\ }b_{m+1},\ \ldots\ \ensuremath{\mathtt{not}\ }b_n.$ (1)

where $ h$ and $ b_i$ ( $ 1\leq i\leq n$ ) are atoms, $ b_k$ ( $ 1\leq k\leq m$ ) are either atoms or external atoms, and $ \mathtt{not}\ $ is the symbol for negation as failure.
We use $ H(r)$ to denote the head atom $ h$ and $ B(r)$ to denote the set of all body literals $ B^+(r)\cup B^-(r)$ of $ r$ , where $ B^+(r)=\{b_1,\ldots, b_m\}$ and $ B^-(r)=\{b_{m+1},$ $ \ldots, b_n\}$ .

The notion of input and output terms in external atoms described above denotes the binding pattern. More precisely, we assume the following condition which extends the standard notion of safety (cf. [21]) in Datalog with negation: Each variable appearing in a rule must appear in $ B^+(r)$ in an atom or as an output term of an external atom.

Definition 8 A (logic) program $ \Pi$ is defined as a set of safe rules $ r$ of the form (1).
The Herbrand base of a program $ \Pi$ , denoted $ HB_{\Pi}$ , is the set of all possible ground versions of atoms and external atoms occurring in $ \Pi$ obtained by replacing variables with constants from $ Const$ , where we define for our purposes by $ Const$ the union of the set of all constants appearing in $ \Pi$ as well as the literals, IRIs, and distinct constants for each blank node occurring in each RDF graph identified9 by one of the IRIs in the (recursively defined) set $ I$ , where $ I$ is defined by the recursive closure of all IRIs appearing in $ \Pi$ and all RDF graphs identified by IRIs in $ I$ .10As long as we assume that the Web is finite the grounding of a rule $ r$ , $ \mathit{ground}(r)$ , is defined by replacing each variable with the possible elements of $ HB_{\Pi}$ , and the grounding of program $ \Pi$ is $ \mathit{ground}(\Pi)=\bigcup_{r\in \Pi}\mathit{ground}(r)$ .

An interpretation relative to $ \Pi$ is any subset $ \mathcal{I} \subseteq HB_{\Pi}$ containing only atoms. We say that $ \mathcal{I}$ is a model of atom $ a\in HB_{\Pi}$ , denoted $ \mathcal{I}\,{\models}\, a$ , if $ a\in \mathcal{I}$ . With every external predicate name $ \lg\in exPr$ with arity $ n$ we associate an $ (n+1)$ -ary Boolean function $ f_{\lg}$ (called oracle function) assigning each tuple $ (\mathcal{I},t_1\ldots, t_{n})$ either 0 or $ 1$ . 11We say that $ \mathcal{I} \subseteq HB_{\Pi}$ is a model of a ground external atom $ a = g[t_1,\dots,t_m](t_{m+1},\dots,$ $ t_n)$ , denoted $ \mathcal{I} \models a$ , iff $ f_{\lg} (\mathcal{I},t_1, \ldots,t_n) \,{=}\, 1$ .

The semantics we use here generalizes the answer-set semantics [11]12, and is defined using the FLP-reduct [9], which is more elegant than the traditional GL-reduct [11] of stable model semantics and ensures minimality of answer sets also in presence of external atoms.

Let $ r$ be a ground rule. We define (i) $ \mathcal{I} {\models} B(r)$ iff $ \mathcal{I}\,{\models}\, a$ for all $ a \in B^+(r)$ and $ \mathcal{I}\,{\not\models}\, a$ for all $ a \in B^-(r)$ , and (ii) $ \mathcal{I} \models r$ iff $ I \models H(r)$ whenever $ \mathcal{I} \models B(r)$ . We say that $ \mathcal{I}$ is a model of a program $ \Pi$ , denoted $ \mathcal{I} \models \Pi$ , iff $ \mathcal{I} \models r$ for all $ r\in {\it ground}(\Pi)$ .

The FLP-reduct [9] of $ \Pi$ with respect to $ \mathcal{I} \subseteq HB_{\Pi}$ , denoted $ \Pi^{\mathcal{I}}$ , is the set of all $ r\in {\it ground}(\Pi)$ such that $ \mathcal{I} \models B(r)$ . $ \mathcal{I}$ is an answer set of $ \Pi$ iff $ \mathcal{I}$ is a minimal model of $ \Pi^{\mathcal{I}}$ .

We did not consider further extensions common to many ASP dialects here, namely disjunctive rule heads, strong negation [11]. We note that for non-recursive programs, i.e. where the predicate dependency graph is acyclic, the answer set is unique. For the pure translation which we will give in Sec. 4 where we will produce such non-recursive programs from SPARQL queries, we could equally take other semantics such as the well-founded [10] semantics into account, which coincides with ASP on non-recursive programs.


4 From SPARQL to Datalog

We are now ready to define a translation from SPARQL to Datalog which can serve straightforwardly to implement SPARQL within existing rules engines. We start with a translation for c-joining semantics, which we will extend thereafter towards s-joining and b-joining semantics.
Figure 2: Translation $ \ensuremath {\Pi _Q}\xspace ^c$ from SPARQL queries semantics to Datalog.
\begin{figure*}{\footnotesize\tt \begin{tabular}{lll} $\tau(V,(s,p,o),D,i)\ =\ $... ...r_{2*i+1}}(\overline{vars(P'')},D).$&\textrm{(6')} \end{tabular}}\end{figure*}

Translation $ \ensuremath {\Pi _Q}\xspace ^c$

Let $ Q = (V,P,DS)$ , where $ DS=(G,G_n)$ as defined above. We translate this query to a logic program $ \ensuremath {\Pi _Q}\xspace ^c$ defined as follows.
$ \ensuremath{\Pi_Q}\xspace ^c\ =\ \{\mathtt{triple}(S,P,O,\mathtt{default})$ : - $ \xspace \mathtt{rdf}[d](S,P,O). \mid d \in G\}$ $ \cup\ \{\mathtt{triple}(S,P,O,g)$ : - $ \xspace \mathtt{rdf}[g](S,P,O).\ \mid\ g \in G_n\}$ $ \cup\ \tau(V,P,\mathtt{default},1)$
The first two rules serve to import the relevant RDF triples from the dataset into a 4-ary predicate $ \mathtt{triple}$ . Under the dataset closedness assumption (see Def. 1) we may replace the second rule set, which imports the named graphs, by:

$\displaystyle \mathtt{triple}(S,P,O,G)$ : - $\displaystyle \xspace \mathtt{rdf}[G](S,P,O), HU(G), \mathtt{isIRI}(G).$
Here, the predicate $ HU$ stands for ``Herbrand universe'', where we use this name a bit sloppily, with the intention to cover all the relevant part of $ \mathcal{C}$ , recursively importing all possible IRIs in order to emulate the dataset closedness assumption. $ HU$ , can be computed recursively over the input triples, i.e.
$ HU(X)$ : - $ \xspace \mathtt{triple}(X,P,O,D).\ HU(X)$ : - $ \xspace \mathtt{triple}(S,X,O,D).$
$ HU(X)$ : - $ \xspace \mathtt{triple}(S,P,X,D).\ HU(X)$ : - $ \xspace \mathtt{triple}(S,P,O,X).$
The remaining program $ \tau(V,P,\mathtt{default},1)$ represents the actual query translation, where $ \tau$ is defined recursively as shown in Fig. 2.

By $ LT(\cdot)$ we mean the set of rules resulting from disassembling complex FILTER expressions (involving '$ \neg$ ','$ \wedge$ ','$ \vee$ ') according to the rewriting defined by Lloyd and Topor [15] where we have to obey the semantics for errors, following Definition 2. In a nutshell, the rewriting $ LT-rewrite(\cdot)$ proceeds as follows: Complex filters involving $ \neg$ are transformed into negation normal form. Conjunctions of filter expressions are simply disassembled to conjunctions of body literals, disjunctions are handled by splitting the respective rule for both alternatives in the standard way. The resulting rules involve possibly negated atomic filter expressions in the bodies. Here, $ BOUND(v)$ is translated to $ v = {\sf null}\xspace $ , $ \neg BOUND(v)$ to $ v != {\sf null}\xspace $ . $ isBLANK(v)$ , $ isIRI(v)$ , $ isLITERAL(v)$ and their negated forms are replaced by their corresponding external atoms (see Sec. 3) $ \textsf{isBLANK}\xspace [v](\mathtt{t})$ or $ \textsf{isBLANK}\xspace [v](\mathtt{f})$ , etc., respectively.

The resulting program $ \ensuremath {\Pi _Q}\xspace ^c$ implements the c-joining semantics in the following sense:

Proposition 4 (Soundness and completeness of $ \ensuremath {\Pi _Q}\xspace ^c$ ) For each atom of the form $ \mathtt{answer_1}(\vec{s},\mathtt{default})$ in the unique answer set $ M$ of $ \ensuremath {\Pi _Q}\xspace ^c$ , $ \vec{s}$ is a solution tuple of $ Q$ with respect to the c-joining semantics, and all solution tuples of $ Q$ are represented by the extension of predicate $ \mathtt{answer_1}$ in $ M$ .
Without giving a proof, we remark that the result follows if we convince ourselves that $ \tau(V,P,D,i)$ emulates exactly the recursive definition of $ [[P]]^x_{DS}$ . Moreover, together with Proposition 3, we obtain soundness and completeness of $ \Pi_Q$ for b-joining and s-joining semantics as well for well-designed query patterns.
Corollary 1 For $ Q = (V,P,DS)$ , if $ P$ is well-designed, then the extension of predicate $ \mathtt{answer_1}$ in the unique answer set $ M$ of $ \ensuremath {\Pi _Q}\xspace ^c$ represents all and only the solution tuples for $ Q$ with respect to the $ x$ -joining semantics, for $ x\in\{b,c,s\}$ .
Now, in order to obtain a proper translation for arbitrary patterns, we obviously need to focus our attention on the possibly-null-binding variables within the query pattern $ P$ . Let $ vnull(P)$ denote the possibly-null-binding variables in a (sub)pattern $ P$ . We need to consider all rules in Fig. 2 which involve $ x$ -joins, i.e. the rules of the forms (2),(5) and (6). Since rules (5) and (6) do not make this join explicit, we will replace them by the equivalent rules (5') and (6') for $ \ensuremath{\Pi_Q}\xspace ^s$ and $ \ensuremath{\Pi_Q}\xspace ^b$ . The ``extensions'' to s-joining and b-joining semantics can be achieved by rewriting the rules (2) and (6'). The idea is to rename variables and add proper FILTER expressions to these rules in order to realize the b-joining and s-joining behavior for the variables in $ V_N = vnull(P) \cap vars(P') \cap vars(P'')$ .

Translation $ \ensuremath{\Pi_Q}\xspace ^s$

The s-joining behavior can be achieved by adding FILTER expressions

$\displaystyle R^s = (\bigwedge_{v \in V_N} BOUND(v)\ )$
to the rule bodies of (2) and (6'). The resulting rules are again subject to the $ LT$ -rewriting as discussed above for the rules of the form (7). This is sufficient to filter out any joins involving null values, thus achieving s-joining semantics, and we denote the program rewritten that way as $ \ensuremath{\Pi_Q}\xspace ^s$ .

Translation $ \ensuremath{\Pi_Q}\xspace ^b$

Obviously, b-joining semantics is more tricky to achieve, since we now have to relax the allowed joins in order to allow null bindings to join with any other value. We will again achieve this result by modifying rules (2) and (6') where we first do some variable renaming and then add respective FILTER expressions to these rules.

Step 1. We rename each variable $ v \in V_N$ in the respective rule bodies to $ v'$ or $ v''$ , respectively, in order to disambiguate the occurrences originally from sub-pattern $ P'$ or $ P''$ , respectively. That is, for each rule (2) or (6'), we rewrite the body to:
$ \mathtt{answer_{2*i}}(\overline{vars(P')[V_N\rightarrow V_N']},D),$ $ \mathtt{answer_{2*i+1}}(\overline{vars(P'')[V_N\rightarrow V_N'']},D).$

Step 2. We now add the following FILTER expressions $ R^b_{(2)}$ and $ R^b_{(6')}$ , respectively, to the resulting rule bodies which ``emulate'' the relaxed b-compatibility:

\begin{displaymath}\begin{array}{ll} R^b_{(2)} = \bigwedge_{v \in VN} ( & ((v=v... ...'))\ \vee\ & ((v=v')\ \wedge\ \neg BOUND(v'))\ ) \end{array}\end{displaymath}
The rewritten rules are again subject to the $ LT$ rewriting. Note that, strictly speaking the filter expression introduced here does not fulfill the assumption of safe filter expressions, since it creates new bindings for the variable $ v$ . However, these can safely be allowed here, since the translation only creates valid input/output term bindings for the external Datalog predicate '$ =$ '. The subtle difference between $ R^b_{(2)}$ and $ R^b_{(6')}$ lies in the fact that $ R^b_{(2)}$ preferably ``carries over'' bound values from $ v'$ or $ v''$ to $ v$ whereas $ R^b_{(6')}$ always takes the value of $ v'$ . The effect of this becomes obvious in the translation of Example 5 which we leave as an exercise to the reader. We note that the potential exponential (with respect to $ \vert V_N\vert$ ) blowup of the program size by unfolding the filter expressions into negation normal form during the $ LT$ rewriting13is not surprising, given the negative complexity results in [16]. In total, we obtain a program which $ \ensuremath{\Pi_Q}\xspace ^b$ which reflects the normative b-joining semantics. Consequently, we get sound and complete query translations for all three semantics:
Corollary 2 (Soundness and completeness of $ \ensuremath{\Pi_Q}\xspace ^x$ ) Given an arbitrary graph pattern $ P$ , the extension of predicate $ \mathtt{answer_1}$ in the unique answer set $ M$ of $ \ensuremath{\Pi_Q}\xspace ^x$ represents all and only the solution tuples for $ Q = (V,P,DS)$ with respect to the $ x$ -joining semantics, for $ x\in\{b,c,s\}$ .
In the following, we will drop the superscript $ x$ in $ \ensuremath{\Pi_Q}\xspace $ implicitly refer to the normative b-joining translation/semantics.


5 Possible Extensions

As it turns out, the embedding of SPARQL in the rules world opens a wide range of possibilities for combinations. In this section, we will first discuss some straightforward extensions of SPARQL which come practically for free with the translation to Datalog provided before. We will then discuss the use of SPARQL itself as a simple RDF rules language14 which allows to combine RDF fact bases with implicitly specified further facts and discuss the semantics thereof briefly. We conclude this section with revisiting the open issue of entailment regimes covering RDFS or OWL semantics in SPARQL.

5.1 Additional Language Features

Set Difference

As mentioned before, set difference is not present in the current SPARQL specification syntactically, though hidden, and would need to be emulated via a combination of OPTIONAL and FILTER constructs. As we defined the MINUS operator here in a completely modular fashion, it could be added straightforwardly without affecting the semantics definition.

Nested queries

Nested queries are a distinct feature of SQL not present in SPARQL. We suggest a simple, but useful form of nested queries to be added: Boolean queries $ Q_\textsf{ASK}\xspace =(\emptyset,P_\textsf{ASK}\xspace ,DS_\textsf{ASK}\xspace ))$ with an empty result form (denoted by the keyword ASK) can be safely allowed within FILTER expressions as an easy extension fully compatible with our translation. Given query $ Q = (V,P,DS)$ , with sub-pattern $ (P_1\ \textsf{FILTER}\xspace \ (\textsf{ASK}\xspace Q_{\textsf{ASK}\xspace }))$ we can modularly translate such subqueries by extending $ \ensuremath{\Pi_Q}\xspace $ with $ \Pi_{Q'}$ where $ Q'=(vars(P_1)\cap vars(P_\textsf{ASK}\xspace ),P_\textsf{ASK}\xspace ,DS_\textsf{ASK}\xspace ))$ . Moreover, we have to rename predicate names $ \mathtt{answer}_i$ to $ \mathtt{answer^{Q'}}_i$ in $ \Pi_{Q'}$ . Some additional considerations are necessary in order to combine this within arbitrary complex filter expressions, and we probably need to impose well-designedness for variables shared between $ P$ and $ P_\textsf{ASK}\xspace $ similar to Def. 4. We leave more details as future work.


5.2 Result Forms and Solution Modifiers

We have covered only SELECT queries so far. As shown in the previous section, we can consider ASK queries equally. A limited form of the CONSTRUCT result form, which allows to construct new triples could be emulated in our approach as well. Namely, we can allow queries of the form

$\displaystyle Q_{\textsf{C}}= (\textsf{CONSTRUCT}\xspace P_{\textsf{C}},P,DS)$
where $ P_{\textsf{C}}$ is a graph pattern consisting only of bNode-free triple patterns. We can model these by adding a rule
$\displaystyle \mathtt{triple}(s,p,o,\textsf{C})$ : - $\displaystyle \xspace \mathtt{answer_1}(\overline{vars(P_{\textsf{C}})},\mathtt{default}).$ (2)

to $ \ensuremath{\Pi_Q}\xspace $ for each triple $ (s, p, o)$ in $ P_{\textsf{C}}$ . The result graph is then naturally represented in the answer set of the program extended that way in the extension of the predicate $ \mathtt{triple}$ .

5.3 SPARQL as a Rules Language

As it turns out with the extensions defined in the previous subsections, SPARQL itself may be viewed as an expressive rules language on top of RDF. CONSTRUCT statements have an obvious similarity with view definitions in SQL, and thus may be seen as rules themselves.

Intuitively, in the translation of CONSTRUCT we ``stored'' the new triples in a new triple outside the dataset $ DS$ . We can imagine a similar construction in order to define the semantics of queries over datasets mixing such CONSTRUCT statements with RDF data in the same turtle file.

Let us assume such a mixed file containing CONSTRUCT rules and RDF triples web-accessible at IRI $ g$ , and a query $ Q = (V,P,DS)$ , with $ DS=(G,G_n)$ . The semantics of a query over a dataset containing $ g$ may then be defined by recursively adding $ \Pi_{Q_{\textsf{C}}}$ to $ \ensuremath{\Pi_Q}\xspace $ for any CONSTRUCT query $ Q_{\textsf{C}}$ in $ g$ plus the rules (2) above with their head changed to $ \mathtt{triple}(s,p,o,g)$ . We further need to add a rule

$\displaystyle \mathtt{triple}(s,p,o,default)$ : - $\displaystyle \xspace \mathtt{triple}(s,p,o,g).$
for each $ g \in G$ , in order not to omit any of the implicit triples defined by such ``CONSTRUCT rules''. Analogously to the considerations for nested ASK queries, we need to rename the $ \mathtt{answer}_i$ predicates and $ default$ constants in every subprogram $ \Pi_{Q_{\textsf{C}}}$ defined this way.

Naturally, the resulting programs possibly involve recursion, and, even worse, recursion over negation as failure. Fortunately, the general answer set semantics, which we use, can cope with this. For some important aspects on the semantics of such distributed rules and facts bases, we refer to [17], where we also outline an alternative semantics based on the well-founded semantics. A more in-depth investigation of the complexity and other semantic features of such a combination is on our agenda.

5.4 Revisiting Entailment Regimes

The current SPARQL specification does not treat entailment regimes beyond RDF simple entailment. Strictly speaking, even RDF entailment is already problematic as a basis for SPARQL query evaluation; a simple query pattern like $ P= (?X,\textsf{rdf:type}\xspace , \textsf{rdf:Property}\xspace )$ would have infinitely many solutions even on the empty (sic!) dataset by matching the infinitely many axiomatic triples in the RDF(S) semantics.

Finite rule sets which approximate the RDF(S) semantics in terms of positive Datalog rules [17] have been implemented in systems like TRIPLE15 or JENA16. Similarly, fragments and extensions of OWL [12,3,14] definable in terms of Datalog rule bases have been proposed in the literature. Such rule bases can be parametrically combined with our translations, implementing what one might call RDFS$ ^-$ or OWL$ ^-$ entailment at least. It remains to be seen whether the SPARQL working group will define such reduced entailment regimes.

More complex issues arise when combining a nonmonotonic query language like SPARQL with ontologies in OWL. An embedding of SPARQL into a nonmonotonic rules language might provide valuable insights here, since it opens up a whole body of work done on combinations of such languages with ontologies [7,19].


6 Conclusions & Outlook

In this paper, we presented three possible semantics for SPARQL based on [16] which differ mainly in their treatment of joins and their translations to Datalog rules. We discussed intuitive behavior of these different joins in several examples. As it turned out, the s-joining semantics which is close to traditional treatment of joins over incomplete relations and the c-joining semantics are nicely embeddable into Datalog. The b-joining semantics which reflects the normative behavior as described by the current SPARQL specification is most difficult to translate. We also suggested some extension of SPARQL, based on this translation. Further, we hope to have contributed to clarifying the relationships between the Query, Rules and Ontology layers of the Semantic Web architecture with the present work.

A prototype of the presented translation has been implemented on top of the dlvhex system, a flexible framework for developing extensions for the declarative Logic Programming Engine DLV17. The prototype is available as a plugin at http://con.fusion.at/dlvhex/. The web-page also provides an online interface for evaluation, where the reader can check translation results for various example queries, which we had to omit here for space reasons. We currently implemented the c-joining and b-joining semantics and we plan to gradually extend the prototype towards the features mentioned in Sec. 5, in order to query mixed RDF+SPARQL rule and fact bases. Implementation of further extensions, such as the integration of aggregates typical for database query language, and recently defined for recursive Datalog programs in a declarative way compatible with the answer set semantics [9], are on our agenda. We are currently not aware of any other engine implementing the full semantics defined in [16].

7 Acknowledgments

Special thanks go to Jos de Bruijn and Reto Krummenacher for discussions on earlier versions of this document, to Bijan Parsia, Jorge Pérez, and Andy Seaborne for valuable email-discussions, to Roman Schindlauer for his help on prototype implementation on top of dlvhex, and to the anonymous reviewers for various useful comments. This work is partially supported by the Spanish MEC under the project TIC-2003-9001 and by the EC funded projects TripCom (FP6-027324) and KnowledgeWeb (IST 507482).

Bibliography

1
C. Baral.
Knowledge Representation, Reasoning and Declarative Problem Solving.
Cambr.Univ. Press, 2003.
2
D. Beckett.
Turtle - Terse RDF Triple Language. Tech. Report, 4 Apr. 2006.
3
J. de Bruijn, A. Polleres, R. Lara, D. Fensel.
OWL DL vs. OWL Flight: Conceptual modeling and reasoning for the semantic web.
In Proc. WWW-2005, 2005.
4
J. Carroll, C. Bizer, P. Hayes, P. Stickler.
Named graphs.
Journal of Web Semantics, 3(4), 2005.
5
R. Cyganiak.
A relational algebra for sparql.
Tech. Report HPL-2005-170, HP Labs, Sept. 2005.
6
J. de Bruijn, E. Franconi, S. Tessaris.
Logical reconstruction of normative RDF.
OWL: Experiences and Directions Workshop (OWLED-2005), 2005.
7
T. Eiter, G. Ianni, A. Polleres, R. Schindlauer, H. Tompits.
Reasoning with rules and ontologies.
Reasoning Web 2006, 2006. Springer
8
T. Eiter, G. Ianni, R. Schindlauer, H. Tompits.
A Uniform Integration of Higher-Order Reasoning and External Evaluations in Answer Set Programming.
Int.l Joint Conf. on Art. Intelligence (IJCAI), 2005.
9
W. Faber, N. Leone, G. Pfeifer.
Recursive aggregates in disjunctive logic programs: Semantics and complexity.
Proc. of the 9th European Conf. on Art. Intelligence (JELIA 2004), 2004. Springer.
10
A. V. Gelder, K. Ross, J. Schlipf.
Unfounded sets and well-founded semantics for general logic programs.
7 $ ^{\textrm{th}}$ ACM Symp. on Principles of Database Systems, 1988.
11
M. Gelfond, V. Lifschitz.
Classical Negation in Logic Programs and Disjunctive Databases.
New Generation Computing, 9:365-385, 1991.
12
B. N. Grosof, I. Horrocks, R. Volz, S. Decker.
Description logic programs: Combining logic programs with description logics.
Proc. WWW-2003, 2003.
13
P. Hayes.
RDF semantics.
W3C Recommendation, 10 Feb. 2004. http://www.w3.org/TR/rdf-mt/
14
H. J. ter Horst.
Completeness, decidability and complexity of entailment for RDF Schema and a semantic extension involving the OWL vocabulary.
Journal of Web Semantics, 3(2), July 2005.
15
J. W. Lloyd, R. W. Topor.
Making prolog more expressive.
Journal of Logic Programming, 1(3):225-240, 1984.
16
J. Pérez, M. Arenas, C. Gutierrez.
Semantics and complexity of SPARQL.
The Semantic Web - ISWC 2006, 2006. Springer.
17
A. Polleres, C. Feier, A. Harth.
Rules with contextually scoped negation.
Proc. 3 $ ^{\emph{rd}}$ European Semantic Web Conf. (ESWC2006), 2006. Springer.
18
E. Prud'hommeaux, A. S. (ed.).
SPARQL Query Language for RDF,
W3C Working Draft, 4 Oct. 2006. http://www.w3.org/TR/rdf-sparql-query/
19
R. Rosati.
Reasoning with Rules and Ontologies.
Reasoning Web 2006, 2006. Springer.
20
SQL-99.
Information Technology - Database Language SQL- Part 3: Call Level Interface (SQL/CLI).
Technical Report INCITS/ISO/IEC 9075-3, INCITS/ISO/IEC, Oct. 1999.
Standard specification.
21
J. D. Ullman.
Principles of Database and Knowledge Base Systems.
Computer Science Press, 1989.



Footnotes

1
An extended technical report of this article is available at http://www.polleres.net/publications/GIA-TR-2006-11-28.pdf. This work was mainly conducted under a Spanish MEC grant at Universidad Rey Juan Carlos, Móstoles, Spain.
2
http://www.w3.org/2005/rules/wg
3
For reasons of legibility and conciseness, we omit the leading 'http://' or other schema identifiers in IRIs.
4
Following SPARQL, we are slightly more general than the original RDF specification in that we allow literals in subject positions.
5
We do not consider bNodes in patterns as these can be semantically equivalently replaced by variables in graph patterns [6].
6
Note that AND and MINUS are not designated keywords in SPARQL, but we use them here for reasons of readability and in order to keep with the operator style definition of [16]. MINUS is syntactically not present at all, but we will suggest a syntax extension for this particular keyword in Sec. 5.
7
$ \top$ stands for ``true'', $ \bot$ stands for ``false'' and $ \varepsilon$ stands for errors, see [18, Sec. 11.3] and Example 2 for details.
8
We consider ASP, more precisely a simplified version of ASP with so-called HEX-programs [8] here, since it is up to date the most general extension of Datalog.
9
By ``identified'' we mean here that IRIs denote network accessible resources which correspond to RDF graphs.
10
We assume the number of accessible IRIs finite.
11
The notion of an oracle function reflects the intuition that external predicates compute (sets of) outputs for a particular input, depending on the interpretation. The dependence on the interpretation is necessary for instance for defining the semantics of external predicates querying OWL [8] or computing aggregate functions.
12
In fact, we use slightly simplified definitions from [7] for HEX-programs, with the sole difference that we restrict ourselves to a fixed set of external predicates.
13
Lloyd and Topor can avoid this potential exponential blowup by introducing new auxiliary predicates. However, we cannot do the same trick, mainly for reasons of preserving safety of external predicates as defined in Sec. 3.
14
Thus, the ``...(and back)'' in the title of this paper!
TRIPLE15
http://triple.semanticweb.org/
JENA16
http://jena.sourceforge.net/
DLV17
http://www.dlvsystem.com/


Valid XHTML 1.0 Transitional