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
open Std
open Option.Infix
open Typedtree
open Browse_raw
open Browse_tree
let id_of_patt = function
| { pat_desc = Tpat_var (id, _); _ } -> Some id
| _ -> None
let mk ?(children = []) ~location ~deprecated outline_kind outline_type id =
{ Query_protocol.outline_kind;
outline_type;
location;
children;
outline_name = Ident.name id;
deprecated
}
let get_class_field_desc_infos = function
| Typedtree.Tcf_val (str_loc, _, _, _, _) -> Some (str_loc, `Value)
| Typedtree.Tcf_method (str_loc, _, _) -> Some (str_loc, `Method)
| _ -> None
let outline_type ~env typ =
let ppf, to_string = Format.to_string () in
Printtyp.wrap_printing_env env (fun () ->
Type_utils.print_type_with_decl ~verbosity:(Mconfig.Verbosity.Lvl 0) env
ppf typ);
Some (to_string ())
let rec summarize node =
let location = node.t_loc in
match node.t_node with
| Value_binding vb ->
let deprecated = Type_utils.is_deprecated vb.vb_attributes in
begin
match id_of_patt vb.vb_pat with
| None -> None
| Some ident ->
let typ = outline_type ~env:node.t_env vb.vb_pat.pat_type in
Some (mk ~location ~deprecated `Value typ ident)
end
| Value_description vd ->
let deprecated = Type_utils.is_deprecated vd.val_attributes in
let typ = outline_type ~env:node.t_env vd.val_val.val_type in
Some (mk ~location ~deprecated `Value typ vd.val_id)
| Module_declaration md ->
let children = get_mod_children node in
begin
match md.md_id with
| None -> None
| Some id ->
let deprecated = Type_utils.is_deprecated md.md_attributes in
Some (mk ~children ~location ~deprecated `Module None id)
end
| Module_binding mb ->
let children = get_mod_children node in
begin
match mb.mb_id with
| None -> None
| Some id ->
let deprecated = Type_utils.is_deprecated mb.mb_attributes in
Some (mk ~children ~location ~deprecated `Module None id)
end
| Module_type_declaration mtd ->
let children = get_mod_children node in
let deprecated = Type_utils.is_deprecated mtd.mtd_attributes in
Some (mk ~deprecated ~children ~location `Modtype None mtd.mtd_id)
| Type_declaration td ->
let children =
List.concat_map (Lazy.force node.t_children) ~f:(fun child ->
match child.t_node with
| Type_kind _ ->
List.map (Lazy.force child.t_children) ~f:(fun x ->
match x.t_node with
| Constructor_declaration c ->
let deprecated = Type_utils.is_deprecated c.cd_attributes in
mk `Constructor None c.cd_id ~deprecated ~location:c.cd_loc
| Label_declaration ld ->
let deprecated = Type_utils.is_deprecated ld.ld_attributes in
mk `Label None ld.ld_id ~deprecated ~location:ld.ld_loc
| _ -> assert false )
| _ -> [])
in
let deprecated = Type_utils.is_deprecated td.typ_attributes in
Some (mk ~children ~location ~deprecated `Type None td.typ_id)
| Type_extension te ->
let name = Path.name te.tyext_path in
let children =
List.filter_map (Lazy.force node.t_children) ~f:(fun x ->
summarize x >>| fun x ->
{ x with Query_protocol.outline_kind = `Constructor })
in
let deprecated = Type_utils.is_deprecated te.tyext_attributes in
Some
{ Query_protocol.outline_name = name;
outline_kind = `Type;
outline_type = None;
location;
children;
deprecated
}
| Extension_constructor ec ->
let deprecated = Type_utils.is_deprecated ec.ext_attributes in
Some (mk ~location `Exn None ec.ext_id ~deprecated)
| Class_declaration cd ->
let children =
List.concat_map (Lazy.force node.t_children) ~f:get_class_elements
in
let deprecated = Type_utils.is_deprecated cd.ci_attributes in
Some (mk ~children ~location `Class None cd.ci_id_class_type ~deprecated)
| _ -> None
and get_class_elements node =
match node.t_node with
| Class_expr _ ->
List.concat_map (Lazy.force node.t_children) ~f:get_class_elements
| Class_structure _ ->
List.filter_map (Lazy.force node.t_children) ~f:(fun child ->
match child.t_node with
| Class_field cf -> begin
match get_class_field_desc_infos cf.cf_desc with
| Some (str_loc, outline_kind) ->
let deprecated = Type_utils.is_deprecated cf.cf_attributes in
Some
{ Query_protocol.outline_name = str_loc.Location.txt;
outline_kind;
outline_type = None;
location = str_loc.Location.loc;
children = [];
deprecated
}
| None -> None
end
| _ -> None)
| _ -> []
and get_mod_children node =
List.concat_map (Lazy.force node.t_children) ~f:remove_mod_indir
and remove_mod_indir node =
match node.t_node with
| Module_expr _ | Module_type _ ->
List.concat_map (Lazy.force node.t_children) ~f:remove_mod_indir
| _ -> remove_top_indir node
and remove_top_indir t =
match t.t_node with
| Structure _ | Signature _ ->
List.concat_map ~f:remove_top_indir (Lazy.force t.t_children)
| Signature_item _ | Structure_item _ ->
List.filter_map (Lazy.force t.t_children) ~f:summarize
| _ -> []
let get browses = List.concat @@ List.rev_map ~f:remove_top_indir browses
let shape cursor nodes =
let rec aux node =
let selected =
match node.t_node with
| Module_expr _
| Module_type_constraint _
| Structure _
| Structure_item _
| Module_binding _
| Module_type _
| Signature _
| Signature_item _
| Module_declaration _
| Module_type_declaration _
| Module_binding_name _
| Module_declaration_name _
| Module_type_declaration_name _ -> not node.t_loc.Location.loc_ghost
| _ ->
Location_aux.compare_pos cursor node.t_loc = 0
&& Lexing.compare_pos node.t_loc.Location.loc_start cursor <> 0
&& Lexing.compare_pos node.t_loc.Location.loc_end cursor <> 0
in
if selected then
[ { Query_protocol.shape_loc = node.t_loc;
shape_sub = List.concat_map ~f:aux (Lazy.force node.t_children)
}
]
else []
in
List.concat_map ~f:aux nodes