aboutsummaryrefslogtreecommitdiff
path: root/guix-build-coordinator/datastore/sqlite.scm
blob: 76b691bcb5396997623dfae58839b1e010fe36be (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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
(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-find-build
            datastore-store-build-result
            datastore-new-agent
            datastore-list-agents
            datastore-find-agent
            datastore-fetch-setup-failures
            datastore-store-setup-failure
            datastore-store-setup-failure/missing-inputs
            datastore-find-derivation-outputs
            datastore-new-agent-password
            datastore-agent-password-exists?
            datastore-list-unprocessed-builds
            datastore-list-agent-builds
            datastore-agent-for-build
            datastore-replace-build-allocation-plan
            datastore-allocate-builds-to-agent
            datastore-list-allocation-plan-builds))

(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-store-build-result
                (datastore <sqlite-datastore>)
                build-id
                agent-id
                result
                failure-reason)
  (define (insert-build-result db build-id agent-id result failure-reason)
    (sqlite-exec
     db
     (string-append
      "
INSERT INTO build_results (
  build_id, agent_id, result, failure_reason
) VALUES ('"
      build-id "', '"
      agent-id "', '"
      result "', "
      (if failure-reason
          (string-append "'" failure-reason "'")
          "NULL")
      ")")))

  (define (remove-build-allocation db build-id agent-id)
    (sqlite-exec
     db
     (string-append
      "
DELETE FROM allocated_builds WHERE build_id = '"
      build-id
      "' AND agent_id = '"
      agent-id
      "'")))

  (define (mark-build-as-processed db build-id)
    (sqlite-exec
     db
     (string-append
      "
UPDATE builds SET processed = 1 WHERE uuid = '" build-id "'")))

  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (sqlite-exec db "BEGIN TRANSACTION;")
     (insert-build-result db build-id agent-id result failure-reason)
     (remove-build-allocation db build-id agent-id)
     (mark-build-as-processed db build-id)
     (sqlite-exec db "COMMIT TRANSACTION;")))
  #t)

(define (insert-setup-failure-and-remove-allocation
         db
         build-id
         agent-id
         failure-reason)
  (sqlite-exec
   db
   (string-append
    "
DELETE FROM allocated_builds WHERE build_id = '"
    build-id
    "' AND agent_id = '"
    agent-id
    "'"))

  (sqlite-exec
   db
   (string-append
    "
INSERT INTO setup_failures (
  build_id, agent_id, failure_reason
) VALUES ('"
    build-id "', '"
    agent-id "', '"
    failure-reason
    "')"))

  (last-insert-rowid db))

(define-method (datastore-store-setup-failure/missing-inputs
                (datastore <sqlite-datastore>)
                build-id
                agent-id
                missing-inputs)
  (define (insert-missing-inputs db setup-failure-id missing-inputs)
    (sqlite-exec
     db
     (string-append
      "
INSERT INTO setup_failure_missing_inputs (
  setup_failure_id, missing_input_store_path
) VALUES "
      (string-join
       (map (lambda (missing-input)
              (simple-format #f "(~A, '~A')"
                             setup-failure-id missing-input))
            missing-inputs)
       ", "))))

  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (sqlite-exec db "BEGIN TRANSACTION;")
     (let ((setup-failure-id
            (insert-setup-failure-and-remove-allocation db
                                                        build-id
                                                        agent-id
                                                        "missing_inputs")))
       (insert-missing-inputs db setup-failure-id missing-inputs))
     (sqlite-exec db "COMMIT TRANSACTION;")))
  #t)

(define-method (datastore-store-setup-failure
                (datastore <sqlite-datastore>)
                build-id
                agent-id
                failure-reason)
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (insert-setup-failure-and-remove-allocation db
                                                 build-id
                                                 agent-id
                                                 failure-reason))))

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

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

       (let ((result
              (match (sqlite-step statement)
                (#(uuid derivation_name priority processed)
                 `((uuid            . ,uuid)
                   (derivation-name . ,derivation_name)
                   (priority        . ,priority)
                   (processed       . ,processed))))))
         (sqlite-reset statement)

         result)))))

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

  #t)

(define-method (datastore-fetch-setup-failures
                (datastore <sqlite-datastore>))
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (let ((statement
            (sqlite-prepare
             db
             "
SELECT id, build_id, agent_id, failure_reason FROM setup_failures")))

       (let ((result (sqlite-fold
                      (lambda (row result)
                        (match row
                          (#(id build-id agent-id failure-reason)
                           (let ((failures-for-build-id
                                  (or (assoc-ref result build-id)
                                      '())))
                             (alist-cons
                              build-id
                              (cons `((id  . ,id)
                                      (agent-id . ,agent-id)
                                      (failure-reason . ,failure-reason))
                                    failures-for-build-id)
                              (alist-delete build-id result))))))
                      '()
                      statement)))
         (sqlite-reset statement)

         result)))))

(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)
     (unless (null? planned-builds)
       (insert-new-plan db planned-builds))
     (sqlite-exec db "COMMIT TRANSACTION;")))
  #t)

(define-method (datastore-allocate-builds-to-agent
                (datastore <sqlite-datastore>)
                agent-id
                build-ids)
  (define (insert-to-allocated-builds db agent-id build-ids)
    (sqlite-exec
     db
     (string-append
      "
INSERT INTO allocated_builds (build_id, agent_id) VALUES "
      (string-join
       (map (lambda (build-id)
              (simple-format
               #f
               "('~A', '~A')"
               build-id
               agent-id))
            build-ids)
       ", ")
      ";")))

  (define (remove-builds-from-plan db build-ids)
    (sqlite-exec
     db
     (string-append
      "
DELETE FROM build_allocation_plan
WHERE build_id IN ("
      (string-join
       (map (lambda (build-id)
              (string-append "'" build-id "'"))
            build-ids)
       ", ")
      ")")))

  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (sqlite-exec db "BEGIN TRANSACTION;")
     (insert-to-allocated-builds db agent-id build-ids)
     (remove-builds-from-plan db build-ids)
     (sqlite-exec db "COMMIT TRANSACTION;")))
  #t)

(define-method (datastore-list-allocation-plan-builds
                (datastore <sqlite-datastore>)
                agent-id
                limit)
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (let ((statement
            (sqlite-prepare
             db
             "
SELECT builds.uuid, builds.derivation_name
FROM builds
INNER JOIN build_allocation_plan
  ON builds.uuid = build_allocation_plan.build_id
WHERE build_allocation_plan.agent_id = :agent_id
LIMIT :limit")))

       (sqlite-bind-arguments
        statement
        #:agent_id agent-id
        #:limit limit)

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

         builds)))))

(define-method (datastore-list-agent-builds
                (datastore <sqlite-datastore>)
                agent-id)
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (let ((statement
            (sqlite-prepare
             db
             "
SELECT builds.uuid, builds.derivation_name, builds.priority
FROM builds
INNER JOIN allocated_builds
  ON builds.uuid = allocated_builds.build_id
WHERE allocated_builds.agent_id = :agent_id")))

       (sqlite-bind-arguments
        statement
        #:agent_id agent-id)

       (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-agent-for-build
                (datastore <sqlite-datastore>)
                build-id)
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (let ((statement
            (sqlite-prepare
             db
             "
SELECT agent_id
FROM allocated_builds
WHERE allocated_builds.build_id = :build_id
UNION SELECT agent_id
FROM build_results
WHERE build_results.build_id = :build_id")))

       (sqlite-bind-arguments
        statement
        #:build_id build-id)

       (let ((result
              (match (sqlite-step statement)
                (#(agent-id) agent-id)
                (#f #f))))
         (sqlite-reset statement)

         result)))))

(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 (last-insert-rowid db)
  (let ((statement
         (sqlite-prepare
          db
          "SELECT last_insert_rowid();")))
    (let ((id
           (vector-ref (sqlite-step statement)
                       0)))

      (sqlite-reset statement)

      id)))

(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-method (datastore-find-derivation-outputs
                (datastore <sqlite-datastore>)
                derivation-name)
  (call-with-worker-thread
   (slot-ref datastore 'worker-thread-channel)
   (lambda (db)
     (let ((statement
            (sqlite-prepare
             db
             "
SELECT name, output
FROM derivation_outputs
WHERE derivation_name = :derivation_name")))

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

       (let ((result
              (sqlite-map
               (match-lambda
                 (#(name output)
                  `((name   . ,name)
                    (output . ,output))))
               statement)))
         (sqlite-reset statement)

         result)))))

(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)))