-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexamples.inc
995 lines (832 loc) · 29.6 KB
/
examples.inc
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
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
<?php
global $examples, $example_options;
if (!function_exists('t')) {
function t($str) { return $str; }
}
# ------------------------------------------------------------------------------------ #
$example_names['scheme-use'] = t('How many projects use the Scheme programming language?');
$example_jobs['scheme-use'] = 547;
$examples['scheme-use'] = <<<BOA
# Counting projects using Scheme
p: Project = input;
counts: output sum of int;
foreach (i: int; match(`^scheme$`, lowercase(p.programming_languages[i])))
counts << 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['top-langs'] = t('What are the ten most used programming languages?');
$example_jobs['top-langs'] = 545;
$examples['top-langs'] = <<<BOA
# Counting the 10 most used programming languages
p: Project = input;
counts: output top(10) of string weight int;
foreach (i: int; def(p.programming_languages[i]))
counts << p.programming_languages[i] weight 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['mult-langs'] = t('How many projects use more than one programming language?');
$example_jobs['mult-langs'] = 546;
$examples['mult-langs'] = <<<BOA
# Counting the number of projects written in more than one languages
p: Project = input;
counts: output sum of int;
if (len(p.programming_languages) > 1)
counts << 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['java-added'] = t('In which year was Java added to SVN projects the most?');
$example_jobs['java-added'] = 0;
$examples['java-added'] = <<<BOA
# In what year was Java added the most?
p: Project = input;
counts: output sum[int] of int;
HasJavaFile := function(rev: Revision): bool {
exists (i: int; match(`\.java$`, rev.files[i].name))
return true;
return false;
};
foreach (i: int; def(p.code_repositories[i]))
exists (j: int; HasJavaFile(p.code_repositories[i].revisions[j]))
counts[yearof(p.code_repositories[i].revisions[j].commit_date)] << 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['proj-created'] = t('How many projects are created each year?');
$example_jobs['proj-created'] = 548;
$examples['proj-created'] = <<<BOA
# How many projects created each year?
p: Project = input;
counts: output sum[int] of int;
counts[yearof(p.created_date)] << 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['proj-topics'] = t('How many projects self-classify into each topic provided by SourceForge?');
$example_jobs['proj-topics'] = 549;
$examples['proj-topics'] = <<<BOA
# how many projects self-classify into each topic?
p: Project = input;
values: output sum[string] of int;
foreach (i: int; def(p.topics[i]))
values[lowercase(p.topics[i])] << 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['active-proj'] = t('How many Java projects using SVN were active in 2011?');
$example_jobs['active-proj'] = 551;
$examples['active-proj'] = <<<BOA
# Counting the number of active Java projects with SVN
p: Project = input;
counts: output sum of int;
visit(p, visitor {
before n: Project -> ifall (i: int; !match(`^java$`, lowercase(n.programming_languages[i]))) stop;
before node: CodeRepository ->
if (node.kind == RepositoryKind.SVN)
exists (j: int; yearof(node.revisions[j].commit_date) == 2011)
counts << 1;
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['svn-added'] = t('In which year was SVN added to Java projects the most?');
$example_jobs['svn-added'] = 550;
$examples['svn-added'] = <<<BOA
# which year were SVN projects added most
p: Project = input;
counts: output top(1) of int weight int;
visit(p, visitor {
before n: Project -> ifall (i: int; !match(`^java$`, lowercase(n.programming_languages[i]))) stop;
before node: CodeRepository ->
if (node.kind == RepositoryKind.SVN && len(node.revisions) > 0)
counts << yearof(node.revisions[0].commit_date) weight 1;
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['num-revisions'] = t('How many revisions are there in all Java projects using SVN?');
$example_jobs['num-revisions'] = 552;
$examples['num-revisions'] = <<<BOA
# Counting the number of revisions for all Java projects with SVN
p: Project = input;
counts: output sum of int;
visit(p, visitor {
before n: Project -> ifall (i: int; !match(`^java$`, lowercase(n.programming_languages[i]))) stop;
before node: CodeRepository -> if (node.kind == RepositoryKind.SVN) counts << len(node.revisions);
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['fix-bugs'] = t('How many revisions fix bugs in all Java projects using SVN?');
$example_jobs['fix-bugs'] = 553;
$examples['fix-bugs'] = <<<BOA
# Counting the number of fixing revisons for all Java projects with SVN
p: Project = input;
counts: output sum of int;
visit(p, visitor {
before n: Project -> ifall (i: int; !match(`^java$`, lowercase(n.programming_languages[i]))) stop;
before node: CodeRepository -> if (node.kind != RepositoryKind.SVN) stop;
before node: Revision -> if (isfixingrevision(node.log)) counts << 1;
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['committers-proj'] = t('How many committers are there for each project?');
$example_jobs['committers-proj'] = 695;
$examples['committers-proj'] = <<<BOA
# How many committers are in each project?
p: Project = input;
counts: output sum[string] of int;
committers: map[string] of bool;
visit(p, visitor {
before node: Revision ->
if (!haskey(committers, node.committer.username)) {
committers[node.committer.username] = true;
counts[p.id] << 1;
}
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['proj-committers'] = t('How many projects does each committer work on?');
$example_jobs['proj-committers'] = 0;
$examples['proj-committers'] = <<<BOA
# How many projects does each committer work on?
p: Project = input;
counts: output sum[string] of int;
committers: map[string] of bool;
foreach (i: int; def(p.code_repositories[i]))
foreach (j: int; def(p.code_repositories[i].revisions[j]))
committers[p.code_repositories[i].revisions[j].committer.username] = true;
keys := keys(committers);
foreach (i: int; def(keys[i]))
counts[keys[i]] << 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['churn-rate'] = t('What are the churn rates for all projects?');
$example_jobs['churn-rate'] = 555;
$examples['churn-rate'] = <<<BOA
# what are the churn rates for all projects
p: Project = input;
counts: output mean[string] of int;
visit(p, visitor {
before node: Revision -> counts[p.id] << len(node.files);
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['commits-years'] = t('How did the number of commits for Java projects using SVN change over years?');
$example_jobs['commits-years'] = 556;
$examples['commits-years'] = <<<BOA
# how did # of commits for Java/SVN change over time?
p: Project = input;
counts: output sum[int] of int;
visit(p, visitor {
before n: Project -> ifall (i: int; !match(`^java$`, lowercase(n.programming_languages[i]))) stop;
before n: CodeRepository -> if (n.kind != RepositoryKind.SVN) stop;
before n: Revision -> counts[yearof(n.commit_date)] << 1;
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['word-dist'] = t('For all SVN revisions in Java projects, what is the distribution of commit log length?');
$example_jobs['word-dist'] = 0;
$examples['word-dist'] = <<<BOA
# distribution of commit log words over revisions
p: Project = input;
counts: output sum[int] of int;
foreach (i: int; def(p.code_repositories[i]))
foreach (j: int; def(p.code_repositories[i].revisions[j]))
counts[len(splitall(p.code_repositories[i].revisions[j].log, `\s`))] << 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['top-license'] = t('What are the five most used licenses?');
$example_jobs['top-license'] = 557;
$examples['top-license'] = <<<BOA
# Counting the 5 most frequently used licenses
p: Project = input;
counts: output top(5) of string weight int;
foreach (i: int; def(p.licenses[i]))
counts << p.licenses[i] weight 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['mult-license'] = t('How many projects use more than one license?');
$example_jobs['mult-license'] = 558;
$examples['mult-license'] = <<<BOA
# Counting the number of projects using more than 1 license
p: Project = input;
counts: output sum of int;
if (len(p.licenses) > 1)
counts << 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['top-os'] = t('What are the five most supported operating systems?');
$example_jobs['top-os'] = 559;
$examples['top-os'] = <<<BOA
# what are the 5 most supported OSes?
p: Project = input;
counts: output top(5) of string weight int;
foreach (i: int; def(p.operating_systems[i]))
counts << p.operating_systems[i] weight 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['mult-os'] = t('Which projects support multiple operating systems?');
$example_jobs['mult-os'] = 560;
$examples['mult-os'] = <<<BOA
# which projects support multiple OSes?
p: Project = input;
counts: output collection[string] of string;
if (len(p.operating_systems) > 1)
counts[p.id] << p.project_url;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['top-db'] = t('What are the five most popular databases?');
$example_jobs['top-db'] = 561;
$examples['top-db'] = <<<BOA
# what are the 5 most popular databases?
p: Project = input;
counts: output top(5) of string weight int;
foreach (i: int; def(p.databases[i]))
counts << p.databases[i] weight 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['mult-db'] = t('What are the projects that support multiple databases?');
$example_jobs['mult-db'] = 562;
$examples['mult-db'] = <<<BOA
# which projects support multiple databases?
p: Project = input;
counts: output collection[string] of string;
if (len(p.databases) > 1)
counts[p.id] << p.name;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['db-pl'] = t('How often is each database used in each programming language?');
$example_jobs['db-pl'] = 563;
$examples['db-pl'] = <<<BOA
# pairs of programming language/database
p: Project = input;
counts: output sum[string][string] of int;
foreach (i: int; def(p.programming_languages[i]))
foreach (j: int; def(p.databases[j]))
counts[p.programming_languages[i]][p.databases[j]] << 1;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['ast-count'] = t('What are the five largest projects, in terms of AST nodes?');
$example_jobs['ast-count'] = 564;
$examples['ast-count'] = <<<BOA
# What are the 5 largest projects, in terms of AST nodes?
# Output is in Millions of AST nodes.
p: Project = input;
top5: output top(5) of string weight int;
astCount := 0;
visit(p, visitor {
# only look at the latest snapshot
before n: CodeRepository -> {
snapshot := getsnapshot(n);
foreach (i: int; def(snapshot[i]))
visit(snapshot[i]);
stop;
}
# by default, count all visited nodes
before _ -> astCount++;
# these nodes are not part of the AST, so do nothing when visiting
before Project, ChangedFile -> ;
});
top5 << p.project_url weight astCount / 1000000;
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['java-count'] = t('How many valid Java files in latest snapshot?');
$example_jobs['java-count'] = 565;
$examples['java-count'] = <<<BOA
# count how many valid Java files are in the latest snapshot
p: Project = input;
counts: output sum of int;
visit(p, visitor {
before node: CodeRepository ->
counts << len(getsnapshot(node, "SOURCE_JAVA_JLS"));
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['null-check'] = t('How many fixing revisions added null checks?');
$example_jobs['null-check'] = 63199;
$examples['null-check'] = <<<BOA
# How many fixing revisions added null checks?
AddedNullCheck: output sum of int;
p: Project = input;
isfixing := false;
count := 0;
# map of file names to the last revision of that file
files: map[string] of ChangedFile;
visit(p, visitor {
before node: Revision -> isfixing = isfixingrevision(node.log);
before node: ChangedFile -> {
# if this is a fixing revision and
# there was a previous version of the file
if (isfixing && haskey(files, node.name)) {
# count how many null checks were previously in the file
count = 0;
visit(getast(files[node.name]));
last := count;
# count how many null checks are currently in the file
count = 0;
visit(getast(node));
# if there are more null checks, output
if (count > last)
AddedNullCheck << 1;
}
if (node.change == ChangeKind.DELETED)
remove(files, node.name);
else
files[node.name] = node;
stop;
}
before node: Statement ->
# increase the counter if there is an IF statement
# where the boolean condition is of the form:
# null == expr OR expr == null OR null != expr OR expr != null
if (node.kind == StatementKind.IF)
visit(node.expression, visitor {
before node: Expression ->
if (node.kind == ExpressionKind.EQ || node.kind == ExpressionKind.NEQ)
exists (i: int; isliteral(node.expressions[i], "null"))
count++;
});
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['dead-code'] = t('What files have unreachable statements?');
$example_jobs['dead-code'] = 3148;
$examples['dead-code'] = <<<BOA
# looking for dead code
DEAD: output top(1000000) of string weight int;
cur_file: string;
cur_method: string;
s: stack of bool;
alive := true;
visit(input, visitor {
before _ -> if (!alive) stop;
before node: CodeRepository -> {
snapshot := getsnapshot(node);
foreach (i: int; def(snapshot[i]))
visit(snapshot[i]);
stop;
}
before node: ChangedFile -> cur_file = string(node);
before node: Method -> {
cur_method = node.name;
push(s, alive);
alive = true;
}
after node: Method -> alive = pop(s);
before node: Statement -> {
if (!alive) {
DEAD << format("%s - %s", cur_file, cur_method) weight 1;
stop;
}
switch (node.kind) {
case StatementKind.BREAK: if (def(node.expression)) break;
case StatementKind.RETURN, StatementKind.THROW, StatementKind.CONTINUE:
alive = false;
break;
case StatementKind.IF, StatementKind.LABEL: stop;
case StatementKind.FOR, StatementKind.DO, StatementKind.WHILE,
StatementKind.SWITCH, StatementKind.TRY:
foreach (i: int; def(node.statements[i])) {
push(s, alive);
visit(node.statements[i]);
alive = pop(s);
}
stop;
default:
break;
}
}
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['gen-fields'] = t('How many generic fields are declared in each project?');
$example_jobs['gen-fields'] = 600;
$examples['gen-fields'] = <<<BOA
# How many generic fields are declared in each project?
p: Project = input;
GenericFields: output sum[string] of int;
visit(p, visitor {
before node: Type ->
if (strfind("<", node.name) > -1)
GenericFields[p.project_url] << 1;
before node: Declaration -> {
# check all fields
foreach (i: int; node.fields[i])
visit(node.fields[i]);
# also look at nested declarations
foreach (i: int; node.methods[i])
visit(node.methods[i]);
foreach (i: int; node.nested_declarations[i])
visit(node.nested_declarations[i]);
stop;
}
before node: Method -> {
foreach (i: int; node.statements[i])
visit(node.statements[i]);
stop;
}
before node: Statement -> {
foreach (i: int; node.statements[i])
visit(node.statements[i]);
if (def(node.type_declaration))
visit(node.type_declaration);
stop;
}
# fields cant be below expressions or modifiers
before Expression, Modifier -> stop;
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['varargs'] = t('How is varargs used over time?');
$example_jobs['varargs'] = 601;
$examples['varargs'] = <<<BOA
# How is varargs used over time?
p: Project = input;
Varargs: output collection[string][string][time] of int;
file_name: string;
commit_date: time;
visit(p, visitor {
before node: ChangedFile -> file_name = node.name;
before node: Revision -> commit_date = node.commit_date;
before node: Method ->
if (len(node.arguments) > 0
&& strfind("...", node.arguments[len(node.arguments) - 1].variable_type.name) > -1)
Varargs[p.project_url][file_name][commit_date] << 1;
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['transient'] = t('How is transient keyword used in Java?');
$example_jobs['transient'] = 602;
$examples['transient'] = <<<BOA
# How is transient keyword used in Java?
p: Project = input;
TransientTotal: output sum of int;
TransientMax: output maximum(1) of string weight int;
TransientMin: output minimum(1) of string weight int;
TransientMean: output mean of int;
count := 0;
s: stack of int;
visit(p, visitor {
before node: CodeRepository -> {
# only look at the latest snapshot
# and only include Java files
snapshot := getsnapshot(node, "SOURCE_JAVA_JLS");
foreach (i: int; def(snapshot[i]))
visit(snapshot[i]);
stop;
}
before node: Declaration -> {
# only interested in fields, which only occur inside (anonymous) classes
if (node.kind == TypeKind.CLASS || node.kind == TypeKind.ANONYMOUS) {
# store old value
push(s, count);
count = 0;
# find uses and increment counter
foreach (i: int; def(node.fields[i]))
foreach (j: int; node.fields[i].modifiers[j].kind == ModifierKind.OTHER
&& node.fields[i].modifiers[j].other == "transient")
count++;
} else
stop;
}
after node: Declaration -> {
# output result
TransientTotal << count;
TransientMax << p.id weight count;
TransientMin << p.id weight count;
TransientMean << count;
# restore previous value
count = pop(s);
}
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['npm'] = t('What are the number of public methods (NPM), per-project and per-type?');
$example_jobs['npm'] = 1598;
$examples['npm'] = <<<BOA
# Computes Number of Public Methods (NPM) for each project, per-type
# Output is: NPM[ProjectID][TypeName] = NPM value
p: Project = input;
NPM: output sum[string][string] of int;
visit(p, visitor {
# only look at the latest snapshot
before n: CodeRepository -> {
snapshot := getsnapshot(n);
foreach (i: int; def(snapshot[i]))
visit(snapshot[i]);
stop;
}
before node: Declaration ->
if (node.kind == TypeKind.CLASS)
foreach (i: int; has_modifier_public(node.methods[i]))
NPM[p.id][node.name] << 1;
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['noa'] = t('What are the number of attributes (NOA), per-project and per-type?');
$example_jobs['noa'] = 1599;
$examples['noa'] = <<<BOA
# Computes Number of Attributes (NOA) for each project, per-type
# Output is: NOA[ProjectID][TypeName] = NOA value
p: Project = input;
NOA: output sum[string][string] of int;
visit(p, visitor {
# only look at the latest snapshot
before n: CodeRepository -> {
snapshot := getsnapshot(n);
foreach (i: int; def(snapshot[i]))
visit(snapshot[i]);
stop;
}
before node: Declaration ->
if (node.kind == TypeKind.CLASS)
NOA[p.id][node.name] << len(node.fields);
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['dominator'] = t('Dominator Analysis');
$example_jobs['dominator'] = 86426;
$examples['dominator'] = <<<BOA
op: output collection[string][string][string] of string;
type T = set of string;
allNodeIds: T;
dominators := traversal(node: CFGNode): T {
doms: T;
if (def(getvalue(node))) {
doms = getvalue(node);
} else {
if (node.id == 0)
add(doms, string(node.id));
else
doms = clone(allNodeIds);
}
foreach(i: int; def(getvalue(node.predecessors[i])))
doms = intersect(doms, getvalue(node.predecessors[i]));
add(doms, string(node.id));
return doms;
};
fp := fixp(curr, prev: T): bool {
return curr == prev;
};
doms: map[string] of T;
collect := traversal(node: CFGNode) {
if (def(getvalue(node, dominators)))
doms[string(node.id)] = getvalue(node, dominators);
};
visit(input, visitor {
before node: CodeRepository -> {
snapshot := getsnapshot(node);
foreach (i: int; def(snapshot[i]))
visit(snapshot[i]);
stop;
}
before method: Method -> {
cfg := getcfg(method);
if (def(cfg))
for (i := 0; i < len(cfg.nodes); i++)
add(allNodeIds, string(i));
traverse(cfg, TraversalDirection.FORWARD, TraversalKind.REVERSEPOSTORDER, dominators, fp);
traverse(cfg, TraversalDirection.FORWARD, TraversalKind.ITERATIVE, collect);
op[input.project_url][current(ChangedFile).name][method.name] << string(doms);
clear(dominators);
clear(collect);
clear(doms);
clear(allNodeIds);
}
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['reaching'] = t('Reaching Definitions');
$example_jobs['reaching'] = 86424;
$examples['reaching'] = <<<BOA
m: output collection[string][string][int] of string;
# program analysis output
type T = set of string;
type T_gen_kill = { gen: string, kill: string };
type T_inout = { in: T, out: T };
m_name: string;
# traversal that accumulates generated values
cfg_def := traversal(node: CFGNode) : T_gen_kill {
cur_val: T_gen_kill = { "", "" };
if (node.defVariables != "") {
cur_val.gen = node.defVariables + "@" + string(node.id);
cur_val.kill = node.defVariables;
}
return cur_val;
};
# cfg reaching definition analysis
cfg_reach_def := traversal(n: CFGNode): T_inout {
cur_val: T_inout;
if (def(getvalue(n))) {
cur_val = getvalue(n);
} else {
in_set: T;
out_set: T;
cur_val = { in_set, out_set };
}
preds := n.predecessors;
foreach (i: int; def(preds[i])) {
pred := getvalue(preds[i]);
if (def(pred))
cur_val.in = union(cur_val.in, pred.out);
}
cur_val.out = clone(cur_val.in);
genkill := getvalue(n, cfg_def);
if (genkill.kill != "") {
tmp_out := values(cur_val.out);
foreach (i: int; def(tmp_out[i])) {
tmp1 := clone(tmp_out[i]);
str_array := splitall(tmp1, "@");
if (str_array[0] == genkill.kill)
remove(cur_val.out, tmp1);
}
add(cur_val.out, genkill.gen);
}
return cur_val;
};
result := traversal(node: CFGNode) {
if (def(getvalue(node, cfg_reach_def)))
m[input.project_url][m_name][node.id] << string(getvalue(node, cfg_reach_def).out);
};
# user-defined fix point function that is used for analysis termination.
fixp1 := fixp(curr, prev: T_inout) : bool {
if (len(difference(curr.out, prev.out)) == 0)
return true;
return false;
};
visit(input, visitor {
before node: CodeRepository -> {
snapshot := getsnapshot(node, "SOURCE_JAVA_JLS");
foreach (i: int; def(snapshot[i]))
visit(snapshot[i]);
stop;
}
before node: Method -> {
cfg := getcfg(node);
m_name = current(Declaration).name + "::" + node.name;
traverse(cfg, TraversalDirection.FORWARD, TraversalKind.HYBRID, cfg_def);
traverse(cfg, TraversalDirection.FORWARD, TraversalKind.HYBRID, cfg_reach_def, fixp1);
traverse(cfg, TraversalDirection.FORWARD, TraversalKind.HYBRID, result);
clear(cfg_def);
clear(cfg_reach_def);
}
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['livevars'] = t('Live Variables');
$example_jobs['livevars'] = 86423;
$examples['livevars'] = <<<BOA
m: output collection[string][string][int] of string;
# program analysis output
type T = set of string;
type T_gen_kill = { gen: T, kill: string };
type T_inout = { in: T, out: T };
m_name: string;
# traversal that gets all variable uses in a method
init := traversal(node: CFGNode) : T_gen_kill {
cur_value: T_gen_kill;
cur_value = { node.useVariables, node.defVariables };
return cur_value;
};
# cfg live variable analysis
live := traversal(node: CFGNode) : T_inout {
cur_val: T_inout;
if (def(getvalue(node))) {
cur_val = getvalue(node);
} else {
in_set: T;
out_set: T;
cur_val = { in_set, out_set };
}
succs := node.successors;
foreach(i:int; def(succs[i])) {
succ := getvalue(succs[i]);
if (def(succ)) {
cur_val.out = union(cur_val.out,succ.in);
}
}
gen_kill := getvalue(node, init);
if (def(gen_kill)) {
remove(cur_val.out, gen_kill.kill);
cur_val.in = union(gen_kill.gen, cur_val.out);
}
return cur_val;
};
result := traversal(node: CFGNode) {
if (def(getvalue(node, live))) {
m[input.project_url][m_name][node.id] << string(getvalue(node, live).in);
}
};
# user-defined fix point function that is used for analysis termination.
fixp1 := fixp(curr, prev: T_inout) : bool {
if (len(difference(curr.in, prev.in)) == 0)
return true;
return false;
};
visit(input, visitor {
before node: CodeRepository -> {
snapshot := getsnapshot(node, "SOURCE_JAVA_JLS");
foreach (i: int; def(snapshot[i]))
visit(snapshot[i]);
stop;
}
before node: Method -> {
cfg := getcfg(node);
m_name = current(Declaration).name + "::" + node.name;
traverse(cfg, TraversalDirection.BACKWARD, TraversalKind.HYBRID, init);
traverse(cfg, TraversalDirection.BACKWARD, TraversalKind.HYBRID, live, fixp1);
traverse(cfg, TraversalDirection.BACKWARD, TraversalKind.HYBRID, result);
clear(init);
clear(live);
}
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_names['java-build'] = t('How often are popular Java build systems used?');
$example_jobs['java-build'] = 63197;
$examples['java-build'] = <<<BOA
# How often are popular Java build systems used?
TOTAL: output sum of int;
ANT: output sum of int;
GRADLE: output sum of int;
MAVEN: output sum of int;
MAKE: output sum of int;
NONE: output sum of int;
hasAnt := false;
hasGradle := false;
hasMvn := false;
hasMake := false;
exists (i: int; lowercase(input.programming_languages[i]) == "java")
visit(input, visitor {
before Project -> TOTAL << 1;
after Project -> {
if (hasAnt) ANT << 1;
if (hasGradle) GRADLE << 1;
if (hasMvn) MAVEN << 1;
if (hasMake) MAKE << 1;
if (!(hasAnt || hasGradle || hasMvn || hasMake)) NONE << 1;
}
before node: CodeRepository -> {
snapshot := getsnapshot(node);
for (j := 0; j < len(snapshot); j++) {
if (match(`/build.xml$`, snapshot[j].name))
hasAnt = true;
else if (match(`/build.gradle$`, snapshot[j].name))
hasGradle = true;
else if (match(`/pom.xml$`, snapshot[j].name))
hasMvn = true;
else if (match(`/makefile$`, lowercase(snapshot[j].name)))
hasMake = true;
}
stop;
}
});
BOA;
# ------------------------------------------------------------------------------------ #
$example_options = array(
0 => t('-- Select Example --'),
'Programming Languages' => array(
'top-langs' => $example_names['top-langs'],
'mult-langs' => $example_names['mult-langs'],
'scheme-use' => $example_names['scheme-use'],
//'java-added' => $example_names['java-added'],
),
'Project Management' => array(
'proj-created' => $example_names['proj-created'],
'proj-topics' => $example_names['proj-topics'],
'active-proj' => $example_names['active-proj'],
'svn-added' => $example_names['svn-added'],
'num-revisions' => $example_names['num-revisions'],
'fix-bugs' => $example_names['fix-bugs'],
'committers-proj' => $example_names['committers-proj'],
//'proj-committers' => $example_names['proj-committers'],
'churn-rate' => $example_names['churn-rate'],
'commits-years' => $example_names['commits-years'],
//'word-dist' => $example_names['word-dist'],
'java-build' => $example_names['java-build'],
),
'Legal' => array(
'top-license' => $example_names['top-license'],
'mult-license' => $example_names['mult-license'],
),
'Platform/Environment' => array(
'top-os' => $example_names['top-os'],
'mult-os' => $example_names['mult-os'],
'top-db' => $example_names['top-db'],
'mult-db' => $example_names['mult-db'],
'db-pl' => $example_names['db-pl'],
),
'Source Code' => array(
'ast-count' => $example_names['ast-count'],
'java-count' => $example_names['java-count'],
'null-check' => $example_names['null-check'],
'dead-code' => $example_names['dead-code'],
'gen-fields' => $example_names['gen-fields'],
'varargs' => $example_names['varargs'],
'transient' => $example_names['transient'],
),
'Software Engineering Metrics' => array(
'noa' => $example_names['noa'],
'npm' => $example_names['npm'],
),
'Program Analysis' => array(
'dominator' => $example_names['dominator'],
'livevars' => $example_names['livevars'],
'reaching' => $example_names['reaching'],
),
);
?>