summaryrefslogtreecommitdiff
path: root/src/scm/webid-oidc/rdf-index.scm
blob: 71919ada97f1d604d2ddee7f14c7fee22ae387ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
;; disfluid, implementation of the Solid specification
;; Copyright (C) 2020, 2021  Vivien Kraus

;; This program is free software: you can redistribute it and/or modify
;; it under the terms of the GNU Affero General Public License as
;; published by the Free Software Foundation, either version 3 of the
;; License, or (at your option) any later version.

;; This program is distributed in the hope that it will be useful,
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
;; GNU Affero General Public License for more details.

;; You should have received a copy of the GNU Affero General Public License
;; along with this program.  If not, see <https://www.gnu.org/licenses/>.

(define-module (webid-oidc rdf-index)
  #:use-module (oop goops)
  #:use-module (rdf rdf)
  #:use-module (web uri)
  #:use-module (ice-9 match)
  #:use-module (srfi srfi-26)
  #:declarative? #t
  #:export
  (
   with-index
   ))

(define normalize
  (match-lambda
    ((and (= uri-scheme scheme)
          (= uri-userinfo userinfo)
          (= uri-host host)
          (= uri-port port)
          (= uri-path path)
          (= uri-query query)
          (= uri-fragment fragment))
     (let ((normalized-path
            (let ((path-ends-in-slash? (string-suffix? "/" path)))
              (string-append
               "/"
               (encode-and-join-uri-path
                (split-and-decode-uri-path path))
               (if (and (not (equal? path "/"))
                        path-ends-in-slash?)
                   "/"
                   ""))))
           (normalized-query
            (and query
                 (uri-encode (uri-decode query))))
           (normalized-fragment
            (and fragment
                 (uri-encode (uri-decode fragment)))))
       (build-uri scheme
                  #:userinfo userinfo
                  #:host host
                  #:port port
                  #:path normalized-path
                  #:query normalized-query
                  #:fragment normalized-fragment)))))

(define normalize-object
  (match-lambda
    ((? string? (= string->uri (? uri? x)))
     (uri->string (normalize x)))
    (object object)))

(define-class <rdf-index> ()
  (triples #:init-keyword #:triples #:getter triples)
  (subject-index #:init-thunk (lambda () (make-hash-table))
                 #:getter subject-index)
  (predicate-index #:init-thunk (lambda () (make-hash-table))
                   #:getter predicate-index)
  (object-index #:init-thunk (lambda () (make-hash-table))
                #:getter object-index))

(define (build-index triples)
  (let ((ret (make <rdf-index> #:triples (list->vector triples))))
    (let do-index ((n (length triples))
                   (triples (reverse triples)))
      (match triples
        (() ret)
        ((($ rdf-triple
             (= normalize-object s)
             (= normalize-object p)
             (= normalize-object o))
          triples ...)
         (let ((other-s (hash-ref (subject-index ret) s '()))
               (other-p (hash-ref (predicate-index ret) p '()))
               (other-o (hash-ref (object-index ret) o '()))
               (i (- n 1)))
           (hash-set! (subject-index ret) s `(,i ,@other-s))
           (hash-set! (predicate-index ret) p `(,i ,@other-p))
           (hash-set! (object-index ret) o `(,i ,@other-o)))
         (do-index (- n 1) triples))))))

(define intersection-2
  ;; Intersection of two lists of integers, but if one is false, only
  ;; consider the other.
  (match-lambda*
    ((or (#f x) (x #f)) x)
    ((or (() _) (_ ())) '())
    ((and (a b)
          ((hda tla ...) (hdb tlb ...)))
     (cond ((< hda hdb) (intersection-2 tla b))
           ((> hda hdb) (intersection-2 a tlb))
           (else `(,hda ,@(intersection-2 tla tlb)))))))

(define intersection
  (match-lambda*
    ((x) x)
    ((a b c ...)
     (apply intersection (intersection-2 a b) c))))

(define (rdf-match index subject predicate object)
  (let ((by-subject
         (and subject
              (hash-ref (subject-index index)
                        (normalize-object subject)
                        '())))
        (by-predicate
         (and predicate
              (hash-ref (predicate-index index)
                        (normalize-object predicate)
                        '())))
        (by-object
         (and object
              (hash-ref (object-index index)
                        (normalize-object object)
                        '()))))
    (let ((indices (intersection by-subject by-predicate by-object)))
      (if indices
          (let accumulate-triples ((acc '())
                                   (i indices))
            (match i
              (() (reverse acc))
              ((next i ...)
               (let ((t (vector-ref (triples index) next)))
                 (accumulate-triples `(,t ,@acc) i)))))
          (vector->list (triples index))))))
        
(define (with-index graph f)
  (f (cute rdf-match (build-index graph) <> <> <>)))