Skip to content

Commit 6870040

Browse files
authored
Stdlib variants: better names, structure, and an alerting thread/event replacement (#22)
* move files around * draw out each alert module type for easy reuse
1 parent 5d0f9be commit 6870040

File tree

12 files changed

+313
-215
lines changed

12 files changed

+313
-215
lines changed

index.mld

+6-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,12 @@ This framework consists of a number of libraries and executables for testing unt
88

99
The following public components are included in the package:
1010

11-
{!modules: Ast_check Stdlib_variants Test_lib Test_runner}
11+
{!modules: Ast_check Test_lib Test_runner}
12+
13+
{{!page-variants_and_overrides} [Stdlib] variants and overrides}:
14+
{!modules: Stdlib_alerts Stdlib_components Overrides}
15+
16+
{1 Internal Components}
1217

1318
The following components are intended for use within framework code only:
1419

src/stdlib-variants/dune

+1-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
(library
2-
(name stdlib_variants)
3-
(public_name less-power.stdlib-variants)
4-
5-
(libraries common stdlib_components stdlib_alerts))
1+
(documentation)

src/stdlib-variants/signature-builder/dune

+10
Original file line numberDiff line numberDiff line change
@@ -91,3 +91,13 @@
9191
%{lib:stdlib:uchar.mli}
9292
%{lib:stdlib:unit.mli}
9393
%{lib:stdlib:weak.mli}))))
94+
95+
(rule
96+
(target threads_signature_info.ml)
97+
(action
98+
(with-stdout-to
99+
%{target}
100+
(run
101+
lp-make-interface-description
102+
%{lib:stdlib:threads/event.mli}
103+
%{lib:stdlib:threads/thread.mli}))))

src/stdlib-variants/signature-builder/signature_builder.ml

+11-3
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,12 @@ let load_signature_info (raw_info : raw_signature_info) =
4141
(fun n (path, raw_sig) -> info_add_signature path (load_raw_signature raw_sig) n)
4242
(Node (None, [])) raw_info
4343

44-
(** {1 Signature of {!Stdlib}} *)
44+
(** {1 Signature of {!Stdlib} and {!Thread}/{!Event}} *)
4545

4646
let stdlib_signature_info = Stdlib_signature_info.signature_info |> load_signature_info
4747

48+
let threads_signature_info = Threads_signature_info.signature_info |> load_signature_info
49+
4850
(** {1 PPX rewriter} *)
4951

5052
[@@@warning "-4"]
@@ -298,9 +300,15 @@ and eval_include_spec sig_infos = function
298300
eval_include_specs sig_infos spec_items
299301
|> List.map (modify_attributes (fun attr -> attr @ attributes))
300302

303+
let default_sig_infos = [
304+
("stdlib", stdlib_signature_info);
305+
("threads", threads_signature_info);
306+
]
307+
301308
(** PPX intended for use an a Ppxlib extender. The default [sig_infos] argument
302-
contains descriptions for the standard library under ["stdlib"]. *)
303-
let ppx_include ?(sig_infos = ["stdlib", stdlib_signature_info]) ~ctxt exp =
309+
contains descriptions for the standard library under ["stdlib"]
310+
and for threads/events under ["threads"]. *)
311+
let ppx_include ?(sig_infos = default_sig_infos) ~ctxt exp =
304312
let loc = Expansion_context.Extension.extension_point_loc ctxt in
305313
let module B = Ast_builder.Make (struct let loc = loc end) in
306314
let sig_items = Parse.include_specs exp |> eval_include_specs sig_infos in
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
(library
2+
(name std_overrides)
3+
(public_name less-power.std-overrides)
4+
(libraries stdlib_alerts stdlib_components))
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
(** Ready-to-use modules for replacing the default pervasives, using [-open]. *)
2+
3+
module Hide_stdlib_variants = struct
4+
(** Prevent access to the full variant library. Intended to be opened at the top level
5+
to hide the [Stdlib_variants] module, and a couple others.
6+
7+
This is included in the other overrides modules, so you usually don't need
8+
to pass it to the [-open] flag yourself. However, you should use it
9+
if you define your own override module based on less-power stdlib variants. *)
10+
11+
(** {i These modules are intentionally empty.} *)
12+
13+
module Stdlib_variants = struct end
14+
15+
(* Shouldn't be necessary with (implicit_transitive_deps false), but to be safe... *)
16+
module Stdlib_components = struct end
17+
module Stdlib_alerts = struct end
18+
module Threads_alerts = struct end
19+
20+
end
21+
22+
23+
(** Puts the safe parts of [Stdlib] into scope,
24+
from {!Stdlib_components.Stdlib_safe} *)
25+
module Stdlib_safe = struct
26+
27+
module Stdlib = Stdlib_components.Stdlib_safe
28+
include Stdlib_components.Stdlib_safe
29+
30+
include Hide_stdlib_variants
31+
end
32+
33+
(** Puts an alerting [Stdlib] into scope,
34+
from {!Stdlib_alerts.Stdlib_alerting}. *)
35+
module Stdlib_alerting = struct
36+
37+
module Stdlib = Stdlib_alerts.Stdlib_alerting
38+
include Stdlib_alerts.Stdlib_alerting
39+
40+
include Hide_stdlib_variants
41+
end
+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
(library
22
(name stdlib_alerts)
33
(public_name less-power.stdlib-alerts)
4+
(modules stdlib_alerts)
45
(preprocess (pps signature_builder_ppx))
56
(libraries signature_builder))
7+
8+
(library
9+
(name threads_alerts)
10+
(public_name less-power.threads-alerts)
11+
(modules threads_alerts)
12+
(preprocess (pps signature_builder_ppx))
13+
(libraries signature_builder threads unix))

0 commit comments

Comments
 (0)