Source file graph_code_java.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
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
open Common
module E = Entity_code
module G = Graph_code
open Ast_java
module Ast = Ast_java
module PI = Parse_info
type env = {
g: Graph_code.graph;
phase: phase;
current: Graph_code.node;
current_qualifier: Ast_java.qualified_ident;
imported_namespace: (string list) list;
imported_qualified: (string * (bool * Ast_java.qualified_ident)) list;
params_or_locals: (string * bool ) list;
type_parameters: string list;
}
and phase = Defs | Inheritance | Uses
let parse ~show_parse_error file =
try
Parse_java.parse_program file
with
| Timeout -> raise Timeout
| exn ->
if show_parse_error
then pr2_once (spf "PARSE ERROR with %s, exn = %s" file
(Common.exn_to_s exn));
{ package = None; imports = []; decls = [] }
let str_of_qualified_ident xs =
xs +> List.map Ast.unwrap +> Common.join "."
let str_of_name xs =
xs +> List.map (fun (_tyarg_todo, ident) -> Ast.unwrap ident) +>
Common.join "."
let p_or_l v =
Ast.unwrap v.v_name, Ast.is_final v.v_mods
let long_ident_of_name xs = List.map snd xs
let long_ident_of_class_type xs = List.map fst xs
let nodeinfo ident =
{ G.pos = Parse_info.token_location_of_info (Ast.info_of_ident ident);
props = [];
typ = None;
}
let looks_like_class_name s =
s =~ "[A-Z]"
let looks_like_enum_constant s =
s =~ "^[A-Z_0-9]+$"
let rec classname_and_info_of_typ t =
match t with
| TBasic x -> x
| TArray t -> classname_and_info_of_typ t
| TClass xs ->
let x = Common2.list_last xs in
let (ident, _args) = x in
ident
let create_intermediate_packages_if_not_present g root xs =
let dirs = Common2.inits xs +> List.map str_of_qualified_ident in
let dirs =
match dirs with
| ""::xs -> xs
| _ -> raise Impossible
in
let rec aux current xs =
match xs with
| [] -> ()
| x::xs ->
let entity = x, E.Package in
if G.has_node entity g
then aux entity xs
else begin
g +> G.add_node entity;
g +> G.add_edge (current, entity) G.Has;
aux entity xs
end
in
aux root dirs
let add_use_edge env (name, kind) =
let src = env.current in
let dst = (name, kind) in
(match () with
| _ when not (G.has_node src env.g) ->
pr2 (spf "LOOKUP SRC FAIL %s --> %s, src does not exist???"
(G.string_of_node src) (G.string_of_node dst));
| _ when G.has_node dst env.g ->
G.add_edge (src, dst) G.Use env.g
| _ ->
(match kind with
| _ ->
let kind_original = kind in
let dst = (name, kind_original) in
let parent_target = G.not_found in
(match kind_original with
| E.Package ->
let fake_package =
(Common.split "\\." name) +> List.map (fun s -> s^"2") in
let dst = (Common.join "." fake_package, kind_original) in
if not (G.has_node dst env.g)
then begin
create_intermediate_packages_if_not_present
env.g parent_target
(fake_package +> List.map (fun s -> s,()));
pr2 (spf "PB: lookup fail on %s (in %s)"
(G.string_of_node dst) (G.string_of_node src));
end;
env.g +> G.add_edge (src, dst) G.Use;
()
| _ ->
pr2 (spf "PB: lookup fail on %s (in %s)"
(G.string_of_node dst) (G.string_of_node src));
G.add_node dst env.g;
env.g +> G.add_edge (parent_target, dst) G.Has;
env.g +> G.add_edge (src, dst) G.Use;
)
)
)
let _hmemo = Hashtbl.create 101
let lookup_fully_qualified_memoized env x =
Common.profile_code "Graph_java.lookup_qualified" (fun () ->
if env.phase = Uses || env.phase = Inheritance
then
Common.memoized _hmemo x (fun () ->
Package_java.lookup_fully_qualified2 env.g x
)
else Package_java.lookup_fully_qualified2 env.g x
)
let with_full_qualifier env xs =
env.imported_namespace +> List.map (fun (qualified_ident) ->
let rev = List.rev qualified_ident in
let prefix =
match rev with
| ("*")::rest ->
List.rev rest
| _ -> List.rev (List.tl rev)
in
prefix @ (xs +> List.map Ast.unwrap)
)
let (lookup2: env -> Ast.qualified_ident -> Graph_code.node option) =
fun env xs ->
let candidates = with_full_qualifier env xs in
candidates +> Common.find_some_opt (fun full_qualifier ->
lookup_fully_qualified_memoized env full_qualifier
)
let lookup a b =
Common.profile_code "Graph_java.lookup" (fun () -> lookup2 a b)
let rec import_of_inherited_classes env n =
let parents_inheritance = G.succ n G.Use env.g in
parents_inheritance +> Common.map_filter (fun (str, kind) ->
match kind with
| E.Class ->
let xs = (Common.split "\\." str) @ ["*"] in
let res = import_of_inherited_classes env (str, kind) in
Some (xs::res)
| _ -> None
) +> List.flatten
let rec extract_defs_uses ~phase ~g ~ast ~readable ~lookup_fails =
ignore(lookup_fails);
let env = {
g; phase;
current =
(match ast.package with
| Some long_ident -> (str_of_qualified_ident long_ident, E.Package)
| None -> (readable, E.File)
);
current_qualifier =
(match ast.package with
| None -> []
| Some long_ident -> long_ident
);
params_or_locals = [];
type_parameters = [];
imported_namespace =
(match ast.package with
| Some long_ident -> [List.map Ast.unwrap long_ident @ ["*"]]
| None -> []
) @
(ast.imports +> List.map (fun (_is_static, qualified_ident) ->
List.map Ast.unwrap qualified_ident
) @ [
["java";"lang";"*"];
["*"]
]
);
imported_qualified = ast.imports +> Common.map_filter (fun (is_static, xs)->
match List.rev xs with
| [] -> raise Impossible
| ["*", _] -> None
| (s, _)::_rest -> Some (s, (is_static, xs))
);
}
in
if phase = Defs then begin
match ast.package with
| None ->
let dir = Common2.dirname readable in
G.create_intermediate_directories_if_not_present g dir;
g +> G.add_node (readable, E.File);
g +> G.add_edge ((dir, E.Dir), (readable, E.File)) G.Has;
| Some long_ident ->
create_intermediate_packages_if_not_present g G.root long_ident;
end;
if phase = Inheritance then begin
ast.imports +> List.iter (fun (is_static, qualified_ident) ->
let qualified_ident_bis =
match List.rev qualified_ident with
| ("*",_)::rest -> List.rev rest
| _x::xs when is_static -> List.rev xs
| _ -> qualified_ident
in
let entity = List.map Ast.unwrap qualified_ident_bis in
(match lookup_fully_qualified_memoized env entity with
| Some _ ->
()
| None ->
pr2_once (spf "PB: wrong import: %s"
(str_of_qualified_ident qualified_ident_bis))
)
);
end;
decls env ast.decls
and decl env = function
| Class def, _ -> class_decl env def
| Method def, _ -> method_decl env def
| Field def, _ -> field_decl env def
| Enum def, _ -> enum_decl env def
| Init (_is_static, st), n ->
let name = spf "__init__%d" n in
let full_ident = env.current_qualifier @ [name, fakeInfo name] in
let full_str = str_of_qualified_ident full_ident in
let node = (full_str, E.TopStmts) in
if env.phase = Defs then begin
env.g +> G.add_node node;
env.g +> G.add_edge (env.current, node) G.Has;
end;
let env = { env with
current = node;
current_qualifier = full_ident;
}
in
stmt env st
and decls env xs = List.iter (decl env) (Common.index_list_1 xs)
and class_decl env def =
let full_ident = env.current_qualifier @ [def.cl_name] in
let full_str = str_of_qualified_ident full_ident in
let node = (full_str, E.Class) in
if env.phase = Defs then begin
env.g +> G.add_node node;
env.g +> G.add_nodeinfo node (nodeinfo def.cl_name);
env.g +> G.add_edge (env.current, node) G.Has;
end;
let env = { env with
current = node;
current_qualifier = full_ident;
params_or_locals = env.params_or_locals +> List.filter (fun (_x,b) -> b);
type_parameters = def.cl_tparams +> List.map (function
| TParam ((str,_tok), _constraints) -> str
);
}
in
let parents =
Common2.option_to_list def.cl_extends @
(def.cl_impls)
in
List.iter (typ env) parents;
let imports =
if env.phase = Defs then []
else
(List.map Ast.unwrap full_ident @ ["*"]) ::
import_of_inherited_classes env (full_str, E.Class)
in
decls {env with imported_namespace = imports @ env.imported_namespace }
def.cl_body
and method_decl env def =
let full_ident = env.current_qualifier @ [def.m_var.v_name] in
let full_str = str_of_qualified_ident full_ident in
let node = (full_str, E.Method) in
if env.phase = Defs then begin
if G.has_node (full_str, E.Method) env.g
then ()
else begin
env.g +> G.add_node node;
env.g +> G.add_nodeinfo node (nodeinfo def.m_var.v_name);
env.g +> G.add_edge (env.current, node) G.Has;
end
end;
let env = { env with
current = node;
current_qualifier = full_ident;
params_or_locals = (def.m_formals +> List.map p_or_l)
@
(env.params_or_locals +> List.filter (fun (_x,b) -> b));
type_parameters = [];
}
in
var env def.m_var;
List.iter (var env) def.m_formals;
stmt env def.m_body
and field_decl env def =
let full_ident = env.current_qualifier @ [def.f_var.v_name] in
let full_str = str_of_qualified_ident full_ident in
let kind =
if Ast.is_final_static def.f_var.v_mods
then E.Constant
else E.Field
in
let node = (full_str, kind) in
if env.phase = Defs then begin
env.g +> G.add_node node;
env.g +> G.add_nodeinfo node (nodeinfo def.f_var.v_name);
env.g +> G.add_edge (env.current, node) G.Has;
end;
let env = { env with
current = node;
current_qualifier = env.current_qualifier
}
in
field env def
and enum_decl env def =
let full_ident = env.current_qualifier @ [def.en_name] in
let full_str = str_of_qualified_ident full_ident in
let node = (full_str, E.Class) in
if env.phase = Defs then begin
env.g +> G.add_node node;
env.g +> G.add_nodeinfo node (nodeinfo def.en_name);
env.g +> G.add_edge (env.current, node) G.Has;
end;
let env = { env with
current = node;
current_qualifier = full_ident;
params_or_locals = [];
type_parameters = [];
}
in
let parents = (def.en_impls) in
List.iter (typ env) parents;
let (csts, xs) = def.en_body in
decls env xs;
csts +> List.iter (fun enum_constant ->
let ident =
match enum_constant with
| EnumSimple id | EnumConstructor (id, _) | EnumWithMethods (id, _) -> id
in
let full_ident = env.current_qualifier @ [ident] in
let full_str = str_of_qualified_ident full_ident in
let node = (full_str, E.Constant) in
if env.phase = Defs then begin
env.g +> G.add_node node;
env.g +> G.add_nodeinfo node (nodeinfo ident);
env.g +> G.add_edge (env.current, node) G.Has;
end;
let env = { env with
current = node;
current_qualifier = full_ident;
}
in
(match enum_constant with
| EnumSimple _ident -> ()
| EnumConstructor (_ident, args) ->
exprs env args
| EnumWithMethods (_ident, xs) ->
decls env (xs +> List.map (fun x -> Method x))
)
)
and stmt env = function
| Empty -> ()
| Block xs -> stmts env xs
| Expr e -> expr env e
| If (e, st1, st2) ->
expr env e;
stmt env st1;
stmt env st2;
| Switch (e, xs) ->
expr env e;
xs +> List.iter (fun (cs, sts) ->
cases env cs;
stmts env sts
)
| While (e, st) ->
expr env e;
stmt env st;
| Do (st, e) ->
expr env e;
stmt env st;
| For (x, st) ->
let env =
match x with
| Foreach (v, e) ->
var env v;
expr env e;
{ env with
params_or_locals = p_or_l v :: env.params_or_locals;
}
| ForClassic (init, es1, es2) ->
(match init with
| ForInitExprs es0 ->
exprs env (es0 @ es1 @ es2);
env
| ForInitVars xs ->
List.iter (field env) xs;
let env = { env with
params_or_locals =
(xs +> List.map (fun fld -> p_or_l fld.f_var)
) @ env.params_or_locals;
}
in
exprs env (es1 @ es2);
env
)
in
stmt env st;
| Label (_id, st) -> stmt env st
| Break _idopt | Continue _idopt -> ()
| Return eopt -> exprs env (Common2.option_to_list eopt)
| Sync (e, st) ->
expr env e;
stmt env st;
| Try (st, xs, stopt) ->
stmt env st;
catches env xs;
stmts env (Common2.option_to_list stopt);
| Throw e -> expr env e
| Assert (e, eopt) ->
exprs env (e::Common2.option_to_list eopt)
| LocalVar f -> field env f
| LocalClass def -> class_decl env def
and stmts env xs =
let rec aux env = function
| [] -> ()
| x::xs ->
stmt env x;
let env =
match x with
| LocalVar fld ->
{ env with
params_or_locals = p_or_l fld.f_var :: env.params_or_locals }
| _ -> env
in
aux env xs
in
aux env xs
and cases env xs = List.iter (case env) xs
and case env = function
| Case e -> expr env e
| Default -> ()
and catches env xs = List.iter (catch env) xs
and catch env (v, st) =
var env v;
let env = { env with params_or_locals = p_or_l v :: env.params_or_locals } in
stmt env st
and expr env = function
| Name n ->
if env.phase = Uses then begin
let str = str_of_name n in
(match str, n with
| _, (_,(s,_))::_rest when List.mem_assoc s env.params_or_locals -> ()
| "super", _ | "this", _ ->
()
| _ ->
(match lookup env (long_ident_of_name n) with
| Some n2 ->
add_use_edge env n2
| None ->
(match n with
| [] ->
pr2 "Name is empty??";
pr2_gen (env.current, n);
raise Impossible
| (_, (s,_))::_ when List.mem_assoc s env.imported_qualified ->
let (_is_static, full_ident) =
List.assoc s env.imported_qualified in
let str = str_of_qualified_ident full_ident in
add_use_edge env (str, E.Package)
| [_x] when looks_like_enum_constant str ->
pr2 ("PB: " ^ Common.dump n);
| [_x] when looks_like_class_name str ->
add_use_edge env (str, E.Package)
| [_x] ->
pr2 ("PB: " ^ Common.dump n);
| _x::_y::_xs ->
add_use_edge env (str, E.Package)
)
)
)
end
| NameOrClassType _ -> ()
| Literal _ -> ()
| ClassLiteral t -> typ env t
| NewClass (t, args, decls_opt) ->
typ env t;
exprs env args;
(match decls_opt with
| None -> ()
| Some xs ->
let classname, info = classname_and_info_of_typ t in
let charpos = PI.pos_of_info info in
let anon_class = spf "__anon__%s__%d" classname charpos in
let cdecl = {
cl_name = (anon_class, info);
cl_extends = Some t;
cl_impls = [];
cl_kind = ClassRegular;
cl_body = xs;
cl_tparams = [];
cl_mods = [];
}
in
class_decl env cdecl
)
| NewQualifiedClass (_e, id, args, decls_opt) ->
expr env (NewClass (TClass ([id, []]), args, decls_opt))
| NewArray (t, args, _i, ini_opt) ->
typ env t;
exprs env args;
init_opt env ini_opt
| Call (e, es) ->
expr env e;
exprs env es
| Dot (e, _idTODO) ->
expr env e;
| ArrayAccess (e1, e2) -> exprs env [e1;e2]
| Postfix (e, _) | Prefix (_, e) | Unary (_, e) -> expr env e
| Infix (e1, _op, e2) -> exprs env [e1;e2]
| Conditional (e1, e2, e3) -> exprs env [e1;e2;e3]
| AssignOp (e1, _op, e2) -> exprs env [e1;e2]
| Assign (e1, e2) -> exprs env [e1;e2]
| Cast (t, e) ->
typ env t;
expr env e
| InstanceOf (e, tref) ->
expr env e;
typ env (tref);
| Ellipses _ -> ()
and exprs env xs = List.iter (expr env) xs
and init env = function
| ExprInit e -> expr env e
| ArrayInit xs -> List.iter (init env) xs
and init_opt env opt =
match opt with
| None -> ()
| Some ini -> init env ini
and typ env = function
| TBasic _ -> ()
| TArray t -> typ env t
| TClass reft ->
let xs = long_ident_of_class_type reft in
let str = str_of_qualified_ident xs in
if env.phase = Uses || env.phase = Inheritance then begin
(match str, reft with
| _, (((s,_),_))::_rest when List.mem s env.type_parameters -> ()
| _ ->
(match lookup env xs with
| Some n2 ->
add_use_edge env n2
| None ->
(match xs with
| [] -> raise Impossible
| ((s,_))::_ when List.mem_assoc s env.imported_qualified ->
let (_is_static, full_ident) =
List.assoc s env.imported_qualified in
let str = str_of_qualified_ident full_ident in
add_use_edge env (str, E.Package)
| [_x] ->
if looks_like_class_name str
then add_use_edge env (str, E.Package)
else
pr2 ("PB: " ^ Common.dump reft);
| _x::_y::_xs ->
add_use_edge env (str, E.Package)
)
)
)
end
and var env v =
typ env v.v_type;
()
and field env f =
var env f.f_var;
init_opt env f.f_init;
()
let build ?(verbose=true) ?(only_defs=false) root files =
let g = G.create () in
G.create_initial_hierarchy g;
let lookup_fails = Common2.hash_with_default (fun () -> 0) in
if verbose then pr2 "\nstep1: extract defs";
files +> Console.progress ~show:verbose (fun k ->
List.iter (fun file ->
k();
let readable = Common.readable ~root file in
let ast = parse ~show_parse_error:true file in
extract_defs_uses ~phase:Defs ~g ~ast ~readable ~lookup_fails;
));
if not only_defs then begin
if verbose then pr2 "\nstep2: extract inheritance information";
files +> Console.progress ~show:verbose (fun k ->
List.iter (fun file ->
k();
let readable = Common.readable ~root file in
let ast = parse ~show_parse_error:false file in
extract_defs_uses ~phase:Inheritance ~g ~ast ~readable ~lookup_fails;
));
if verbose then pr2 "\nstep3: extract uses";
files +> Console.progress ~show:verbose (fun k ->
List.iter (fun file ->
k();
let readable = Common.readable ~root file in
let ast = parse ~show_parse_error:false file in
extract_defs_uses ~phase:Uses ~g ~ast ~readable ~lookup_fails;
));
end;
g