blob: a1c354cb911011d06682317f0b27138a139ee4d4 (
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
|
(.module:
[library
[lux {"-" [Name]}
[abstract
[equivalence {"+" [Equivalence]}]
[monoid {"+" [Monoid]}]
["." monad {"+" [do]}]]
[control
["." try {"+" [Try]}]
["." exception {"+" [exception:]}]]
[data
["." text
["%" format {"+" [format]}]]
[collection
["." dictionary {"+" [Dictionary]}]
["." set {"+" [Set]}]
["." list ("#\." mix)]]]]]
["." // "_"
["#" profile {"+" [Name Profile]}]])
(def: .public file
"project.lux")
(type: .public Project
(Dictionary Name Profile))
(def: .public (project name profile)
(-> Name Profile Project)
(dictionary.of_list text.hash (list [name profile])))
(def: .public equivalence
(Equivalence Project)
(dictionary.equivalence //.equivalence))
(implementation: .public monoid
(Monoid Project)
(def: identity
(dictionary.empty text.hash))
(def: composite
(dictionary.merged_with (\ //.monoid composite))))
(exception: .public (unknown_profile {name Name})
(exception.report
["Name" (%.text name)]))
(exception: .public (circular_dependency {dependee Name} {dependent Name})
(exception.report
["Dependent" (%.text dependent)]
["Dependee" (%.text dependee)]))
(def: (profile' lineage project name)
(-> (Set Name) Project Name (Try Profile))
(case (dictionary.value name project)
(#.Some profile)
(case (list.example (set.member? lineage)
(value@ #//.parents profile))
(#.Some ouroboros)
(exception.except ..circular_dependency [ouroboros name])
#.None
(do {! try.monad}
[parents (monad.each ! (profile' (set.has name lineage) project)
(value@ #//.parents profile))]
(in (list\mix (function (_ parent child)
(\ //.monoid composite child parent))
(with@ #//.parents (list) profile)
parents))))
#.None
(exception.except ..unknown_profile [name])))
(def: .public profile
(-> Project Name (Try Profile))
(..profile' (set.empty text.hash)))
|