Source file cmt.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
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
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
open Asttypes
open Types
open Typedtree
module OCamlPath = Path
open Odoc_model.Paths
open Odoc_model.Lang
module Env = Odoc_model.Ident_env
let parenthesise name =
match name with
| "asr" | "land" | "lnot" | "lor" | "lsl" | "lsr"
| "lxor" | "mod" -> "(" ^ name ^ ")"
| _ ->
if (String.length name > 0) then
match name.[0] with
| 'a' .. 'z' | '\223' .. '\246' | '\248' .. '\255' | '_'
| 'A' .. 'Z' | '\192' .. '\214' | '\216' .. '\222' -> name
| _ -> "(" ^ name ^ ")"
else name
let read_core_type env ctyp =
Cmi.read_type_expr env ctyp.ctyp_type
let rec read_pattern env parent doc pat =
let open Odoc_model.Names in
let open Signature in
match pat.pat_desc with
| Tpat_any -> []
| Tpat_var(id, _) ->
let open Value in
let name = parenthesise (Ident.name id) in
let id = `Value(parent, ValueName.of_string name) in
Cmi.mark_type_expr pat.pat_type;
let type_ = Cmi.read_type_expr env pat.pat_type in
[Value {id; doc; type_}]
| Tpat_alias(pat, id, _) ->
let open Value in
let name = parenthesise (Ident.name id) in
let id = `Value(parent, ValueName.of_string name) in
Cmi.mark_type_expr pat.pat_type;
let type_ = Cmi.read_type_expr env pat.pat_type in
Value {id; doc; type_} :: read_pattern env parent doc pat
| Tpat_constant _ -> []
| Tpat_tuple pats ->
List.concat (List.map (read_pattern env parent doc) pats)
#if OCAML_VERSION < (4, 13, 0)
| Tpat_construct(_, _, pats) ->
#else
| Tpat_construct(_,_,pats,_) ->
#endif
List.concat (List.map (read_pattern env parent doc) pats)
| Tpat_variant(_, None, _) -> []
| Tpat_variant(_, Some pat, _) ->
read_pattern env parent doc pat
| Tpat_record(pats, _) ->
List.concat
(List.map
(fun (_, _, pat) -> read_pattern env parent doc pat)
pats)
| Tpat_array pats ->
List.concat (List.map (read_pattern env parent doc) pats)
| Tpat_or(pat, _, _) ->
read_pattern env parent doc pat
| Tpat_lazy pat ->
read_pattern env parent doc pat
#if OCAML_MAJOR = 4 && OCAML_MINOR >= 08 && OCAML_MINOR < 11
| Tpat_exception pat ->
read_pattern env parent doc pat
#endif
let read_value_binding env parent vb =
let container = (parent : Identifier.Signature.t :> Identifier.LabelParent.t) in
let doc = Doc_attr.attached container vb.vb_attributes in
read_pattern env parent doc vb.vb_pat
let read_value_bindings env parent vbs =
let container = (parent : Identifier.Signature.t :> Identifier.LabelParent.t) in
let items =
List.fold_left
(fun acc vb ->
let open Signature in
let comments =
Doc_attr.standalone_multiple container vb.vb_attributes in
let comments = List.map (fun com -> Comment com) comments in
let vb = read_value_binding env parent vb in
List.rev_append vb (List.rev_append comments acc))
[] vbs
in
List.rev items
let read_type_extension env parent tyext =
let open Extension in
let type_path = Env.Path.read_type env tyext.tyext_path in
let container = (parent : Identifier.Signature.t :> Identifier.LabelParent.t) in
let doc = Doc_attr.attached container tyext.tyext_attributes in
let type_params =
List.map (fun (ctyp, _) -> ctyp.ctyp_type) tyext.tyext_params
in
let constructors =
List.map (fun ext -> ext.ext_type) tyext.tyext_constructors
in
let type_params =
Cmi.mark_type_extension type_params constructors
in
let type_params =
List.map
(Cmi.read_type_parameter false Variance.null)
type_params
in
let private_ = (tyext.tyext_private = Private) in
let constructors =
List.map
(fun ext ->
Cmi.read_extension_constructor
env parent ext.ext_id ext.ext_type)
tyext.tyext_constructors
in
{ type_path; doc; type_params; private_; constructors; }
let rec read_class_type_field env parent ctf =
let open ClassSignature in
let open Odoc_model.Names in
let container = (parent : Identifier.ClassSignature.t :> Identifier.LabelParent.t) in
let doc = Doc_attr.attached container ctf.ctf_attributes in
match ctf.ctf_desc with
| Tctf_val(name, mutable_, virtual_, typ) ->
let open InstanceVariable in
let name = parenthesise name in
let id = `InstanceVariable(parent, InstanceVariableName.of_string name) in
let mutable_ = (mutable_ = Mutable) in
let virtual_ = (virtual_ = Virtual) in
let type_ = read_core_type env typ in
Some (InstanceVariable {id; doc; mutable_; virtual_; type_})
| Tctf_method(name, private_, virtual_, typ) ->
let open Method in
let name = parenthesise name in
let id = `Method(parent, MethodName.of_string name) in
let private_ = (private_ = Private) in
let virtual_ = (virtual_ = Virtual) in
let type_ = read_core_type env typ in
Some (Method {id; doc; private_; virtual_; type_})
| Tctf_constraint(_, _) -> None
| Tctf_inherit cltyp ->
Some (Inherit (read_class_signature env parent [] cltyp))
| Tctf_attribute attr ->
match Doc_attr.standalone container attr with
| None -> None
| Some doc -> Some (Comment doc)
and read_class_signature env parent params cltyp =
let open ClassType in
match cltyp.cltyp_desc with
| Tcty_constr(p, _, params) ->
let p = Env.Path.read_class_type env p in
let params = List.map (read_core_type env) params in
Constr(p, params)
| Tcty_signature csig ->
let open ClassSignature in
let self =
Cmi.read_self_type csig.csig_self.ctyp_type
in
let constraints =
Cmi.read_type_constraints env params
in
let constraints =
List.map
(fun (typ1, typ2) -> Constraint(typ1, typ2))
constraints
in
let items =
List.fold_left
(fun rest item ->
match read_class_type_field env parent item with
| None -> rest
| Some item -> item :: rest)
[] csig.csig_fields
in
let items = constraints @ List.rev items in
Signature {self; items}
| Tcty_arrow _ -> assert false
#if OCAML_MAJOR = 4 && OCAML_MINOR >= 06
| Tcty_open _ -> assert false
#endif
let rec read_class_type env parent params cty =
let open Class in
match cty.cltyp_desc with
| Tcty_constr _ | Tcty_signature _ ->
ClassType (read_class_signature env parent params cty)
| Tcty_arrow(lbl, arg, res) ->
let lbl = Cmi.read_label lbl in
let arg = read_core_type env arg in
let res = read_class_type env parent params res in
Arrow(lbl, arg, res)
#if OCAML_MAJOR = 4 && OCAML_MINOR >= 06 && OCAML_MINOR < 08
| Tcty_open (_, _, _, _, cty) -> read_class_type env parent params cty
#elif OCAML_MAJOR = 4 && OCAML_MINOR >= 08
| Tcty_open (_, cty) -> read_class_type env parent params cty
#endif
let rec read_class_field env parent cf =
let open ClassSignature in
let open Odoc_model.Names in
let container = (parent : Identifier.ClassSignature.t :> Identifier.LabelParent.t) in
let doc = Doc_attr.attached container (cf.cf_attributes) in
match cf.cf_desc with
| Tcf_val({txt = name; _}, mutable_, _, kind, _) ->
let open InstanceVariable in
let name = parenthesise name in
let id = `InstanceVariable(parent, InstanceVariableName.of_string name) in
let mutable_ = (mutable_ = Mutable) in
let virtual_, type_ =
match kind with
| Tcfk_virtual typ ->
true, read_core_type env typ
| Tcfk_concrete(_, expr) ->
false, Cmi.read_type_expr env expr.exp_type
in
Some (InstanceVariable {id; doc; mutable_; virtual_; type_})
| Tcf_method({txt = name; _}, private_, kind) ->
let open Method in
let name = parenthesise name in
let id = `Method(parent, MethodName.of_string name) in
let private_ = (private_ = Private) in
let virtual_, type_ =
match kind with
| Tcfk_virtual typ ->
true, read_core_type env typ
| Tcfk_concrete(_, expr) ->
false, Cmi.read_type_expr env expr.exp_type
in
Some (Method {id; doc; private_; virtual_; type_})
| Tcf_constraint(_, _) -> None
| Tcf_inherit(_, cl, _, _, _) ->
Some (Inherit (read_class_structure env parent [] cl))
| Tcf_initializer _ -> None
| Tcf_attribute attr ->
match Doc_attr.standalone container attr with
| None -> None
| Some doc -> Some (Comment doc)
and read_class_structure env parent params cl =
let open ClassType in
match cl.cl_desc with
| Tcl_ident _ | Tcl_apply _ ->
Cmi.read_class_signature env parent params cl.cl_type
| Tcl_structure cstr ->
let open ClassSignature in
let self = Cmi.read_self_type cstr.cstr_self.pat_type in
let constraints =
Cmi.read_type_constraints env params
in
let constraints =
List.map
(fun (typ1, typ2) -> Constraint(typ1, typ2))
constraints
in
let items =
List.fold_left
(fun rest item ->
match read_class_field env parent item with
| None -> rest
| Some item -> item :: rest)
[] cstr.cstr_fields
in
let items = constraints @ List.rev items in
Signature {self; items}
| Tcl_fun _ -> assert false
| Tcl_let(_, _, _, cl) -> read_class_structure env parent params cl
| Tcl_constraint(cl, None, _, _, _) -> read_class_structure env parent params cl
| Tcl_constraint(_, Some cltyp, _, _, _) ->
read_class_signature env parent params cltyp
#if OCAML_MAJOR = 4 && OCAML_MINOR >= 06 && OCAML_MINOR < 08
| Tcl_open (_, _, _, _, cl) -> read_class_structure env parent params cl
#elif OCAML_MAJOR = 4 && OCAML_MINOR >= 08
| Tcl_open (_, cl) -> read_class_structure env parent params cl
#endif
let rec read_class_expr env parent params cl =
let open Class in
match cl.cl_desc with
| Tcl_ident _ | Tcl_apply _ ->
Cmi.read_class_type env parent params cl.cl_type
| Tcl_structure _ ->
ClassType (read_class_structure env parent params cl)
| Tcl_fun(lbl, arg, _, res, _) ->
let lbl = Cmi.read_label lbl in
let arg = Cmi.read_type_expr env arg.pat_type in
let res = read_class_expr env parent params res in
Arrow(lbl, arg, res)
| Tcl_let(_, _, _, cl) ->
read_class_expr env parent params cl
| Tcl_constraint(cl, None, _, _, _) ->
read_class_expr env parent params cl
| Tcl_constraint(_, Some cltyp, _, _, _) ->
read_class_type env parent params cltyp
#if OCAML_MAJOR = 4 && OCAML_MINOR >= 06 && OCAML_MINOR < 08
| Tcl_open (_, _, _, _, cl) -> read_class_expr env parent params cl
#elif OCAML_MAJOR = 4 && OCAML_MINOR >= 08
| Tcl_open (_, cl) -> read_class_expr env parent params cl
#endif
let read_class_declaration env parent cld =
let open Class in
let open Odoc_model.Names in
let name = parenthesise (Ident.name cld.ci_id_class) in
let id = `Class(parent, ClassName.of_string name) in
let container = (parent : Identifier.Signature.t :> Identifier.LabelParent.t) in
let doc = Doc_attr.attached container cld.ci_attributes in
Cmi.mark_class_declaration cld.ci_decl;
let virtual_ = (cld.ci_virt = Virtual) in
let clparams =
List.map (fun (ctyp, _) -> ctyp.ctyp_type) cld.ci_params
in
let params =
List.map
(Cmi.read_type_parameter false Variance.null)
clparams
in
let type_ = read_class_expr env id clparams cld.ci_expr in
{ id; doc; virtual_; params; type_; expansion = None }
let read_class_declarations env parent clds =
let container = (parent : Identifier.Signature.t :> Identifier.LabelParent.t) in
let open Signature in
List.fold_left begin fun (acc, recursive) cld ->
let comments = Doc_attr.standalone_multiple container cld.ci_attributes in
let comments = List.map (fun com -> Comment com) comments in
let cld = read_class_declaration env parent cld in
((Class (recursive, cld))::(List.rev_append comments acc), And)
end ([], Ordinary) clds
|> fst
|> List.rev
let rec read_module_expr env parent label_parent pos mexpr =
let open ModuleType in
let open Odoc_model.Names in
match mexpr.mod_desc with
| Tmod_ident _ ->
Cmi.read_module_type env parent pos (Odoc_model.Compat.module_type mexpr.mod_type)
| Tmod_structure str -> Signature (read_structure env parent str)
#if OCAML_MAJOR = 4 && OCAML_MINOR >= 10
| Tmod_functor(parameter, res) ->
let parameter, env =
match parameter with
| Unit -> FunctorParameter.Unit, env
| Named (id_opt, _, arg) ->
let name, env =
match id_opt with
| Some id -> parenthesise (Ident.name id), Env.add_argument parent pos id (ArgumentName.of_ident id) env
| None -> "_", env
in
let id = `Argument(parent, pos, Odoc_model.Names.ArgumentName.of_string name) in
let arg = Cmti.read_module_type env id label_parent 1 arg in
let expansion =
match arg with
| Signature _ -> Some Module.AlreadyASig
| _ -> None
in
Named { id; expr=arg; expansion}, env
in
let res = read_module_expr env parent label_parent (pos + 1) res in
Functor(parameter, res)
#else
| Tmod_functor(id, _, arg, res) ->
let arg =
match arg with
| None -> FunctorParameter.Unit
| Some arg ->
let name = parenthesise (Ident.name id) in
let id = `Argument(parent, pos, ArgumentName.of_string name) in
let arg = Cmti.read_module_type env id label_parent 1 arg in
let expansion =
match arg with
| Signature _ -> Some Module.AlreadyASig
| _ -> None
in
Named { FunctorParameter. id; expr = arg; expansion }
in
let env = Env.add_argument parent pos id (ArgumentName.of_ident id) env in
let res = read_module_expr env parent label_parent (pos + 1) res in
Functor(arg, res)
#endif
| Tmod_apply _ ->
Cmi.read_module_type env parent pos (Odoc_model.Compat.module_type mexpr.mod_type)
| Tmod_constraint(_, _, Tmodtype_explicit mty, _) ->
Cmti.read_module_type env parent label_parent pos mty
| Tmod_constraint(mexpr, _, Tmodtype_implicit, _) ->
read_module_expr env parent label_parent pos mexpr
| Tmod_unpack(_, mty) ->
Cmi.read_module_type env parent pos (Odoc_model.Compat.module_type mty)
and unwrap_module_expr_desc = function
| Tmod_constraint(mexpr, _, Tmodtype_implicit, _) ->
unwrap_module_expr_desc mexpr.mod_desc
| desc -> desc
and read_module_binding env parent mb =
let open Module in
let open Odoc_model.Names in
#if OCAML_MAJOR = 4 && OCAML_MINOR >= 10
match mb.mb_id with
| None -> None
| Some id ->
let name = parenthesise (Ident.name id) in
let id = `Module(parent, ModuleName.of_string name) in
#else
let name = parenthesise (Ident.name mb.mb_id) in
let id = `Module(parent, ModuleName.of_string name) in
#endif
let container = (parent : Identifier.Signature.t :> Identifier.LabelParent.t) in
let doc = Doc_attr.attached container mb.mb_attributes in
let canonical =
let doc = List.map Odoc_model.Location_.value doc in
match List.find (function `Tag (`Canonical _) -> true | _ -> false) doc with
| exception Not_found -> None
| `Tag (`Canonical (p, r)) -> Some (p, r)
| _ -> None
in
let type_ =
match unwrap_module_expr_desc mb.mb_expr.mod_desc with
| Tmod_ident(p, _) -> Alias (Env.Path.read_module env p)
| _ -> ModuleType (read_module_expr env id container 1 mb.mb_expr)
in
let hidden =
#if OCAML_MAJOR = 4 && OCAML_MINOR >= 10
match canonical, mb.mb_id with
| None, Some id -> Odoc_model.Root.contains_double_underscore (Ident.name id)
| _, _ -> false
#else
match canonical with
| None -> Odoc_model.Root.contains_double_underscore (Ident.name mb.mb_id)
| _ -> false
#endif
in
let expansion =
match type_ with
| ModuleType (ModuleType.Signature _) -> Some AlreadyASig
| _ -> None
in
Some {id; doc; type_; expansion; canonical; hidden; display_type = None}
and read_module_bindings env parent mbs =
let container = (parent : Identifier.Signature.t :> Identifier.LabelParent.t)
in
let open Signature in
List.fold_left
(fun (acc, recursive) mb ->
let comments = Doc_attr.standalone_multiple container mb.mb_attributes in
let comments = List.map (fun com -> Comment com) comments in
match read_module_binding env parent mb with
| Some mb ->
((Module (recursive, mb))::(List.rev_append comments acc), And)
| None -> (acc, recursive))
([], Rec) mbs
|> fst
|> List.rev
#if OCAML_MAJOR = 4 && OCAML_MINOR >= 08
and module_of_extended_open env parent o =
let open Module in
let id = `Module (parent, Odoc_model.Names.ModuleName.internal_of_string (Env.module_name_of_open o)) in
let container = (parent : Identifier.Signature.t :> Identifier.LabelParent.t) in
let type_ =
match unwrap_module_expr_desc o.open_expr.mod_desc with
| Tmod_ident(p, _) -> Alias (Env.Path.read_module env p)
| _ -> ModuleType (read_module_expr env id container 1 o.open_expr)
in
{ id
; doc = []
; type_
; canonical = None
; hidden = true
; display_type = None
; expansion = None }
#endif
and read_structure_item env parent item =
let open Signature in
match item.str_desc with
| Tstr_eval _ -> []
| Tstr_value(_, vbs) ->
read_value_bindings env parent vbs
| Tstr_primitive vd ->
[Cmti.read_value_description env parent vd]
#if OCAML_MAJOR = 4 && OCAML_MINOR = 02
| Tstr_type (decls) ->
let rec_flag = Ordinary in
#else
| Tstr_type (rec_flag, decls) ->
let rec_flag =
match rec_flag with
| Recursive -> Ordinary
| Nonrecursive -> Nonrec
in
#endif
Cmti.read_type_declarations env parent rec_flag decls
| Tstr_typext tyext ->
[TypExt (read_type_extension env parent tyext)]
| Tstr_exception ext ->
let ext =
#if OCAML_MAJOR = 4 && OCAML_MINOR >= 08
Cmi.read_exception env parent ext.tyexn_constructor.ext_id ext.tyexn_constructor.ext_type
#else
Cmi.read_exception env parent ext.ext_id ext.ext_type
#endif
in
[Exception ext]
| Tstr_module mb -> begin
match read_module_binding env parent mb with
| Some mb ->
[Module (Ordinary, mb)]
| None -> []
end
| Tstr_recmodule mbs ->
read_module_bindings env parent mbs
| Tstr_modtype mtd ->
[ModuleType (Cmti.read_module_type_declaration env parent mtd)]
| Tstr_open o ->
#if OCAML_MAJOR = 4 && OCAML_MINOR < 08
ignore(o); []
#else
[Comment `Stop; Module (Ordinary, module_of_extended_open env parent o); Comment `Stop]
#endif
| Tstr_include incl ->
[Include (read_include env parent incl)]
| Tstr_class cls ->
let cls = List.map
#if OCAML_MAJOR = 4 && OCAML_MINOR = 02
(fun (cl, _, _) -> cl)
#else
(fun (cl, _) -> cl)
#endif
cls in
read_class_declarations env parent cls
| Tstr_class_type cltyps ->
let cltyps = List.map (fun (_, _, clty) -> clty) cltyps in
Cmti.read_class_type_declarations env parent cltyps
| Tstr_attribute attr ->
let container = (parent : Identifier.Signature.t :> Identifier.LabelParent.t) in
match Doc_attr.standalone container attr with
| None -> []
| Some doc -> [Comment doc]
and read_include env parent incl =
let open Include in
let container = (parent : Identifier.Signature.t :> Identifier.LabelParent.t) in
let doc = Doc_attr.attached container incl.incl_attributes in
let decl =
let open Module in
match unwrap_module_expr_desc incl.incl_mod.mod_desc with
| Tmod_ident(p, _) -> Alias (Env.Path.read_module env p)
| _ -> ModuleType (read_module_expr env parent container 1 incl.incl_mod)
in
let content = Cmi.read_signature env parent (Odoc_model.Compat.signature incl.incl_type) in
let expansion = { content; resolved = false } in
{parent; doc; decl; expansion}
and read_structure env parent str =
let env = Env.add_structure_tree_items parent str env in
let items =
List.fold_left
(fun items item ->
List.rev_append (read_structure_item env parent item) items)
[] str.str_items
in
List.rev items
let read_implementation root name impl =
let id = `Root(root, Odoc_model.Names.UnitName.of_string name) in
let items = read_structure Env.empty id impl in
let doc, items =
let open Signature in
match items with
| Comment (`Docs doc) :: items -> doc, items
| _ -> Doc_attr.empty, items
in
(id, doc, items)