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
type basename = string
type dirname = string
type dir = string option
type dirpath = string list
type filename = string
type root = filename * dirpath
(** File operations *)
let absolute_dir dir =
let current = Sys.getcwd () in
Sys.chdir dir;
let dir' = Sys.getcwd () in
Sys.chdir current;
dir'
let absolute_file_name ~filename_concat basename odir =
let dir = match odir with Some dir -> dir | None -> "." in
filename_concat (absolute_dir dir) basename
let equal_file f1 f2 =
let filename_concat = Filename.concat in
String.equal
(absolute_file_name ~filename_concat (Filename.basename f1) (Some (Filename.dirname f1)))
(absolute_file_name ~filename_concat (Filename.basename f2) (Some (Filename.dirname f2)))
(** [find_dir_logpath dir] Return the logical path of directory [dir]
if it has been given one. Raise [Not_found] otherwise. In
particular we can check if "." has been attributed a logical path
after processing all options and silently give the default one if
it hasn't. We may also use this to warn if a physical path is met
twice. *)
let register_dir_logpath, find_dir_logpath =
let tbl: (string, string list) Hashtbl.t = Hashtbl.create 19 in
let reg physdir logpath = Hashtbl.add tbl (absolute_dir physdir) logpath in
let fnd physdir = Hashtbl.find tbl (absolute_dir physdir) in
reg,fnd
(** Visit all the directories under [dir], including [dir], in the
same order as for [coqc]/[coqtop] in [System.all_subdirs], that
is, assuming Sys.readdir to have this structure:
├── B
│ └── E.v
│ └── C1
│ │ └── E.v
│ │ └── D1
│ │ └── E.v
│ │ └── F.v
│ │ └── D2
│ │ └── E.v
│ │ └── G.v
│ └── F.v
│ └── C2
│ │ └── E.v
│ │ └── D1
│ │ └── E.v
│ │ └── F.v
│ │ └── D2
│ │ └── E.v
│ │ └── G.v
│ └── G.v
it goes in this (reverse) order:
B.C2.D1.E, B.C2.D2.E,
B.C2.E, B.C2.F, B.C2.G
B.C1.D1.E, B.C1.D2.E,
B.C1.E, B.C1.F, B.C1.G,
B.E, B.F, B.G,
(see discussion at PR #14718)
*)
let add_directory recur add_file phys_dir log_dir =
let root = (phys_dir, log_dir) in
let stack = ref [] in
let curdirfiles = ref [] in
let subdirfiles = ref [] in
let rec aux phys_dir log_dir =
if System.exists_dir phys_dir then
begin
register_dir_logpath phys_dir log_dir;
let f = function
| System.FileDir (phys_f,f) ->
if recur then begin
stack := (!curdirfiles, !subdirfiles) :: !stack;
curdirfiles := []; subdirfiles := [];
aux phys_f (log_dir @ [f]);
let curdirfiles', subdirfiles' = List.hd !stack in
subdirfiles := subdirfiles' @ !subdirfiles @ !curdirfiles;
curdirfiles := curdirfiles'; stack := List.tl !stack
end
| System.FileRegular f ->
curdirfiles := (phys_dir, log_dir, f) :: !curdirfiles
in
System.process_directory f phys_dir
end
else
System.warn_cannot_open_dir phys_dir
in
aux phys_dir log_dir;
List.iter (fun (phys_dir, log_dir, f) -> add_file root phys_dir log_dir f) !subdirfiles;
List.iter (fun (phys_dir, log_dir, f) -> add_file root phys_dir log_dir f) !curdirfiles
(** [get_extension f l] checks whether [f] has one of the extensions
listed in [l]. It returns [f] without its extension, alongside with
the extension. When no extension match, [(f,"")] is returned *)
let rec get_extension f = function
| [] -> (f, "")
| s :: _ when Filename.check_suffix f s -> (Filename.chop_suffix f s, s)
| _ :: l -> get_extension f l
(** Compute the suffixes of a logical path together with the length of the missing part *)
let rec suffixes full = function
| [] -> assert false
| [name] -> [full,[name]]
| dir::suffix as l -> (full,l)::suffixes false suffix
(** Compute all the pairs [(from,suffs)] such that a logical path
decomposes into [from @ ... @ suff] for some [suff] in [suffs],
i.e. such that once [from] is fixed, [From from Require suff]
refers (in the absence of ambiguity) to this logical path for
exactly the [suff] in [suffs] *)
let rec cuts recur = function
| [] -> []
| [dir] ->
[[],[true,[dir]]]
| dir::tail as l ->
([],if recur then suffixes true l else [true,l]) ::
List.map (fun (fromtail,suffixes) -> (dir::fromtail,suffixes)) (cuts true tail)
type result =
| ExactMatches of filename list
| PartialMatchesInSameRoot of root * filename list
module State = struct
type t =
{ vfiles : (dirpath * dirpath, result) Hashtbl.t
; coqlib : (dirpath * dirpath, result) Hashtbl.t
; other : (dirpath * dirpath, result) Hashtbl.t
; boot : bool
; mutable worker : string option
}
let make ~worker ~boot =
{ vfiles = Hashtbl.create 4101
; coqlib = Hashtbl.create 19
; other = Hashtbl.create 17317
; boot
; worker
}
end
let get_worker_path st =
match st.State.worker with
| Some w -> w
| None ->
let w = Fl.Internal.get_worker_path () in
st.worker <- Some w;
w
let add_set f l = f :: CList.remove equal_file f l
let insert_key root (full,f) m =
match full, m with
| true, ExactMatches l -> ExactMatches (add_set f l)
| true, PartialMatchesInSameRoot _ -> ExactMatches [f]
| false, ExactMatches l -> m
| false, PartialMatchesInSameRoot (root',l) ->
PartialMatchesInSameRoot (root, if root = root' then add_set f l else [f])
let safe_add_key q root key (full,f as file) =
try
let l = Hashtbl.find q key in
Hashtbl.add q key (insert_key root file l)
with Not_found ->
Hashtbl.add q key (if full then ExactMatches [f] else PartialMatchesInSameRoot (root,[f]))
let safe_add q root ((from, suffixes), file) =
List.iter (fun (full,suff) -> safe_add_key q root (from,suff) (full,file)) suffixes
let search_table table ?(from=[]) s =
Hashtbl.find table (from, s)
let search_v_known st ?from s =
try Some (search_table st.State.vfiles ?from s)
with Not_found -> None
let search_other_known st ?from s =
try Some (search_table st.State.other ?from s)
with Not_found -> None
let is_in_coqlib st ?from s =
try let _ = search_table st.State.coqlib ?from s in true
with Not_found -> match from with Some _ -> false | None ->
try let _ = search_table st.State.coqlib ~from:["Stdlib"] s in true
with Not_found -> false
let add_paths recur root table phys_dir log_dir basename =
let name = log_dir@[basename] in
let file = System.(phys_dir // basename) in
let paths = cuts recur name in
let iter n = safe_add table root (n, file) in
List.iter iter paths
let add_coqlib_known st recur root phys_dir log_dir f =
let root = (phys_dir, log_dir) in
match get_extension f [".vo"; ".vos"] with
| (basename, (".vo" | ".vos")) ->
add_paths recur root st.State.coqlib phys_dir log_dir basename
| _ -> ()
let add_known st recur root phys_dir log_dir f =
match get_extension f [".v"; ".vo"; ".vos"] with
| (basename,".v") ->
add_paths recur root st.State.vfiles phys_dir log_dir basename
| (basename, (".vo" | ".vos")) when not st.State.boot ->
add_paths recur root st.State.vfiles phys_dir log_dir basename
| (f,_) ->
add_paths recur root st.State.other phys_dir log_dir f
(** Simply add this directory and imports it, no subdirs. This is used
by the implicit adding of the current path (which is not recursive). *)
let add_norec_dir_import add_file phys_dir log_dir =
add_directory false (add_file true) phys_dir log_dir
(** -Q semantic: go in subdirs but only full logical paths are known. *)
let add_rec_dir_no_import add_file phys_dir log_dir =
add_directory true (add_file false) phys_dir log_dir
(** -R semantic: go in subdirs and suffixes of logical paths are known. *)
let add_rec_dir_import add_file phys_dir log_dir =
add_directory true (add_file true) phys_dir log_dir
let split_period = Str.split (Str.regexp (Str.quote "."))
let add_current_dir st dir = add_norec_dir_import (add_known st) dir []
let add_q_include st path l = add_rec_dir_no_import (add_known st) path (split_period l)
let add_r_include st path l = add_rec_dir_import (add_known st) path (split_period l)