aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/program/aedifex/dependency.lux
blob: 7d9c4d2c90f0fecca3995715663748e70948557a (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
(.require
 [library
  [lux (.except Type)
   [abstract
    [equivalence (.only Equivalence)]
    [order (.only Order)]
    [hash (.only Hash)]]
   [data
    ["[0]" product]
    ["[0]" text (.use "[1]#[0]" order)
     ["%" \\format (.only format)]]]]]
 ["[0]" //
  ["[1]" artifact (.only Artifact) (.use "[1]#[0]" order)
   [type (.only Type)]]])

(type .public Dependency
  (Record
   [#artifact Artifact
    #type Type]))

(def .public hash
  (Hash Dependency)
  (all product.hash
       //.hash
       text.hash
       ))

(def .public equivalence
  (Equivalence Dependency)
  (of hash equivalence))

(def .public order
  (Order Dependency)
  (implementation
   (def equivalence
     ..equivalence)

   (def (< reference subject)
     (<| (or (//#< (the #artifact reference)
                   (the #artifact subject)))
         
         (and (//#= (the #artifact reference)
                    (the #artifact subject)))
         (text#< (the #type reference)
                 (the #type subject))))))