aboutsummaryrefslogtreecommitdiff
path: root/guix-build-coordinator/datastore/sqlite.scm
blob: 749ddccc210b94b21cd8b59ee110487e3edacd7d (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
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
(define-module (guix-build-coordinator datastore sqlite)
  #:use-module (oop goops)
  #:use-module (srfi srfi-1)
  #:use-module (ice-9 match)
  #:use-module (ice-9 threads)
  #:use-module (sqlite3)
  #:use-module (guix derivations)
  #:use-module (guix-build-coordinator utils)
  #:use-module (guix-build-coordinator config)
  #:use-module (guix-build-coordinator datastore abstract)
  #:export (sqlite-datastore
            datastore-update
            datastore-store-derivation
            datastore-store-build
            datastore-new-agent
            datastore-list-agents
            datastore-find-agent
            datastore-new-agent-password
            datastore-agent-password-exists?
            datastore-list-unprocessed-builds
            datastore-replace-build-allocation-plan))

(define-class <sqlite-datastore> (<abstract-datastore>)
  database-file
  worker-thread-channel)

(define* (sqlite-datastore database-uri #:key update-database?)
  (define database-file
    (string-drop database-uri
                 (string-length "sqlite://")))

  (when update-database?
    (run-sqitch database-file))

  (let ((datastore (make <sqlite-datastore>)))

    (slot-set! datastore 'database-file database-file)

    (slot-set!
     datastore
     'worker-thread-channel
     (make-worker-thread-channel (lambda ()
                                   (list (db-open database-file)))
                                 #:parallelism
                                 (min (current-processor-count) 4)))

    datastore))

(define-method (datastore-find-agent
                (datastore <sqlite-datastore>)
                uuid)
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (let ((statement
            (sqlite-prepare
             db
             "
SELECT description FROM agents WHERE id = :id")))

       (sqlite-bind-arguments
        statement
        #:id uuid)

       (let ((result
              (match (sqlite-map
                      (match-lambda
                        (#(description)
                         `((description . ,description))))
                      statement)
                (() #f)
                ((agent) agent))))
         (sqlite-reset statement)

         result)))))

(define-method (datastore-new-agent
                (datastore <sqlite-datastore>)
                uuid
                description)
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (insert-agent db uuid description)))
  #t)

(define-method (datastore-list-agents
                (datastore <sqlite-datastore>))
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (let ((statement
            (sqlite-prepare
             db
             "
SELECT id, description FROM agents ORDER BY id")))

       (let ((agents (sqlite-map
                       (match-lambda
                         (#(id description)
                          `((uuid        . ,id)
                            (description . ,description))))
                       statement)))
         (sqlite-reset statement)

         agents)))))

(define-method (datastore-new-agent-password
                (datastore <sqlite-datastore>)
                agent-uuid
                password)
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (insert-agent-password db agent-uuid password)))
  #t)

(define-method (datastore-agent-password-exists?
                (datastore <sqlite-datastore>)
                uuid
                password)
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (let ((statement
            (sqlite-prepare
             db
             "
SELECT 1 FROM agent_passwords \
WHERE agent_id = :agent_id AND password = :password")))

       (sqlite-bind-arguments
        statement
        #:agent_id uuid
        #:password password)

       (let ((result
              (match (sqlite-step statement)
                (#f #f)
                (#(1) #t))))
         (sqlite-reset statement)

         result)))))

(define-method (datastore-store-derivation
                (datastore <sqlite-datastore>)
                derivation)
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (sqlite-exec db "BEGIN TRANSACTION;")
     (insert-derivation-and-return-outputs db derivation)
     (sqlite-exec db "COMMIT TRANSACTION;")))
  #t)

(define-method (datastore-store-build
                (datastore <sqlite-datastore>)
                derivation-name
                uuid
                priority)
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (sqlite-exec db "BEGIN TRANSACTION;")
     (insert-build db uuid derivation-name priority)
     (sqlite-exec db "COMMIT TRANSACTION;")))
  #t)

(define-method (datastore-update
                (datastore <sqlite-datastore>))
  (run-sqitch
   (slot-ref datastore 'database-file))

  #t)

(define-method (datastore-list-unprocessed-builds
                (datastore <sqlite-datastore>))
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (let ((statement
            (sqlite-prepare
             db
             "
SELECT uuid, derivation_name, priority FROM builds WHERE processed = 0")))

       (let ((builds (sqlite-map
                      (match-lambda
                        (#(uuid derivation_name priority)
                         `((uuid            . ,uuid)
                           (derivation-name . ,derivation_name)
                           (priority        . ,priority))))
                      statement)))
         (sqlite-reset statement)

         builds)))))

(define-method (datastore-replace-build-allocation-plan
                (datastore <sqlite-datastore>)
                planned-builds)
  (define (clear-current-plan db)
    (sqlite-exec
     db
     "DELETE FROM build_allocation_plan"))

  (define (insert-new-plan db planned-builds)
    (sqlite-exec
     db
     (string-append
      "
INSERT INTO build_allocation_plan (build_id, agent_id, ordering) VALUES "
      (string-join
       (map (match-lambda
              ((build-id agent-id ordering)
               (simple-format
                #f
                "('~A', '~A', ~A)"
                build-id
                agent-id
                ordering)))
            planned-builds)
       ", ")
      ";")))

  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (sqlite-exec db "BEGIN TRANSACTION;")
     (clear-current-plan db)
     (insert-new-plan db planned-builds)
     (sqlite-exec db "COMMIT TRANSACTION;")))
  #t)

(define (db-open database)
  (define flags
    (list SQLITE_OPEN_READWRITE
          SQLITE_OPEN_NOMUTEX))

  (unless (file-exists? database)
    (run-sqitch database))

  (sqlite-open database (apply logior flags)))

(define (run-sqitch database-file)
  (let ((command
         (list (%config 'sqitch)
               "deploy"
               "--db-client" (%config 'sqitch-sqlite)
               "--chdir" (dirname (dirname (%config 'sqitch-plan)))
               "--plan-file" (%config 'sqitch-plan)
               (string-append "db:sqlite:" database-file))))

    (simple-format #t "running command: ~A\n"
                   (string-join command))
    (unless (zero? (apply system* command))
      (simple-format
       (current-error-port)
       "error: sqitch command failed\n")
      (exit 1))))

(define (changes-count db)
  (let ((statement
         (sqlite-prepare
          db
          "SELECT changes();")))
    (let ((count
           (vector-ref (sqlite-step statement)
                       0)))

      (sqlite-reset statement)

      count)))

(define (select-derivation-outputs db derivation-name)
  (let ((statement
         (sqlite-prepare
          db
          "
SELECT name, id FROM derivation_outputs WHERE derivation_name = :derivation_name")))

    (sqlite-bind-arguments
     statement
     #:derivation_name derivation-name)

    (let ((outputs (sqlite-map
                    (match-lambda
                      (#(name output-id)
                       (cons name output-id)))
                    statement)))
      (sqlite-reset statement)

      outputs)))

(define (insert-derivation-and-return-outputs db derivation)
  (define derivation-name
    (derivation-file-name derivation))

  (define (insert-derivation)
    (let ((statement
           (sqlite-prepare
            db
            "
INSERT OR IGNORE INTO derivations (name, system) VALUES (:name, :system)")))

      (sqlite-bind-arguments
       statement
       #:name derivation-name
       #:system (derivation-system derivation))

      (sqlite-step statement)
      (sqlite-reset statement)

      (changes-count db)))

  (let ((changes (insert-derivation)))
    (unless (eq? changes 0)
      (insert-derivation-inputs
       db
       derivation-name
       (derivation-inputs derivation))

      (insert-derivation-outputs
       db
       derivation-name
       (derivation-outputs derivation)))

    (select-derivation-outputs db derivation-name)))

(define (insert-derivation-inputs db derivation-name derivation-inputs)
  (unless (null? derivation-inputs)
    (let ((derivation-output-ids
           (append-map
            (lambda (derivation-input)
              (let ((output-ids-by-name
                     (insert-derivation-and-return-outputs
                      db
                      (derivation-input-derivation derivation-input))))
                (map
                 (lambda (output-name)
                   (assoc-ref output-ids-by-name output-name))
                 (derivation-input-sub-derivations derivation-input))))
            derivation-inputs)))
      (sqlite-exec
       db
       (string-append
        "
INSERT INTO derivation_inputs (derivation_name, derivation_output_id) VALUES "
        (string-join
         (map (lambda (derivation-output-id)
                (simple-format
                 #f
                 "('~A', ~A)"
                 derivation-name
                 derivation-output-id))
              derivation-output-ids)
         ", ")
        ";")))))

(define (insert-derivation-outputs db derivation-name derivation-outputs)
  (sqlite-exec
   db
   (string-append
    "
INSERT INTO derivation_outputs (derivation_name, name, output) VALUES "
    (string-join
     (map (match-lambda
            ((name . derivation-output)
             (simple-format
              #f
              "('~A', '~A', '~A')"
              derivation-name
              name
              (derivation-output-path derivation-output))))
          derivation-outputs)
     ", ")
    ";")))

(define (insert-build db uuid derivation-name priority)
  (let ((statement
         (sqlite-prepare
          db
          "
INSERT INTO builds (uuid, derivation_name, priority)
VALUES (:uuid, :derivation_name, :priority)")))

    (sqlite-bind-arguments
     statement
     #:uuid uuid
     #:derivation_name derivation-name
     #:priority priority)

    (sqlite-step statement)
    (sqlite-reset statement)))

(define (insert-agent db uuid description)
  (let ((statement
         (sqlite-prepare
          db
          "
INSERT INTO agents (id, description)
VALUES (:id, :description)")))

    (sqlite-bind-arguments
     statement
     #:id uuid
     #:description description)

    (sqlite-step statement)
    (sqlite-reset statement)))

(define (insert-agent-password db uuid password)
  (let ((statement
         (sqlite-prepare
          db
          "
INSERT INTO agent_passwords (agent_id, password)
VALUES (:agent_id, :password)")))

    (sqlite-bind-arguments
     statement
     #:agent_id uuid
     #:password password)

    (sqlite-step statement)
    (sqlite-reset statement)))