-
Notifications
You must be signed in to change notification settings - Fork 11
/
deps.ml
184 lines (167 loc) · 6.59 KB
/
deps.ml
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
open Types
open Dune_items
type t = Dir_set.t Libraries.t
let dune_describe_external_lib_deps () = Bos.Cmd.(v "dune" % "describe" % "external-lib-deps")
let dune_describe_entries () = Bos.Cmd.(v "dune" % "describe" % "package-entries")
let describe_external_lib_deps =
Lazy.from_fun (fun _ ->
sexp @@ dune_describe_external_lib_deps ()
|> Describe_external_lib.describe_extern_of_sexp)
let describe_bin_of_entries =
Lazy.from_fun (fun _ ->
sexp @@ dune_describe_entries ()
|> Describe_entries.entries_of_sexp
|> Describe_entries.items_bin_of_entries)
let has_dune_subproject path =
if Fpath.is_current_dir path then false
else
Fpath.(path / "dune-project")
|> Bos.OS.Path.exists
|> Stdlib.Result.get_ok
let parent_path path = if Fpath.is_current_dir path then None else Some (Fpath.parent path)
let rec should_use_dir ~dir_types path =
match Hashtbl.find_opt dir_types path with
| Some x -> x
| None ->
let r =
match parent_path path with
| Some parent ->
if should_use_dir ~dir_types parent then (
not (has_dune_subproject path)
) else false
| None ->
not (has_dune_subproject path)
in
Hashtbl.add dir_types path r;
r
let copy_rules () =
Lazy.force describe_external_lib_deps
|> List.concat_map
(fun d_item ->
d_item
|> Describe_external_lib.get_item
|> (fun (item:Describe_external_lib.item) -> Fpath.(item.source_dir / "dune"))
|> Dune_rules.Copy_rules.get_copy_rules)
|> Dune_rules.Copy_rules.copy_rules_map
let bin_of_entries () = Lazy.force describe_bin_of_entries
let is_bin_name_of_describe_lib bin_name (item:Describe_external_lib.item) =
item.extensions
|> List.exists (fun extension ->
String.equal bin_name (String.cat item.name extension))
let find_package_of_exe (item:Describe_external_lib.item) =
match item.package with
| Some p -> Some p
| None ->
(* Only allow for private executables to find the package *)
item.extensions
|> List.find_map (fun extension ->
Option.map
(fun bin_name ->
Option.map
(fun (item:Describe_entries.item) -> item.package) (Item_map.find_opt bin_name @@ bin_of_entries ()))
(Dune_rules.Copy_rules.find_dest_name ~name:(String.cat item.name extension) @@ copy_rules ()))
|> Option.join
let resolve_internal_deps d_items items_pkg =
(* After the d_items are filtered to the corresponding package request,
* we need to include the internal_deps in order to reach all the deps.
* If the internal dep is a public library we skip the recursive resolve
* because it will be resolve with separate request *)
let open Describe_external_lib in
let get_name = function
| Lib item -> String.cat item.name ".lib"
| Exe item -> String.cat item.name ".exe"
| Test item -> String.cat item.name ".test"
in
let d_items_lib =
d_items
|> List.filter_map (fun d_item ->
if is_lib_item d_item then
let item = get_item d_item in
Some (item.Describe_external_lib.name ^ ".lib", Lib item)
else None)
|> List.to_seq |> Hashtbl.of_seq
in
let rec add_internal acc = function
| [] -> Hashtbl.to_seq_values acc |> List.of_seq
| item::tl ->
if Hashtbl.mem acc (get_name item) then
add_internal acc tl
else begin
Hashtbl.add acc (get_name item) item;
(get_item item).internal_deps
|> List.filter_map (fun (name, _) ->
match Hashtbl.find_opt d_items_lib (String.cat name ".lib") with
| None -> None
| Some d_item_lib ->
if Option.is_some (get_item d_item_lib).package then None
else Some d_item_lib)
|> fun internals -> add_internal acc (tl @ internals)
end
in
add_internal (Hashtbl.create 10) items_pkg
let get_dune_items dir_types ~pkg ~target =
let d_items =
Lazy.force describe_external_lib_deps
|> List.map (fun d_item ->
let item = Describe_external_lib.get_item d_item in
if Describe_external_lib.is_exe_item d_item && Option.is_none item.package
then
match find_package_of_exe item with
| None -> d_item
| Some pkg -> Describe_external_lib.Exe { item with package = Some pkg }
else d_item)
in
let unresolved_entries =
let exe_items =
List.filter_map (function
| Describe_external_lib.Exe item -> Some item
| _ -> None) d_items
in
bin_of_entries ()
|> Item_map.partition (fun _ (entry:Describe_entries.item) ->
exe_items
|> List.exists
(fun (item:Describe_external_lib.item) ->
is_bin_name_of_describe_lib entry.bin_name item
&& Option.equal String.equal (Some entry.package) item.package))
|> snd
in
let d_items =
d_items
|> List.map (function
| Describe_external_lib.Exe item as d_item ->
item.extensions
|> List.find_map (fun extension ->
Item_map.find_opt (String.cat item.name extension) unresolved_entries)
|> (function
| None -> d_item
| Some entry -> Describe_external_lib.Exe { item with package = Some entry.package })
| d_item -> d_item)
|> List.filter (fun item ->
match (item,target) with
| Describe_external_lib.Test _, `Install -> false
| Describe_external_lib.Test _, `Runtest -> true
| _ , `Runtest -> false
| _, `Install -> true)
|> List.filter (fun d_item -> should_use_dir ~dir_types (Describe_external_lib.get_item d_item).source_dir)
in
List.filter (fun d_item ->
let item = Describe_external_lib.get_item d_item in
(* if an item has no package, we assume it's used for testing *)
if target = `Install then
Option.equal String.equal (Some pkg) item.package
else
Option.equal String.equal (Some pkg) item.package || Option.is_none item.package) d_items
|> resolve_internal_deps d_items
let lib_deps ~pkg ~target =
get_dune_items (Hashtbl.create 10) ~pkg ~target
|> List.fold_left (fun libs item ->
let item = Describe_external_lib.get_item item in
List.map (fun dep -> fst dep, item.source_dir) item.external_deps
|> List.fold_left (fun acc (lib, path) ->
if Astring.String.take ~sat:((<>) '.') lib <> pkg then
let dirs = Libraries.find_opt lib acc |> Option.value ~default:Dir_set.empty in
Libraries.add lib (Dir_set.add path dirs) acc
else
acc) libs) Libraries.empty
let get_external_lib_deps ~pkg ~target : t = lib_deps ~pkg ~target