aboutsummaryrefslogtreecommitdiff
path: root/guix-data-service/web/compare/html.scm
blob: 44acb81b3e6d75f3cb26e57bf9139cadddf003e4 (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
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
;;; Guix Data Service -- Information about Guix over time
;;; Copyright © 2019 Christopher Baines <mail@cbaines.net>
;;;
;;; 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
;;; <http://www.gnu.org/licenses/>.

(define-module (guix-data-service web compare html)
  #:use-module (srfi srfi-1)
  #:use-module (srfi srfi-19)
  #:use-module (srfi srfi-43)
  #:use-module (ice-9 match)
  #:use-module (ice-9 vlist)
  #:use-module (texinfo)
  #:use-module (texinfo html)
  #:use-module (guix-data-service utils)
  #:use-module (guix-data-service web query-parameters)
  #:use-module (guix-data-service web util)
  #:use-module (guix-data-service web html-utils)
  #:use-module (guix-data-service web view html)
  #:export (compare
            compare/derivation
            compare/package-derivations
            compare-by-datetime/package-derivations
            compare/packages
            compare/system-test-derivations
            compare-invalid-parameters))

(define (compare-form-controls-for-mode mode query-parameters)
  (cond
   ((eq? mode 'revision)
    (list
     (form-horizontal-control
      "Base commit" query-parameters
      #:required? #t
      #:help-text "The commit to use as the basis for the comparison."
      #:font-family "monospace")
     (form-horizontal-control
      "Target commit" query-parameters
      #:required? #t
      #:help-text "The commit to compare against the base commit."
      #:font-family "monospace")))
   ((eq? mode 'datetime)
    (list
     (form-horizontal-control
      "Base branch" query-parameters
      #:required? #t
      #:help-text "The branch to compare from."
      #:font-family "monospace")
     (form-horizontal-control
      "Base datetime" query-parameters
      #:help-text "The date and time to compare from. The required format is YYYY-MM-DD HH:MM:SS"
      #:font-family "monospace")
     (form-horizontal-control
      "Target branch" query-parameters
      #:required? #t
      #:help-text "The branch to compare to."
      #:font-family "monospace")
     (form-horizontal-control
      "Target datetime" query-parameters
      #:help-text "The date and time to compare to. The required format is YYYY-MM-DD HH:MM:SS"
      #:font-family "monospace")))
   (else
    '())))

(define (compare query-parameters
                 mode
                 cgit-url-bases
                 new-packages
                 removed-packages
                 version-changes
                 lint-warnings-data
                 lint-warnings-locale-options
                 channel-news-data)
  (define invalid-query?
    (any-invalid-query-parameters? query-parameters))

  (define base-commit
    (assq-ref query-parameters 'base_commit))

  (define target-commit
    (assq-ref query-parameters 'target_commit))

  (define locale
    (assq-ref query-parameters 'locale))

  (define query-params
    (unless invalid-query?
      (query-parameters->string query-parameters)))

  (layout
   #:title
   (if invalid-query?
       "Compare"
       (string-append "Comparing " (string-take base-commit 8) " and "
                      (string-take target-commit 8)))
   #:body
   `(,(header)
     (div
      (@ (class "container"))
      (div
       (@ (class "row"))
       (div
        (@ (class "col-sm-7"))
        ,@(if invalid-query?
              `((h1 "Compare"))
              `((h1 "Comparing "
                    (a (@ (href ,(string-append "/revision/" base-commit)))
                       (samp ,(string-take base-commit 8) "…"))
                    " and "
                    (a (@ (href ,(string-append "/revision/" target-commit)))
                       (samp ,(string-take target-commit 8) "…")))
                ,@(if (apply string=? cgit-url-bases)
                      `((a (@ (href ,(string-append
                                      (first cgit-url-bases)
                                      "log/?qt=range&q="
                                      base-commit ".." target-commit)))
                           "(View cgit)"))
                      '()))))
       (div
        (@ (class "col-sm-5"))
        (div
         (@ (class "btn-group btn-group-lg")
            (style "margin-top: 1.3rem; margin-bottom: 0.5rem;")
            (role "group"))
         (a (@ (class ,(string-append
                        "btn btn-default btn-lg"
                        (if (eq? mode 'revision)
                            " disabled"
                            "")))
               (href "/compare"))
            "Compare revisions")
         (a (@ (class ,(string-append
                        "btn btn-default btn-lg"
                        (if (eq? mode 'datetime)
                            " disabled"
                            "")))
               (href "/compare-by-datetime"))
            "Compare by datetime"))))

      (div
         (@ (class "row"))
         (div
          (@ (class "col-md-12"))
          (div
           (@ (class "well"))
           (form
            (@ (method "get")
               (action "")
               (style "padding-bottom: 0")
               (class "form-horizontal"))
            ,@(compare-form-controls-for-mode mode query-parameters)
            ,(form-horizontal-control
              "Locale" query-parameters
              #:name "locale"
              #:allow-selecting-multiple-options #f
              #:options lint-warnings-locale-options
              #:help-text "Language")
            (div (@ (class "form-group form-group-lg"))
                 (div (@ (class "col-sm-offset-2 col-sm-10"))
                      (button (@ (type "submit")
                                 (class "btn btn-lg btn-primary"))
                              "Update results")))))))

      ,@(if
         invalid-query?
         '()
         `((div
            (@ (class "row") (style "clear: left;"))
            (div
             (@ (class "col-sm-10"))
             (div
              (@ (class "btn-group btn-group-lg")
                 (role "group"))
              (a (@ (class "btn btn-default")
                    (href ,(string-append
                            "/"
                            (cond
                             ((eq? mode 'revision) "compare")
                             ((eq? mode 'datetime) "compare-by-datetime"))
                            "/packages?"
                            query-params)))
                 "Compare packages")
              (a (@ (class "btn btn-default")
                    (href ,(string-append
                            "/"
                            (cond
                             ((eq? mode 'revision) "compare")
                             ((eq? mode 'datetime) "compare-by-datetime"))
                            "/package-derivations?"
                            query-params)))
                 "Compare package derivations")
             (a (@ (class "btn btn-default")
                   (href ,(string-append
                           "/"
                           (cond
                            ((eq? mode 'revision) "compare")
                            ((eq? mode 'datetime) "compare-by-datetime"))
                           "/system-test-derivations?"
                           query-params)))
                "Compare system test derivations")))
            (div
             (@ (class "col-sm-2"))
             (a (@ (class "btn btn-default btn-lg pull-right")
                   (href ,(string-append
                           "/compare.json?" query-params)))
                "View JSON")))
           (div
            (@ (class "row"))
            (div
             (@ (class "col-sm-12"))
             (h3 (@ (style "clear: both;"))
                 "News entries")
             ,(if (null? channel-news-data)
                  "No news entry changes"
                  (map
                   (match-lambda
                     ((commit tag title-text body-text change)
                      `(div
                        (h4 ,@(if (null? commit)
                                  '()
                                  `(("Commit: " (samp ,commit))))
                            ,@(if (null? tag)
                                  '()
                                  `(("Tag: " ,tag))))
                        (table
                         (@ (class "table"))
                         (thead
                          (tr
                           (th (@ (class "col-sm-1")) "")
                           (th (@ (class "col-sm-1")) "Language")
                           (th (@ (class "col-sm-3")) "Title")
                           (th (@ (class "col-sm-7")) "Body"))
                          (tbody
                           ,@(let ((languages
                                    (sort
                                     (delete-duplicates
                                      (append (map car title-text)
                                              (map car body-text)))
                                     string<?)))
                               (map (lambda (lang index)
                                      `(tr
                                        ,@(if (eq? index 0)
                                              `((td (@ (rowspan ,(length languages)))
                                                    ,(case change
                                                       ((new) "New")
                                                       ((removed) "Removed")
                                                       ((changed) "Changed"))))
                                              '())
                                        (td ,lang)
                                        (td ,(stexi->shtml
                                              (texi-fragment->stexi
                                               (assoc-ref title-text lang))))
                                        (td ,
                                         (stexi->shtml
                                          (texi-fragment->stexi
                                           (assoc-ref body-text lang))))))
                                    languages
                                    (iota (length languages))))))))))
                   channel-news-data))))
           (div
            (@ (class "row"))
            (div
             (@ (class "col-sm-12"))
             (h3 "New packages")
             ,(if (null? new-packages)
                  '(p "No new packages")
                  `(table
                    (@ (class "table"))
                    (thead
                     (tr
                      (th (@ (class "col-md-4")) "Name")
                      (th (@ (class "col-md-4")) "Version")
                      (th (@ (class "col-md-4")) "")))
                    (tbody
                     ,@(map
                        (match-lambda
                          ((('name . name)
                            ('version . version))
                           `(tr
                             (td ,name)
                             (td ,version)
                             (td (@ (class "text-right"))
                                 (a (@ (href ,(string-append
                                               "/revision/" target-commit
                                               "/package/" name "/" version)))
                                    "More information")))))
                        new-packages))))))
           (div
            (@ (class "row"))
            (div
             (@ (class "col-sm-12"))
             (h3 "Removed packages")
             ,(if (null? removed-packages)
                  '(p "No removed packages")
                  `(table
                    (@ (class "table"))
                    (thead
                     (tr
                      (th (@ (class "col-md-4")) "Name")
                      (th (@ (class "col-md-4")) "Version")
                      (th (@ (class "col-md-4")) "")))
                    (tbody
                     ,@(map
                        (match-lambda
                          ((('name . name)
                            ('version . version))
                           `(tr
                             (td ,name)
                             (td ,version)
                             (td (@ (class "text-right"))
                                 (a (@ (href ,(string-append
                                               "/revision/" base-commit
                                               "/package/" name "/" version)))
                                    "More information")))))
                        removed-packages))))))
           (div
            (@ (class "row"))
            (div
             (@ (class "col-sm-12"))
             (h3 "Version changes")
             ,(if
               (null? version-changes)
               '(p "No version changes")
               `(table
                 (@ (class "table"))
                 (thead
                  (tr
                   (th (@ (class "col-md-3")) "Name")
                   (th (@ (class "col-md-9")) "Versions")))
                 (tbody
                  ,@(map
                     (match-lambda
                       ((name . versions)
                        `(tr
                          (td ,name)
                          (td
                           (ul
                            (@ (class "list-unstyled"))
                            ,@(map
                               (match-lambda
                                 ((type . versions)
                                  `(li (@ (class ,(if (eq? type 'base)
                                                      "text-danger"
                                                      "text-success")))
                                       (ul
                                        (@ (class "list-inline")
                                           (style "display: inline-block;"))
                                        ,@(map
                                           (lambda (version)
                                             `(li (a (@ (href
                                                         ,(string-append
                                                           "/revision/"
                                                           (if (eq? type 'base)
                                                               base-commit
                                                               target-commit)
                                                           "/package/"
                                                           name "/" version)))
                                                     ,version)))
                                           (vector->list versions)))
                                       ,(if (eq? type 'base)
                                            " (old)"
                                            " (new)"))))
                               versions))))))
                     version-changes))))))
           (div
            (@ (class "row"))
            (div
             (@ (class "col-sm-12"))
             (h2 "Lint warnings")
             ,@(if
                (null? lint-warnings-data)
                '((p "No lint warning changes"))
                (map
                 (match-lambda
                   (((package-name package-version) . warnings)
                    `((h4 ,package-name " (version: " ,package-version ")")
                      (table
                       (@ (class "table"))
                       (thead
                        (tr
                         (th "")
                         (th "Linter")
                         (th "Message")))
                       (tbody
                        ,@(map (match-lambda
                                 ((lint-checker-name
                                   message
                                   lint-checker-description
                                   lint-checker-network-dependent
                                   file line column-number ;; TODO Maybe use the location?
                                   change)

                                  `(tr
                                    (td (@ (class ,(if (string=? change "new")
                                                       "text-danger"
                                                       "text-success"))
                                           (style "font-weight: bold"))
                                        ,(if (string=? change "new")
                                             "New warning"
                                             "Resolved warning"))
                                    (td (span (@ (style "font-family: monospace; display: block;"))
                                              ,lint-checker-name)
                                        (p (@ (style "font-size: small; margin: 6px 0 0px;"))
                                           ,lint-checker-description))
                                    (td ,message))))
                               warnings))))))
                 lint-warnings-data))))))))))

(define (compare/derivation query-parameters data)
  (define base
    '(span (@ (class "text-danger glyphicon glyphicon-minus pull-left")
              (style "font-size: 1.5em; padding-right: 0.4em;"))))

  (define target
    '(span (@ (class "text-success glyphicon glyphicon-plus pull-left")
              (style "font-size: 1.5em; padding-right: 0.4em;"))))

  (layout
   #:title
   "Comparing derivations"
   #:body
   `(,(header)
     (div
      (@ (class "container"))
      (div
       (@ (class "row"))
       (h1 ,@(let ((base-commit (assq-ref query-parameters 'base_commit))
                   (target-commit (assq-ref query-parameters 'target_commit)))
               (if (every string? (list base-commit target-commit))
                   `("Comparing "
                     (a (@ (href ,(string-append "/revision/" base-commit)))
                        (samp ,(string-take base-commit 8) "…"))
                     " and "
                     (a (@ (href ,(string-append "/revision/" target-commit)))
                        (samp ,(string-take target-commit 8) "…")))
                   '("Comparing derivations")))))
      (div
       (@ (class "row"))
       (div
        (@ (class "col-md-12"))
        (div
         (@ (class "well"))
         (form
          (@ (method "get")
             (action "")
             (class "form-horizontal"))
          ,(form-horizontal-control
            "Base derivation" query-parameters
            #:required? #t
            #:help-text "The derivation to use as the basis for the comparison."
            #:font-family "monospace")
          ,(form-horizontal-control
            "Target derivation" query-parameters
            #:required? #t
            #:help-text "The derivation to compare against the base commit."
            #:font-family "monospace")
          (div (@ (class "form-group form-group-lg"))
               (div (@ (class "col-sm-offset-2 col-sm-10"))
                    (button (@ (type "submit")
                               (class "btn btn-lg btn-primary"))
                            "Update results")))
          (a (@ (class "btn btn-default btn-lg pull-right")
                (href ,(let ((query-parameter-string
                              (query-parameters->string query-parameters)))
                         (string-append
                          "/compare/derivation.json"
                          (if (string-null? query-parameter-string)
                              ""
                              (string-append "?" query-parameter-string))))))
             "View JSON")))))
      (div
       (@ (class "row"))
       (div
        (@ (class "col-sm-12"))
        (h2 "Outputs")
        ,@(let ((outputs (assq-ref data 'outputs)))
            `((table
               (@ (class "table"))
               (thead
                (tr
                 (th "")
                 (th "Name")
                 (th "Path")
                 (th "Hash algorithm")
                 (th "Hash")
                 (th "Recursive")))
               (tbody
                ,@(append-map
                   (lambda (label items)
                     (map
                      (lambda (alist)
                        `(tr
                          (td ,label)
                          (td ,(assq-ref alist 'output-name))
                          (td (a (@ (href ,(assq-ref alist 'path)))
                                 ,(display-store-item (assq-ref alist 'path))))
                          (td ,(assq-ref alist 'hash-algorithm))
                          (td ,(assq-ref alist 'hash))
                          (td ,(assq-ref alist 'recursive))))
                      (or (and=> items vector->list) '())))
                   (list base target "Common")
                   (list (assq-ref outputs 'base)
                         (assq-ref outputs 'target)
                         (assq-ref outputs 'common)))))))
        (h2 "Inputs")
        ,@(let ((inputs (assq-ref data 'inputs)))
            `((table
               (@ (class "table"))
               (thead
                (tr
                 (th "")
                 (th "Derivation")
                 (th "Outputs")))
               (tbody
                ,@(append-map
                   (lambda (label items)
                     (map
                      (lambda (alist)
                        `(tr
                          (td ,label)
                          (td (a (@ (href ,(assq-ref alist 'derivation_file_name)))
                                 ,(display-store-item (assq-ref alist 'derivation_file_name))))
                          (td ,(assq-ref alist 'derivation_output_name))))
                      (or (and=> items vector->list) '())))
                   (list base target)
                   (list (assq-ref inputs 'base)
                         (assq-ref inputs 'target)))))))
        (p "Common inputs are omitted.")
        (h2 "Sources")
        ,@(let ((sources (assq-ref data 'sources)))
            `((table
               (@ (class "table"))
               (thead
                (tr
                 (th "")
                 (th "Derivation")))
               (tbody
                ,@(append-map
                   (lambda (label items)
                     (map
                      (lambda (alist)
                        `(tr
                          (td ,label)
                          (td (a (@ (href ,(assq-ref alist 'store_path)))
                                 ,(display-store-item (assq-ref alist 'store_path))))))
                      (or (and=> items vector->list) '())))
                   (list base target "Common")
                   (list (assq-ref sources 'base)
                         (assq-ref sources 'target)
                         (assq-ref sources 'common)))))))
        (h2 "System")
        ,@(let ((system (assq-ref data 'system)))
            (let ((common-system (assq-ref system 'common)))
              (if common-system
                  (list common-system)
                  `(table
                    (@ (class "table"))
                    (thead
                     (tr
                      (th "")
                      (th "System")))
                    (tbody
                     ,@(let ((base-system (assq-ref system 'base))
                             (target-system (assq-ref system 'target)))
                         `((tr
                            (td ,base)
                            (td ,base-system))
                           (tr
                            (td ,target)
                            (td ,target-system)))))))))
        (h2 "Builder and arguments")
        ,(let ((builder (assq-ref data 'builder))
               (arguments (assq-ref data 'arguments)))
           (let ((common-builder (assq-ref builder 'common))
                 (common-args (assq-ref arguments 'common)))
             (if (and common-builder
                      common-args)
                 `(table
                   (@ (class "table"))
                   (thead
                    (th "Builder")
                    (th "Arguments"))
                   (tbody
                    (tr
                     (td ,(display-possible-store-item common-builder))
                     (td (ol
                          ,@(map (lambda (arg)
                                   `(li ,(display-possible-store-item arg)))
                                 common-args))))))
                 `(table
                   (@ (class "table"))
                   (thead
                    (tr
                     (th "")
                     (th "Builder")
                     (th "Arguments")))
                   (tbody
                    ,@(let ((base-builder (assq-ref builder 'base))
                            (target-builder (assq-ref builder 'target))
                            (base-args (assq-ref arguments 'base))
                            (target-args (assq-ref arguments 'target)))
                        `((tr
                           (td ,base)
                           (td ,(display-possible-store-item
                                 (or base-builder
                                     common-builder)))
                           (td (ol
                                ,@(map (lambda (arg)
                                         `(li ,(display-possible-store-item arg)))
                                       (or (and=> common-args vector->list)
                                           (vector->list base-args))))))
                          (tr
                           (td ,target)
                           (td ,(display-possible-store-item
                                 (or target-builder
                                     common-builder)))
                           (td (ol
                                ,@(map (lambda (arg)
                                         `(li ,(display-possible-store-item arg)))
                                       (or (and=> common-args vector->list)
                                           (vector->list target-args)))))))))))))
        (h2 "Environment variables")
        ,(let ((environment-variables (assq-ref data 'environment-variables)))
           `(table
             (@ (class "table"))
             (thead
              (th "Name"))
             (tbody
              ,@(append-map
                 (match-lambda
                   ((name . values)
                    (let ((common-value (assq-ref values 'common)))
                      (if common-value
                          `((tr
                             (td ,name)
                             (td ,(display-possible-store-item common-value))))
                          (let ((base-value (assq-ref values 'base))
                                (target-value (assq-ref values 'target)))
                            (if (and base-value target-value)
                                `((tr
                                   (td (@ (rowspan 2))
                                       ,name)
                                   (td ,base ,(display-possible-store-item
                                               base-value)))
                                  (tr
                                   (td ,target ,(display-possible-store-item
                                                 target-value))))
                                `((tr
                                   (td ,name)
                                   (td ,@(if base-value
                                             (list base
                                                   (display-possible-store-item
                                                    base-value))
                                             (list target
                                                   (display-possible-store-item
                                                    target-value))))))))))))
                 environment-variables))))))))))

(define* (compare/package-derivations query-parameters
                                      mode
                                      valid-systems
                                      valid-targets
                                      valid-build-statuses
                                      build-server-urls
                                      derivation-changes
                                      #:optional
                                      base-revision-details
                                      target-revision-details)
  (define field-options
    (map
     (lambda (field)
       (cons field
             (hyphenate-words
              (remove-brackets
               (string-downcase field)))))
     '("(no additional fields)" "Builds")))

  (define fields
    (assq-ref query-parameters 'field))

  (define page-header "Package derivation changes")

  (layout
   #:title
   page-header
   #:body
   `(,(header)
     (div
      (@ (class "container"))
      (div
       (@ (class "row"))
       ,@(cond
          ((any-invalid-query-parameters? query-parameters)
           '((h3 "Comparing package derivations")))
          ((eq? mode 'revision)
           (let ((base-commit (assq-ref query-parameters 'base_commit))
                 (target-commit (assq-ref query-parameters 'target_commit)))
             `((h3
                (a (@ (href ,(string-append
                              "/compare?base_commit="
                              base-commit
                              "&target_commit="
                              target-commit)))
                   "Comparing "
                   (samp ,(string-take base-commit 8) "…")
                   " and "
                   (samp ,(string-take target-commit 8) "…"))))))
          ((eq? mode 'datetime)
           (let ((base-branch (assq-ref query-parameters 'base_branch))
                 (base-datetime (assq-ref query-parameters 'base_datetime))
                 (target-branch (assq-ref query-parameters 'target_branch))
                 (target-datetime (assq-ref query-parameters 'target_datetime)))
             `((h3
                (a (@ (href ,(string-append
                              "/compare-by-datetime?"
                              (query-parameters->string
                               (filter (match-lambda
                                         ((key . _)
                                          (member key '(base_branch
                                                        base_datetime
                                                        target_branch
                                                        target_datetime))))
                                       query-parameters)))))
                   "Comparing "
                   (br)
                   (samp (*ENTITY* nbsp) (*ENTITY* nbsp)
                         ,base-branch
                         ,@(map (lambda _ '(*ENTITY* nbsp))
                                (iota (max
                                       0
                                       (- (string-length target-branch)
                                          (string-length base-branch))))))
                   " at " ,(date->string base-datetime "~1 ~3")
                   " to "
                   (br)
                   (samp (*ENTITY* nbsp) (*ENTITY* nbsp)
                         ,target-branch
                         ,@(map (lambda _ '(*ENTITY* nbsp))
                                (iota (max 0
                                           (- (string-length base-branch)
                                              (string-length target-branch))))))
                   " at " ,(date->string target-datetime "~1 ~3"))))))))
      (div
       (@ (class "row"))
       (div
        (@ (class "col-md-12"))
        (div
         (@ (class "well"))
         (form
          (@ (method "get")
             (action "")
             (class "form-horizontal"))
          ,@(compare-form-controls-for-mode mode query-parameters)
          ,(form-horizontal-control
            "System" query-parameters
            #:options valid-systems
            #:help-text "Only include derivations for this system."
            #:font-family "monospace")
          ,(form-horizontal-control
            "Target" query-parameters
            #:options valid-targets
            #:help-text "Only include derivations that are build for this system."
            #:font-family "monospace")
          ,(form-horizontal-control
            "Build change" query-parameters
            #:options '(("(none specified)" . "")
                        ("Broken"           . "broken")
                        ("Fixed"            . "fixed")
                        ("Still working"    . "still-working")
                        ("Still failing"    . "still-failing")
                        ("Unknown"          . "unknown"))
            #:help-text '("Filter by the changes to the builds:"
                          (dl
                           (@ (class "dl-horizontal"))
                           (dt "Broken")
                           (dd
                            "There was a successful build against the base
derivation, but no successful build for the target derivation, and there's at
least one failed build.")
                           (dt "Fixed")
                           (dd
                            "No successful build for the base derivation and
at least one failed build, plus at least one successful build for the target
derivation")
                           (dt "Still working")
                           (dd
                            "At least one successful build for both the base
and target derivations")
                           (dt "Still failing")
                           (dd
                            "No successful builds and at least one failed builds for both the base and target derivations")
                           (dt "Unknown")
                           (dd
                            "No base and target derivation to compare, or not
enough builds to determine a change")))
            #:allow-selecting-multiple-options #f)
          ,(form-horizontal-control
            "Fields" query-parameters
            #:name "field"
            #:options field-options
            #:help-text "Fields to return in the response.")
          ,(form-horizontal-control
            "After name" query-parameters
            #:help-text
            "List packages that are alphabetically after the given name.")
          ,(form-horizontal-control
            "Limit results" query-parameters
            #:help-text "The maximum number of results to return.")
          ,(form-horizontal-control
            "All results" query-parameters
            #:type "checkbox"
            #:help-text "Return all results.")
          (div (@ (class "form-group form-group-lg"))
               (div (@ (class "col-sm-offset-2 col-sm-10"))
                    (button (@ (type "submit")
                               (class "btn btn-lg btn-primary"))
                            "Update results")))
          (a (@ (class "btn btn-default btn-lg pull-right")
                (href ,(let ((query-parameter-string
                              (query-parameters->string query-parameters)))
                         (string-append
                          "/"
                          (cond
                           ((eq? mode 'revision) "compare")
                           ((eq? mode 'datetime) "compare-by-datetime"))
                          "/package-derivations.json"
                          (if (string-null? query-parameter-string)
                              ""
                              (string-append "?" query-parameter-string))))))
             "View JSON")))))
      (div
       (@ (class "row"))
       (div
        (@ (class "col-sm-12"))
        (h1 ,page-header)
        ,@(if (not (null? derivation-changes))
              (match (vector-fold
                      (lambda (_ result change)
                        (match result
                          ((names . new-drvs-count)
                           (let ((count
                                  (or
                                   (and=> (assq-ref change 'target)
                                          vector-length)
                                   0)))
                             (cons
                              (if (= 0 count)
                                  names
                                  (cons (assq-ref change 'name)
                                        names))
                              (+ new-drvs-count count))))))
                      (cons '() 0)
                      derivation-changes)
                ((names . new-drvs-count)
                 (let ((distinct-packages
                        (length
                         (delete-duplicates/sort! names string<?))))
                   `((p
                      ,(simple-format #f "Showing ~A new derivations across ~A packages"
                                      new-drvs-count
                                      distinct-packages))))))
              '())
        ,(if
          (null? derivation-changes)
          '(p "No derivation changes")
          `(table
            (@ (class "table")
               (style "table-layout: fixed;"))
            (thead
             (tr
              (th "Name")
              (th "Version")
              (th "System")
              (th "Target")
              (th (@ (class "col-xs-5")) "Derivations (with build statuses)")
              (th "")))
            (tbody
             ,@(append-map
                (match-lambda
                  ((('name . name)
                    ('version . version)
                    ('base . base-derivations)
                    ('target . target-derivations))
                   (let* ((system-and-versions
                           (delete-duplicates
                            (append (map (lambda (details)
                                           (cons (assq-ref details 'system)
                                                 (assq-ref details 'target)))
                                         (vector->list base-derivations))
                                    (map (lambda (details)
                                           (cons (assq-ref details 'system)
                                                 (assq-ref details 'target)))
                                         (vector->list target-derivations)))))
                          (data-columns
                           (map
                            (match-lambda
                              ((system . target)
                               (let* ((base-entry
                                       (find (lambda (details)
                                               (and (string=? (assq-ref details 'system) system)
                                                    (string=? (assq-ref details 'target) target)))
                                             (vector->list base-derivations)))
                                      (base-derivation-file-name
                                       (assq-ref base-entry 'derivation-file-name))
                                      (base-builds
                                       (assq-ref base-entry 'builds))
                                      (target-entry
                                       (find (lambda (details)
                                               (and (string=? (assq-ref details 'system) system)
                                                    (string=? (assq-ref details 'target) target)))
                                             (vector->list target-derivations)))
                                      (target-derivation-file-name
                                       (assq-ref target-entry 'derivation-file-name))
                                      (target-builds
                                       (assq-ref target-entry 'builds)))
                                 `((td (samp (@ (style "white-space: nowrap;"))
                                             ,system))
                                   (td (samp (@ (style "white-space: nowrap;"))
                                             ,target))
                                   (td ,@(if base-derivation-file-name
                                             `((a (@ (style "display: block;")
                                                     (href ,base-derivation-file-name))
                                                  (span (@ (class "text-danger glyphicon glyphicon-minus pull-left")
                                                           (style "font-size: 1.5em; padding-right: 0.4em;")))
                                                  ,@(build-statuses->build-status-labels
                                                     (vector->list base-builds))
                                                  ,(display-store-item-short base-derivation-file-name)))
                                             '())
                                       ,@(if target-derivation-file-name
                                             `((a (@ (style "display: block; clear: left;")
                                                     (href ,target-derivation-file-name))
                                                  (span (@ (class "text-success glyphicon glyphicon-plus pull-left")
                                                           (style "font-size: 1.5em; padding-right: 0.4em;")))
                                                  ,@(build-statuses->build-status-labels
                                                     (vector->list target-builds))
                                                  ,(display-store-item-short target-derivation-file-name)))
                                             '()))
                                   (td (@ (style "vertical-align: middle;"))
                                       ,@(if (and base-derivation-file-name
                                                  target-derivation-file-name)
                                             `((a (@ (class "btn btn-sm btn-default")
                                                     (title "Compare")
                                                     (href
                                                      ,(string-append
                                                        "/compare/derivation?"
                                                        "base_derivation="
                                                        base-derivation-file-name
                                                        "&target_derivation="
                                                        target-derivation-file-name)))
                                                  "⇕ Compare"))
                                             '()))))))
                            system-and-versions)))

                     `((tr (td (@ (rowspan , (length system-and-versions)))
                               ,name)
                           (td (@ (rowspan , (length system-and-versions)))
                               ,version)
                           ,@(car data-columns))
                       ,@(map (lambda (data-row)
                                `(tr ,data-row))
                              (cdr data-columns))))))
                (vector->list derivation-changes)))))))))))

(define (compare/packages query-parameters
                          base-packages-vhash
                          target-packages-vhash)
  (define base-commit
    (assq-ref query-parameters 'base_commit))

  (define target-commit
    (assq-ref query-parameters 'target_commit))

  (define query-params
    (string-append "?base_commit=" base-commit
                   "&target_commit=" target-commit))

  (define page-header
    (string-append "Comparing "
                   (string-take base-commit 8) " and "
                   (string-take target-commit 8)))

  (layout
   #:title
   page-header
   #:body
   `(,(header)
     (div
      (@ (class "container"))
      (div
       (@ (class "row"))
       (div
        (@ (class "col-sm-12"))
        (h1 "Comparing "
            (a (@ (href ,(string-append "/revision/" base-commit)))
               (samp ,(string-take base-commit 8) "…"))
            " and "
            (a (@ (href ,(string-append "/revision/" target-commit)))
               (samp ,(string-take target-commit 8) "…")))
        (a (@ (class "btn btn-default btn-lg")
              (href ,(string-append
                      "/compare/packages.json" query-params)))
           "View JSON")))
      (div
       (@ (class "row"))
       (div
        (@ (class "col-sm-12"))
        (h3 "Base ("
            (samp ,base-commit)
            ")")
        (p "Packages found in the base revision.")
        (table
         (@ (class "table"))
         (thead
          (tr
           (th (@ (class "col-md-4")) "Name")
           (th (@ (class "col-md-4")) "Version")
           (th (@ (class "col-md-4")) "")))
         (tbody
          ,@(map
             (match-lambda
               ((name version)
                `(tr
                  (td ,name)
                  (td ,version)
                  (td (@ (class "text-right"))
                      (a (@ (href ,(string-append
                                    "/revision/" base-commit
                                    "/package/" name "/" version)))
                         "More information")))))
             (delete-duplicates
              (map (lambda (data)
                     (take data 2))
                   (vlist->list base-packages-vhash))))))))
      (div
       (@ (class "row"))
       (div
        (@ (class "col-sm-12"))
        (h3 "Target ("
            (samp ,target-commit)
            ")")
        (p "Packages found in the target revision.")
        (table
         (@ (class "table"))
         (thead
          (tr
           (th (@ (class "col-md-4")) "Name")
           (th (@ (class "col-md-4")) "Version")
           (th (@ (class "col-md-4")) "")))
         (tbody
          ,@(map
             (match-lambda
               ((name version)
                `(tr
                  (td ,name)
                  (td ,version)
                  (td (@ (class "text-right"))
                      (a (@ (href ,(string-append
                                    "/revision/" target-commit
                                    "/package/" name "/" version)))
                         "More information")))))
             (delete-duplicates
              (map (lambda (data)
                     (take data 2))
                   (vlist->list target-packages-vhash))))))))))))

(define* (compare/system-test-derivations query-parameters
                                          mode
                                          valid-systems
                                          build-server-urls
                                          base-git-repositories
                                          target-git-repositories
                                          changes
                                          #:optional
                                          base-revision-details
                                          target-revision-details)
  (define page-header "System test derivation changes")

  (layout
   #:title
   page-header
   #:body
   `(,(header)
     (div
      (@ (class "container-fluid"))
      (div
       (@ (class "row"))
       (div
        (@ (class "col-md-12"))
        ,@(cond
           ((any-invalid-query-parameters? query-parameters)
            '((h3 "Comparing system test derivations")))
           ((eq? mode 'revision)
            (let ((base-commit (assq-ref query-parameters 'base_commit))
                  (target-commit (assq-ref query-parameters 'target_commit)))
              `((h3
                 (a (@ (href ,(string-append
                               "/compare?base_commit="
                               base-commit
                               "&target_commit="
                               target-commit)))
                    "Comparing "
                    (samp ,(string-take base-commit 8) "…")
                    " and "
                    (samp ,(string-take target-commit 8) "…"))))))
           ((eq? mode 'datetime)
            (let ((base-branch (assq-ref query-parameters 'base_branch))
                  (base-datetime (assq-ref query-parameters 'base_datetime))
                  (target-branch (assq-ref query-parameters 'target_branch))
                  (target-datetime (assq-ref query-parameters 'target_datetime)))
              `((h3
                 (a (@ (href ,(string-append
                               "/compare-by-datetime?"
                               (query-parameters->string
                                (filter (match-lambda
                                          ((key . _)
                                           (member key '(base_branch
                                                         base_datetime
                                                         target_branch
                                                         target_datetime))))
                                        query-parameters)))))
                    "Comparing "
                    (br)
                    (samp (*ENTITY* nbsp) (*ENTITY* nbsp)
                          ,base-branch
                          ,@(map (lambda _ '(*ENTITY* nbsp))
                                 (iota (max
                                        0
                                        (- (string-length target-branch)
                                           (string-length base-branch))))))
                    " at " ,(date->string base-datetime "~1 ~3")
                    " to "
                    (br)
                    (samp (*ENTITY* nbsp) (*ENTITY* nbsp)
                          ,target-branch
                          ,@(map (lambda _ '(*ENTITY* nbsp))
                                 (iota (max 0
                                            (- (string-length base-branch)
                                               (string-length target-branch))))))
                    " at " ,(date->string target-datetime "~1 ~3")))))))))
      (div
       (@ (class "row"))
       (div
        (@ (class "col-md-12"))
        (div
         (@ (class "well"))
         (form
          (@ (method "get")
             (action "")
             (class "form-horizontal"))
          ,@(compare-form-controls-for-mode mode query-parameters)
          ,(form-horizontal-control
            "System" query-parameters
            #:options valid-systems
            #:allow-selecting-multiple-options #f
            #:help-text "Only include derivations for this system."
            #:font-family "monospace")
          (div (@ (class "form-group form-group-lg"))
               (div (@ (class "col-sm-offset-2 col-sm-10"))
                    (button (@ (type "submit")
                               (class "btn btn-lg btn-primary"))
                            "Update results")))
          (a (@ (class "btn btn-default btn-lg pull-right")
                (href ,(let ((query-parameter-string
                              (query-parameters->string query-parameters)))
                         (string-append
                          "/"
                          (cond
                           ((eq? mode 'revision) "compare")
                           ((eq? mode 'datetime) "compare-by-datetime"))
                          "/system-test-derivations.json"
                          (if (string-null? query-parameter-string)
                              ""
                              (string-append "?" query-parameter-string))))))
             "View JSON")))))
      (div
       (@ (class "row"))
       (div
        (@ (class "col-sm-12"))
        (h1 ,page-header)
        ,(if
          (null? changes)
          '(p "No system test derivation changes")
          `(table
            (@ (class "table")
               (style "table-layout: fixed;"))
            (thead
             (tr
              (th (@ (class "col-sm-2"))
                  "Name")
              (th (@ (class "col-sm-2"))
                  "Description")
              (th (@ (class "col-sm-2"))
                  "Location")
              (th "Derivation")
              (th (@ (class "col-sm-1"))
                  "")))
            (tbody
             ,@(append-map
                (match-lambda
                  ((('name        . name)
                    ('description . description-data)
                    ('derivation  . derivation-data)
                    ('location    . location-data)
                    ('builds      . builds-data))

                   (define (render-location git-repositories commit-hash
                                            data)
                     (map
                      (match-lambda
                        ((id label url cgit-url-base)
                         (if
                          (and cgit-url-base
                               (not (string-null? cgit-url-base)))
                          (match data
                            ((('file          . file)
                              ('line          . line)
                              ('column_number . column-number))
                             `(a (@ (href
                                     ,(string-append
                                       cgit-url-base "tree/"
                                       file "?id=" commit-hash
                                       "#n" (number->string line))))
                                 ,file
                                 " (line: " ,line
                                 ", column: " ,column-number ")")))
                          '())))
                      git-repositories))

                   (define cells
                     (list
                      (if (list? description-data)
                          (cons
                           `(td ,(let ((description
                                        (assq-ref description-data 'base)))
                                   (if (eq? description 'null)
                                       ""
                                       description)))
                           `(td ,(let ((description
                                        (assq-ref description-data 'target)))
                                   (if (eq? description 'null)
                                       ""
                                       description))))
                          (cons
                           `(td (@ (rowspan 2))
                                ,description-data)
                           ""))
                      (if (assq-ref location-data 'base)
                          (cons
                           (if (list? (assq-ref location-data 'base))
                               `(td ,(render-location
                                      base-git-repositories
                                      (if (eq? mode 'revision)
                                          (assq-ref query-parameters
                                                    'base_commit)
                                          (second base-revision-details))
                                      (assq-ref location-data 'base)))
                               "")
                           (if (list? (assq-ref location-data 'target))
                               `(td ,(render-location
                                      target-git-repositories
                                      (if (eq? mode 'revision)
                                          (assq-ref query-parameters
                                                    'target_commit)
                                          (second target-revision-details))
                                      (assq-ref location-data 'target)))
                               ""))
                          (cons
                           `(td (@ (rowspan 2))
                                ,(render-location
                                  target-git-repositories
                                  (if (eq? mode 'revision)
                                      (assq-ref query-parameters
                                                'target_commit)
                                      (second target-revision-details))
                                  location-data))
                           ""))
                      (cons
                       (let ((base-derivation (assq-ref derivation-data 'base)))
                         (if (string? base-derivation)
                             `(td
                               (a (@ (style "display: block;")
                                     (href ,base-derivation))
                                  (span (@ (class "text-danger glyphicon glyphicon-minus pull-left")
                                           (style "font-size: 1.5em; padding-right: 0.4em;")))
                                  ,@(build-statuses->build-status-labels
                                     (vector->list (assq-ref builds-data 'base)))
                                  ,(display-store-item-short base-derivation)))
                             ""))
                       (let ((target-derivation (assq-ref derivation-data 'target)))
                         (if (string? target-derivation)
                             `(td
                               (a (@ (style "display: block;")
                                     (href ,target-derivation))
                                  (span (@ (class "text-success glyphicon glyphicon-plus pull-left")
                                           (style "font-size: 1.5em; padding-right: 0.4em;")))
                                  ,@(build-statuses->build-status-labels
                                     (vector->list (assq-ref builds-data 'target)))
                                  ,(display-store-item-short target-derivation)))
                             "")))
                      (cons
                       (if (and (string? (assq-ref derivation-data 'base))
                                (string? (assq-ref derivation-data 'target)))
                           `(td (@ (style "vertical-align: middle;")
                                   (rowspan 2))
                                (a (@ (class "btn btn-sm btn-default")
                                      (title "Compare")
                                      (href
                                       ,(string-append
                                         "/compare/derivation?"
                                         "base_derivation="
                                         (assq-ref derivation-data 'base)
                                         "&target_derivation="
                                         (assq-ref derivation-data 'target))))
                                   "⇕ Compare"))
                           "")
                       "")))

                   `((tr
                      (td (@ (rowspan 2))
                          ,name)
                      ,@(map car cells))
                     (tr
                      ,@(map cdr cells)))))
                changes))))))))))