Created
July 13, 2018 09:24
-
-
Save comnik/8cd41a70c74625a336ca617ee0c9c42a to your computer and use it in GitHub Desktop.
RGA in Datalog (https://speakerdeck.com/ept/data-structures-as-queries-expressing-crdts-using-datalog?slide=22)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;; RGA | |
;; https://speakerdeck.com/ept/data-structures-as-queries-expressing-crdts-using-datalog?slide=22 | |
(def schema | |
{:id/node {:db/valueType :Number} | |
:id/ctr {:db/valueType :Number} | |
:insert/id {:db/valueType :Eid} | |
:insert/parent {:db/valueType :Eid} | |
:assign/id {:db/valueType :Eid} | |
:assign/elem {:db/valueType :Eid} | |
:assign/value {:db/valueType :String} | |
:remove/id {:db/valueType :Eid}}) | |
(def db (create-db schema)) | |
(def rules | |
'[[(has-child? ?parent) [_ :insert/parent ?parent]] | |
[(later? ?id1 ?id2) | |
[?id1 :id/ctr ?ctr1] [?id1 :id/node ?n1] | |
[?id2 :id/ctr ?ctr2] [?id2 :id/node ?n2] | |
(or [(> ?ctr1 ?ctr2)] | |
(and [(= ?ctr1 ?ctr2)] | |
[(> ?n1 ?n2)]))] | |
[(later-child ?parent ?child2) | |
[?i1 :insert/parent ?parent] [?i1 :insert/id ?child1] | |
[?i2 :insert/parent ?parent] [?i2 :insert/id ?child2] | |
[(later? ?child1 ?child2)]] | |
[(first-child ?parent ?child) | |
[?i :insert/child ?child] [?i :insert/parent ?parent] | |
(not [(later-child ?parent ?child)])] | |
[(sibling? ?child1 ?child2) | |
[?i1 :insert/id ?child1] [?i1 :insert/parent ?parent] | |
[?i2 :insert/id ?child2] [?i2 :insert/parent ?parent]] | |
[(later-sibling ?sib1 ?sib2) | |
[(sibling? ?sib1 ?sib2)] | |
[(later? ?sib1 ?sib2)]] | |
[(later-sibling2 ?sib1 ?sib3) | |
[(sibling? ?sib1 ?sib2)] | |
[(sibling? ?sib1 ?sib3)] | |
[(later? ?sib1 ?sib2)] | |
[(later? ?sib2 ?sib3)]] | |
[(next-sibling ?sib1 ?sib2) | |
[(later-sibling ?sib1 ?sib2)] | |
(not [(later-sibling ?sib1 ?sib2)])] | |
[(has-next-sibling? ?sib1) [(later-sibling ?sib1 _)]] | |
[(next-sibling-anc ?start ?next) [(next-sibling ?start ?next)]] | |
[(next-sibling-anc ?start ?next) | |
[?i1 :insert/id ?start] [?i1 :insert/parent ?parent] | |
[(next-sibling-anc ?parent ?next)] | |
(not [(has-next-sibling? ?start)])] | |
[(next-elem ?prev ?next) [(first-child ?prev ?next)]] | |
[(next-elem ?prev ?next) | |
[(next-sibling-anc ?prev ?next)] | |
(not [(has-child? ?prev)])] | |
;; Assigning values to list elements. | |
[(current-value ?elem ?value) | |
[?op :assign/id ?id] [?op :assign/elem ?elem] [?op :assign/value ?value] | |
(not [_ :remove/id ?id])] | |
[(has-value? ?elem) [(current-value ?elem _)]] | |
[(skip-blank ?from ?to) [(next-elem ?from ?to)]] | |
[(skip-blank ?from ?to) | |
[(next-elem ?from ?via)] | |
(not [(has-value? ?via)]) | |
[(skip-blank ?via ?to)]] | |
[(next-visible ?prev ?next) | |
[(has-value? ?prev)] | |
[(skip-blank ?prev ?next)] | |
[(has-value? ?next)]] | |
;; Output | |
[(result ?ctr1 ?ctr2 ?value) | |
[?id1 :id/ctr ?ctr1] | |
[?id2 :id/ctr ?ctr2] | |
[(next-visible ?id1 ?id2)] | |
[(current-value ?id2 ?value)]]]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment