https://github.com/vvvvalvalval/datalog-rules.git
git clone 'https://github.com/vvvvalvalval/datalog-rules.git'
(ql:quickload :vvvvalvalval.datalog-rules)
Yeah it does! – Anonymous Datomic user
Utilities for managing Datalog rulesets from Clojure.
By Datalog, we mean the rules language exposed by Datomic and Datascript (because of the data-orientation of Datalog, this library doesn't have any code dependency to either of those).
Project status: alpha, subject to breaking changes.
Rules are a powerful abstraction mechanism in the logic language that is Datalog, just like functions are a powerful abstraction mechanism in the procedural language that is Clojure.
However, Datalog rules come with limited infrastructure, which leaves much to be desired in a Clojure environment:
This library provides utilities to address these issues. It does so by providing global rules registries, called rulesets, upon which you can register rules from various places in your code, in a way that is friendly to interactive development.
Here's a complete usage example; see below for a detailed walkthrough.
(require '[datalog-rules.api :as dr])
(def my-ruleset (dr/ruleset {}))
;; registering rules
(dr/unirule my-ruleset
"Matches iff `?person` lives in `?country`"
'[(in-country ?person ?country)
[?person :person/address ?a]
[?a :address/town ?t]
[?t :town/country ?country]])
(dr/plurirule my-ruleset
"Matches iff ?person said 'hello' in her native language"
'(said-hello ?person))
(dr/pluriimpl my-ruleset :english-hi
'[(said-hello ?person)
[?person :speaks :english]
[?person :said "hi"]])
(dr/pluriimpl my-ruleset :french-hi
'[(said-hello ?person)
[?person :speaks :french]
[?person :said "salut"]])
;; retrieving the rules, for use in query.
(dr/rules my-ruleset)
=> [[(in-country ?person ?country)
[?person :person/address ?a]
[?a :address/town ?t]
[?t :town/country ?country]]
[(said-hello ?person)
[?person :speaks :english]
[?person :said "hi"]]
[(said-hello ?person)
[?person :speaks :french]
[?person :said "salut"]]]
First, you need to declare a ruleset, which is a store to which you will be able to register rules:
(require '[datalog-rules.api :as dr])
;; creating a ruleset (with default options)
(def my-ruleset (dr/ruleset {}))
Then you can register Datalog rules to that ruleset.
datalog-rules
makes an explicit distinction between 2 sorts of rules:
;; registering a unirule:
(dr/unirule my-ruleset
"Matches iff `?person` lives in `?country`"
'[(in-country ?person ?country)
[?person :person/address ?a]
[?a :address/town ?t]
[?t :town/country ?country]])
;; registering a plurirule
; declaring the interface...
(dr/plurirule my-ruleset
"Matches iff ?person said 'hello' in her native language"
'(said-hello ?person))
; ... then registering implementations:
(dr/pluriimpl my-ruleset :english-hi
'[(said-hello ?person)
[?person :speaks :english]
[?person :said "hi"]])
(dr/pluriimpl my-ruleset :french-hi
'[(said-hello ?person)
[?person :speaks :french]
[?person :said "salut"]])
The facts that a unirule has only 1 implementation, and that plurirule implementations are named,
allow unirule
, plurirule
and pluriimpl
calls to be idempotent - thus more friendly to interactive development.
After having registered the rules, you can retrieve by calling dr/rules
:
(dr/rules my-ruleset)
=> [[(in-country ?person ?country)
[?person :person/address ?a]
[?a :address/town ?t]
[?t :town/country ?country]]
[(said-hello ?person)
[?person :speaks :english]
[?person :said "hi"]]
[(said-hello ?person)
[?person :speaks :french]
[?person :said "salut"]]]
You can them readily use them in query:
(require '[datomic.api :as d])
(defn who-said-hello-in-america [db]
(d/q '[:find [?person ...] :in % $ :where
(in-country ?person :usa)
(said-hello ?person)]
(dr/rules my-ruleset) db))
dr/rules
caches its result such that subsequent calls on the same ruleset return identical data structures,
which can be leveraged by the Datalog engine.
Similarly to clojure.repl/doc
, datalog-rules.api/rule-doc
prints the documentation for a registered rule:
(dr/rule-doc my-ruleset in-country)
;-------------------------
;(in-country ?person ?country)
;
;Matches iff `?person` lives in `?country`
=> nil
Likewise, datalog-rules.api/rule-source
returns the source for a registered rule:
(dr/rule-source my-ruleset said-hello)
=>
[[(said-hello ?person) [?person :speaks :english] [?person :said "hi"]]
[(said-hello ?person) [?person :speaks :french] [?person :said "salut"]]]
In Datomic's current implementation of Datalog, the order of clauses in a rule matters for performance.
For instance, the (in-country ?person ?country)
rule we wrote above is fast if ?person
is already bound,
but slow if ?country
is already bound and ?person
is not.
If that's an issue, one solution is to define 2 rules with different clauses order in their body, and choose which one to use depending on the query:
(dr/unirule my-ruleset
"Matches iff `?person` lives in `?country`. Binds ?person first."
'[(in-country ?person ?country)
[?person :person/address ?a]
[?a :address/town ?t]
[?t :town/country ?country]])
(dr/unirule my-ruleset
"Matches iff `?person` lives in `?country`. Binds ?country first."
'[(in-country- ?person ?country)
[?t :town/country ?country]
[?a :address/town ?t]
[?person :person/address ?a]])
Of course, the issue is that you're duplicating code when doing this.
Instead, you can use the :auto-reverse
option of (datalog-rules.api/ruleset)
:
(def my-ruleset (dr/ruleset {:auto-reverse true}))
(dr/unirule my-ruleset
"Matches iff `?person` lives in `?country`."
'[(in-country ?person ?country)
[?person :person/address ?a]
[?a :address/town ?t]
[?t :town/country ?country]])
(dr/rules my-ruleset)
=> [[(in-country ?person ?country)
[?person :person/address ?a]
[?a :address/town ?t]
[?t :town/country ?country]]
[(in-country- ?person ?country) ;; for the reversed rule, a '-' is appended to the rule name
[?t :town/country ?country]
[?a :address/town ?t]
[?person :person/address ?a]]]
Similarly to extend-protocol
, unirule
/ plurirule
/ pluriimpl
work by performing load-time mutation of the
target ruleset.
Therefore, to avoid having problems during interactive development, it is recommended to isolate each ruleset in its own namespace:
(ns myapp.ruleset
(:require [datalog-rules.api :as dr]))
(def my-ruleset (dr/ruleset {})
Most applications probably need only one ruleset.
To make things more comfortable, I recommend making your own wrappers the datalog-rules
API:
(ns myapp.rules
(:require [datalog-rules.api :as dr]
[myapp.ruleset :refer [my-ruleset]))
(def unirule (partial dr/unirule my-ruleset))
(def plurirule (partial dr/plurirule my-ruleset))
(def pluriimpl (partial dr/pluriimpl my-ruleset))
(defmacro rule-doc [rule-name]
`(dr/rule-doc my-ruleset ~rule-name))
(defmacro rule-source [rule-name]
`(dr/rule-source my-ruleset ~rule-name))
(defn rules []
(dr/rules my-ruleset))
| Functions | Rules |
|———–|——-|
|(defn ...)
| (unirule my-ruleset ...)
|
|(defmulti <name> ...)
| (plurirule my-ruleset ...)
|
|(defmethod <name> ...)
| (pluriimpl my-ruleset ...)
|
|(doc <name>)
| (rule-doc my-ruleset <name>)
|
|(source <name>)
| (rule-source my-ruleset <name>)
|
Interestingly, because Datalog is data-oriented, this library has no dependency to a concrete Datalog engine (such as Datomic Peer Library or DataScript).
Copyright © 2016 Valentin Waeselynck and contributors.
Distributed under the MIT License.