-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathutil-data-misc.R
More file actions
997 lines (907 loc) · 49.7 KB
/
util-data-misc.R
File metadata and controls
997 lines (907 loc) · 49.7 KB
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
996
997
## This file is part of coronet, which is free software: you
## can redistribute it and/or modify it under the terms of the GNU General
## Public License as published by the Free Software Foundation, version 2.
##
## This program is distributed in the hope that it will be useful,
## but WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
## GNU General Public License for more details.
##
## You should have received a copy of the GNU General Public License along
## with this program; if not, write to the Free Software Foundation, Inc.,
## 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
## Copyright 2017 by Ferdinand Frank <frankfer@fim.uni-passau.de>
## Copyright 2017 by Sofie Kemper <kemperso@fim.uni-passau.de>
## Copyright 2017-2020 by Claus Hunsen <hunsen@fim.uni-passau.de>
## Copyright 2017 by Felix Prasse <prassefe@fim.uni-passau.de>
## Copyright 2018 by Klara Schlüter <schluete@fim.uni-passau.de>
## Copyright 2019 by Jakob Kronawitter <kronawij@fim.uni-passau.de>
## Copyright 2021 by Johannes Hostert <s8johost@stud.uni-saarland.de>
## Copyright 2021 by Christian Hechtl <hechtl@cs.uni-saarland.de>
## Copyright 2022 by Jonathan Baumann <joba00002@stud.uni-saarland.de>
## Copyright 2024 by Thomas Bock <bockthom@cs.uni-saarland.de>
## Copyright 2025 by Leo Sendelbach <s8lesend@stud.uni-saarland.de>
## All Rights Reserved.
## / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /
## Libraries ---------------------------------------------------------------
requireNamespace("sqldf") # for SQL-selections on data.frames
requireNamespace("logging") # for logging
requireNamespace("tm") # for NLP functionalities
requireNamespace("SnowballC") # for text stemming used by NLP package "tm"
requireNamespace("textstem") # for lemmatization
requireNamespace("parallel") # for parallel computation
#' Helper function to mask all issues in the issue data frame.
#'
#' \code{ProjectData$get.issues.unfiltered()} returns a dataframe that mixes issue and PR data.
#' This helper function creates a vector of length \code{nrow(issue.data)} which has
#' entry \code{TRUE} iff the corresponding row in \code{issue.data} is an issue.
#'
#' @param issue.data the issue data, returned from calling \code{get.issues.unfiltered()}
#' or \code{get.issues()} on a project data object
#'
#' @return a vector containing \code{TRUE} or \code{FALSE}
#'
#' @seealso ProjectData$get.issues()
#' @seealso ProjectData$get.issues.unfiltered()
mask.issues = function(issue.data) {
return(sapply(issue.data[["issue.type"]], function(tags) {return("issue" %in% tags)}))
}
#' Helper function to mask all pull requests in the issue data frame.
#'
#' \code{ProjectData$get.issues.unfiltered()} returns a dataframe that mixes issue and PR data.
#' This helper function creates a vector of length \code{nrow(issue.data)} which has
#' entry \code{TRUE} iff the corresponding row in \code{issue.data} is a pull request.
#'
#' @param issue.data the pull request data, returned from calling \code{get.issues.unfiltered()}
#' or \code{get.issues()} on a project data object
#'
#' @return a vector containing \code{TRUE} or \code{FALSE}
#'
#' @seealso ProjectData$get.issues()
#' @seealso ProjectData$get.issues.unfiltered()
mask.pull.requests = function(issue.data) {
return(sapply(issue.data[["issue.type"]], function(tags) {return("pull request" %in% tags)}))
}
#' Get and preprocess issue data, removing unnecessary columns and rows we are not interested in.
#'
#' Retained columns are given in \code{retained.cols}, which defaults to
#' \code{author.name}, \code{issue.id} and \code{event.type}.
#'
#' Retained rows depend on the parameter \code{type}. If it is \code{"all"}, then all rows are retained.
#' Otherwise, only the rows containing information about either issues or pull requests are retained.
#'
#' Note that we preprocess the unfiltered issue data, since common filtering options typically
#' strip out some of the data we might explicitly want to retain.
#'
#' @param proj.data the \code{ProjectData} containing the mail data
#' @param retained.cols the columns to be retained. [default: c("author.name", "issue.id", "event.name")]
#' @param type which issue type to consider.
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#' @param use.unfiltered.data whether to use the unfiltered issue data, i.e. \code{proj.data$get.issues.unfiltered()}
#' instead of \code{proj.data$get.issues()} [default: FALSE]
#'
#' @return a filtered sub-data frame of the unfiltered issue data from \code{proj.data}.
preprocess.issue.data = function(proj.data, retained.cols = c("author.name", "issue.id", "event.name"),
type = c("all", "pull.requests", "issues"), use.unfiltered.data = FALSE) {
type = match.arg(type)
df = if (use.unfiltered.data) proj.data$get.issues.unfiltered() else proj.data$get.issues()
## forall vectors k, if nrow(df) == 0, then df[k, ..] fails
## so we abort beforehand
if (nrow(df) == 0) {
return(df[retained.cols])
}
switch (
type,
all = {
df = df[retained.cols]
},
issues = {
df = df[mask.issues(df), retained.cols]
},
pull.requests = {
df = df[mask.pull.requests(df), retained.cols]
},
logging::logerror("Requested unknown issue type %s", type)
)
return(df)
}
#' Helper function that aggregates counts of things like commits, mails, ... on a per-author basis.
#'
#' For example, called with \code{name = "commit.count"}, \code{data.source = "commits"},
#' \code{grouping.keys = c("committer.name")}, \code{remove.duplicates = TRUE} and
#' \code{remove.duplicates.by = c("hash")}, the returned function will:
#'
#' 1. get the proper data frame (using \code{DATASOURCE.TO.ARTIFACT.FUNCTION}),
#' 2. remove duplicate entries so that there is only one entry per commit hash,
#' 3. project away unneeded columns, leaving only "committer.name",
#' 4. count the commits grouped by the commiter name,
#' 5. return a data frame with columns "commiter.name" and "freq",
#' which contains the number of commits authored by each author.
#'
#' The signature of the returned function is \code{function(project.data)}.
#'
#' @param name the name the function will be bound to, for logging
#' @param data.source one of \code{"commits"}, \code{"mails"}, \code{"issues"} [default: "commits"]
#' @param grouping.keys the dataframe keys to group by
#' @param remove.duplicates whether to remove duplicates
#' @param remove.duplicates.by if \code{remove.duplicates}, then the key by which to remove duplicates
#'
#' @return a function that aggregates data according to the above specification contained in a given \code{ProjectData}.
#' This function itself returns a dataframe consisting of |grouping.keys|+1 columns, the last holding the count,
#' and the others the respective grouping
group.data.by.key = function(name, data.source = c("commits", "mails", "issues"),
grouping.keys, remove.duplicates, remove.duplicates.by) {
data.source = match.arg(data.source)
data.extractor = DATASOURCE.TO.ARTIFACT.FUNCTION[[data.source]]
return(function(proj.data) {
logging::logdebug("%s: starting", name)
## get the data we want to group
df = proj.data[[data.extractor]]()
## if necessary, make sure that there is only one entry for each remove-duplicate key (combination)
if (remove.duplicates) {
df = df[!duplicated(df[[remove.duplicates.by]]), ]
}
## throw away unnecessary columns
df = df[grouping.keys]
grouping.keys.formatted = paste(grouping.keys, sep="`, `")
## execute a query that counts the number of occurrences of the grouping.keys
stmt = paste0("SELECT `", grouping.keys.formatted, "`, COUNT(*) as `freq` FROM `df`
GROUP BY `", grouping.keys.formatted, "` ORDER BY `freq` DESC, `", grouping.keys.formatted, "`")
logging::logdebug("%s: running SQL %s", name, stmt)
res = sqldf::sqldf(stmt)
logging::logdebug("%s: finished", name)
return(res)
})
}
## / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /
## Commit-based statistics -------------------------------------------------
#' Get the commit count for each author based on the commit data contained in the specified \code{ProjectData}.
#'
#' @param proj.data the \code{ProjectData} containing the commit data
#'
#' @return a dataframe consisting of two columns, the first of which holding the authors' names and the second holding
#' their respective commit counts
get.author.commit.count = group.data.by.key("get.author.commit.count", "commits",
c("author.name"), TRUE, c("hash"))
#' Get the commit count for each committer based on the commit data contained in the specified \code{ProjectData}.
#' The count is aggregated like in \code{get.author.commit.count}, but based on the "committer" commit attribute
#'
#' @param proj.data the data to count on
#'
#' @return a data frame in descending order by the commit count.
get.committer.commit.count = group.data.by.key("get.committer.commit.count", "commits",
c("committer.name"), TRUE, c("hash"))
#' Get the commit count for each committer based on the commit data contained in the specified \code{ProjectData}.
#' The count is aggregated like in \code{get.author.commit.count}, but based on the "committer" commit attribute.
#' However, only commits where the commiter is *not* the author are considered.
#'
#' @param proj.data the data to count on
#'
#' @return a data frame in descending order by the commit count.
get.committer.not.author.commit.count = function(range.data) {
logging::logdebug("get.committer.not.author.commit.count: starting.")
## Get commit data
commits.df = range.data$get.commits()
## For each commit hash, make sure there is only one row
commits.df = commits.df[!duplicated(commits.df[["hash"]]), ]
## Restrict commits to relevant columns
commits.df = commits.df[c("author.name", "committer.name")]
## Execute a query to get the commit count per author
res = sqldf::sqldf("SELECT *, COUNT(*) AS `freq` FROM `commits.df`
WHERE `committer.name` <> `author.name`
GROUP BY `committer.name`, `author.name`
ORDER BY `freq` DESC, `author.name` ASC")
logging::logdebug("get.committer.not.author.commit.count: finished.")
return(res)
}
#' Get the commit count for each person based on the commit data contained in the specified \code{ProjectData}.
#' The count is aggregated like in \code{get.author.commit.count}, but only considers commits where the "committer" and
#' "author" fields are identical.
#'
#' @param proj.data the data to count on
#'
#' @return a data frame in descending order by the commit count.
get.committer.and.author.commit.count = function(range.data) {
logging::logdebug("get.committer.and.author.commit.count: starting.")
## Get commit data
commits.df = range.data$get.commits()
## For each commit hash, make sure there is only one row
commits.df = commits.df[!duplicated(commits.df[["hash"]]), ]
## Restrict commits to relevant columns
commits.df = commits.df[c("author.name", "committer.name")]
## Execute a query to get the commit count per person
res = sqldf::sqldf("SELECT *, COUNT(*) AS `freq` FROM `commits.df`
WHERE `committer.name` = `author.name`
GROUP BY `committer.name`, `author.name`
ORDER BY `freq` DESC, `author.name` ASC")
logging::logdebug("get.committer.and.author.commit.count: finished.")
return(res)
}
#' Get the commit count for each person based on the commit data contained in the specified \code{ProjectData}.
#' The count is aggregated like in \code{get.author.commit.count}, but only considers all commits where a person is
#' "committer" or "author" (or both, but one suffices).
#'
#' @param proj.data the data to count on
#'
#' @return a data frame in descending order by the commit count.
get.committer.or.author.commit.count = function(range.data) {
logging::logdebug("get.committer.or.author.commit.count: starting.")
## Get commit data
commits.df = range.data$get.commits()
## For each commit hash, make sure there is only one row
commits.df = commits.df[!duplicated(commits.df[["hash"]]), ]
## Restrict commits to relevant columns
commits.df = commits.df[c("author.name", "committer.name")]
## Execute queries to get the commit count per person
ungrouped = sqldf::sqldf("SELECT `committer.name` AS `name` FROM `commits.df`
WHERE `committer.name` = `author.name`
UNION ALL
SELECT `author.name` AS `name` FROM `commits.df`
WHERE `author.name` <> `committer.name`
UNION ALL
SELECT `committer.name` AS `name` FROM `commits.df`
WHERE `author.name` <> `committer.name`")
res = sqldf::sqldf("SELECT *, COUNT(*) AS `freq` FROM `ungrouped`
GROUP BY `name`
ORDER BY `freq` DESC, `name` ASC")
logging::logdebug("get.committer.or.author.commit.count: finished.")
return(res)
}
#' Get the number of changed lines of code (LOC) for each author based on the commit data contained in the specified
#' \code{ProjectData}. The number is calculated by taking the sum of added and deleted lines of code for each commit.
#'
#' @param proj.data the \code{ProjectData} containing the commit data
#'
#' @return a dataframe consisting of two columns, the first of which holding the authors' names and the second holding
#' their respective LOC counts
get.author.loc.count = function(proj.data) {
logging::logdebug("get.author.loc.count: starting.")
## Get commit data
commits.df = proj.data$get.commits()
## For each commit hash, make sure there is only one row
commits.df = commits.df[!duplicated(commits.df[["hash"]]), ]
## Restrict commits to relevant columns
commits.df = commits.df[c("author.name", "added.lines", "deleted.lines")]
## Execute a query to get the changed lines per author
res = sqldf::sqldf("SELECT `author.name`, SUM(`added.lines`) + SUM(`deleted.lines`) AS `loc`
FROM `commits.df`
GROUP BY `author.name` ORDER BY `loc` DESC, `author.name` ASC")
logging::logdebug("get.author.loc.count: finished.")
return(res)
}
## / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /
## Mail-based statistics ---------------------------------------------------
#' Get the mail count for each author based on the mail data contained in the specified \code{ProjectData}.
#'
#' @param proj.data the \code{ProjectData} containing the mail data
#'
#' @return a dataframe consisting of two columns, the first of which holding the authors' names and the second holding
#' their respective mail counts
get.author.mail.count = group.data.by.key("get.author.mail.count", "mails",
c("author.name"), TRUE, c("message.id"))
#' Get the mail-thread count for each author based on the mail data contained in the specified \code{ProjectData}.
#' This is the number of threads the author participated in, i.e., contributed at least one e-mail to.
#'
#' @param proj.data the \code{ProjectData} containing the mail data
#'
#' @return a dataframe consisting of two columns, the first of which holding the authors' names and the second holding
#' their respective mail thread counts
get.author.mail.thread.count = function(proj.data) {
logging::logdebug("get.author.mail.thread.count: starting.")
mails.df = proj.data$get.mails()
## Remove unnecessary rows and columns
mails.df = mails.df[!duplicated(mails.df[["message.id"]]), ]
mails.df = mails.df[c("author.name", "message.id", "thread")]
## Only count each thread once
stmt = "SELECT `author.name`, COUNT(DISTINCT thread) as `freq` FROM `mails.df`
GROUP BY `author.name` ORDER BY `freq` DESC, `author.name` ASC"
logging::logdebug("get.author.mail.thread.count: running SQL %s", stmt)
res = sqldf::sqldf(stmt)
logging::logdebug("get.author.mail.thread.count: finished")
return(res)
}
## / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /
## Issue-/PR-based statistics ----------------------------------------------
#' Get the issue/pr count for each author based on the issue data contained in the specified \code{ProjectData}.
#' The issue count here is the number of issues the author participated in (which can mean anything,
#' from commenting to closing to assigning the issue to others, to labeling, referencing it in other issues,
#' adding commits, ...).
#'
#' The type argument specifies whether we count PRs alone, issues alone, or both (\code{"all"}).
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param type which issue type to consider (see \code{preprocess.issue.data}).
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#' @param use.unfiltered.data whether to use unfiltered issue data (see \code{preprocess.issue.data}) [default: FALSE]
#'
#' @return a dataframe consisting of two columns, the first of which holding the authors' names and the second holding
#' their respective issue counts
get.author.issue.count = function(proj.data, type = c("all", "issues", "pull.requests"), use.unfiltered.data = FALSE) {
type = match.arg(type)
logging::logdebug("get.author.issue.count: starting.")
df = preprocess.issue.data(proj.data, type = type, use.unfiltered.data = use.unfiltered.data)
## count distinct since an author may appear in the same issue multiple times
stmt = "SELECT `author.name`, COUNT( DISTINCT `issue.id`) as `freq` FROM `df`
GROUP BY `author.name` ORDER BY `freq` DESC, `author.name` ASC"
res = sqldf::sqldf(stmt)
logging::logdebug("get.author.issue.count: finished")
return(res)
}
#' Get the issue/pr count for each author based on the issue data contained in the specified \code{ProjectData}.
#' The issue count here is the number of issues the author created.
#'
#' The type argument specifies whether we count PRs alone, issues alone, or both (\code{"all"}).
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param type which issue type to consider (see \code{preprocess.issue.data}).
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#' @param use.unfiltered.data whether to use unfiltered issue data (see \code{preprocess.issue.data}). Note that the
#' filtered data may not contain issue created events.
#' [default: TRUE]
#'
#' @return a dataframe consisting of two columns, the first of which holding the authors' names and the second holding
#' their respective issue counts
get.author.issues.created.count = function(proj.data, type = c("all", "issues", "pull.requests"),
use.unfiltered.data = TRUE) {
type = match.arg(type)
logging::logdebug("get.author.issues.created.count: starting.")
df = preprocess.issue.data(proj.data, type = type, use.unfiltered.data = use.unfiltered.data)
## count distinct since an author may appear in the same issue multiple times
stmt = "SELECT `author.name`, COUNT( DISTINCT `issue.id`) as `freq` FROM `df`
WHERE `event.name` = 'created'
GROUP BY `author.name` ORDER BY `freq` DESC, `author.name` ASC"
res = sqldf::sqldf(stmt)
logging::logdebug("get.author.issues.created.count: finished")
return(res)
}
#' Get the issue/pr count for each author based on the issue data contained in the specified \code{ProjectData}.
#' The issue count here is the number of issues the author commented in.
#'
#' The type argument specifies whether we count PRs alone, issues alone, or both (\code{"all"}).
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param type which issue type to consider (see \code{preprocess.issue.data}).
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#' @param use.unfiltered.data whether to use unfiltered issue data (see \code{preprocess.issue.data}) [default: FALSE]
#'
#' @return a dataframe consisting of two columns, the first of which holding the authors' names and the second holding
#' their respective issue counts
get.author.issues.commented.in.count = function(proj.data, type = c("all", "issues", "pull.requests"),
use.unfiltered.data = FALSE) {
type = match.arg(type)
logging::logdebug("get.author.issues.commented.in.count: starting.")
df = preprocess.issue.data(proj.data, type = type, use.unfiltered.data = use.unfiltered.data)
## count distinct since an author may appear in the same issue multiple times
stmt = "SELECT `author.name`, COUNT( DISTINCT `issue.id`) as `freq` FROM `df`
WHERE `event.name` = 'commented'
GROUP BY `author.name` ORDER BY `freq` DESC, `author.name` ASC"
res = sqldf::sqldf(stmt)
logging::logdebug("get.author.issues.commented.in.count: finished")
return(res)
}
#' Get the issue/pr comment count for each author based on the issue data contained in the specified \code{ProjectData}.
#' The issue comment count here is the number of comments the author created summed across all issues
#'
#' The type argument specifies whether we count PRs alone, issues alone, or both (\code{"all"}).
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param type which issue type to consider (see \code{preprocess.issue.data}).
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#' @param use.unfiltered.data whether to use unfiltered issue data (see \code{preprocess.issue.data}) [default: FALSE]
#'
#' @return a dataframe consisting of two columns, the first of which holding the authors' names and the second holding
#' their respective comment counts
get.author.issue.comment.count = function(proj.data, type = c("all", "issues", "pull.requests"),
use.unfiltered.data = FALSE) {
type = match.arg(type)
logging::logdebug("get.author.issue.comment.count: starting.")
df = preprocess.issue.data(proj.data, type = type, use.unfiltered.data = use.unfiltered.data)
stmt = "SELECT `author.name`, COUNT(*) as `freq` FROM `df`
WHERE `event.name` = 'commented'
GROUP BY `author.name` ORDER BY `freq` DESC, `author.name` ASC"
res = sqldf::sqldf(stmt)
logging::logdebug("get.author.issue.comment.count: finished")
return(res)
}
## / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /
## Mail Thread Statistics --------------------------------------------------
#' Get the number of contributors to each mail thread based on the mail data contained in the
#' specified \code{ProjectData}.
#'
#' @param proj.data the \code{ProjectData} containing the mail data
#'
#' @return a named list of contributor counts, where the name is the thread.
get.mail.thread.contributor.count = function(proj.data) {
logging::logdebug("get.mail.thread.contributor.count: starting.")
thread.to.mails = get.key.to.value.from.df(proj.data$get.mails(), "thread", "author.email")
thread.to.contributor.count = lapply(thread.to.mails, function(df) {
length(unique(df[["data.vertices"]]))
})
logging::logdebug("get.mail.thread.contributor.count: finished")
return(thread.to.contributor.count)
}
#' Get the number of messages in each mail thread based on the mail data contained in the
#' specified \code{ProjectData}.
#'
#' @param proj.data the \code{ProjectData} containing the mail data
#'
#' @return a named list of message counts, where the name is the thread.
get.mail.thread.mail.count = function(proj.data) {
logging::logdebug("get.mail.thread.mail.count: starting.")
thread.to.mails = get.key.to.value.from.df(proj.data$get.mails(), "thread", "author.email")
thread.to.mail.count = lapply(thread.to.mails, function(df) {
length(df[["data.vertices"]])
})
logging::logdebug("get.mail.thread.mail.count: finished")
return(thread.to.mail.count)
}
#' Get the date of the first message in each mail thread based on the mail data contained
#' in the specified \code{ProjectData}.
#'
#' @param proj.data the \code{ProjectData} containing the mail data
#'
#' @return a named list of start dates, where the name is the thread.
get.mail.thread.start.date = function(proj.data) {
logging::logdebug("get.mail.thread.start.date: starting.")
thread.to.dates = get.key.to.value.from.df(proj.data$get.mails(), "thread", "date")
thread.to.start.date = lapply(thread.to.dates, function(df) {
min(df[["data.vertices"]])
})
logging::logdebug("get.mail.thread.start.date: finished")
return(thread.to.start.date)
}
#' Get the date of the last message in each mail thread based on the mail data contained
#' in the specified \code{ProjectData}
#'
#' @param proj.data the \code{ProjectData} containing the mail data
#'
#' @return a named list of end dates, where the name is the thread.
get.mail.thread.end.date = function(proj.data) {
logging::logdebug("get.mail.thread.end.date: starting.")
thread.to.dates = get.key.to.value.from.df(proj.data$get.mails(), "thread", "date")
thread.to.end.date = lapply(thread.to.dates, function(df) {
max(df[["data.vertices"]])
})
logging::logdebug("get.mail.thread.end.date: finished")
return(thread.to.end.date)
}
#' Get the identifier of the mailing list from which a threat originates.
#' This identifier is part of the thread ID as produced by codeface, e.g., if the thread ID is "13#37", then 13 is the
#' ID of the mailing list.
#'
#' Older versions of codeface did not include this identifier. If the identifier is not included in the data used, a
#' warning is produced and the list will contain \code{NA} for each thread.
#'
#' @param proj.data the \code{ProjectData} containing the mail data
#'
#' @return a named list of mailing list identifiers, where the name is the thread.
get.mail.thread.originating.mailing.list = function(proj.data) {
logging::logdebug("get.mail.thread.originating.mailing.list: starting.")
thread.ids = unique(proj.data$get.mails()[["thread"]])
thread.to.list = lapply(thread.ids, function(thread.name) {
thread.id = substr(thread.name, 9, nchar(thread.name) - 1) # remove '<thread-' '>'
if (grepl("#", thread.id, fixed = TRUE)) { # make sure that our data has the shape we expect
mailing.list = strsplit(thread.id, "#")[[1]][1] # split at '#' and keep only first part
return(mailing.list)
}
else {
logging::logwarn("get.mail.thread.originating.mailing.list called on incompatible data")
return(NA)
}
})
names(thread.to.list) = thread.ids
logging::logdebug("get.mail.thread.originating.mailing.list: finished")
return(thread.to.list)
}
## / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /
## Issue Statistics --------------------------------------------------------
#' Get the number of contributors to each issue based on the issue data contained
#' in the specified \code{ProjectData}.
#'
#' The type argument specifies whether we count PRs alone, issues alone, or both (\code{"all"}).
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param type which issue type to consider (see \code{preprocess.issue.data}).
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#' @param use.unfiltered.data whether to use unfiltered issue data (see \code{preprocess.issue.data}) [default: FALSE]
#'
#' @return a named list of contributor counts, where the name is the issue ID.
get.issue.contributor.count = function(proj.data, type = c("all", "issues", "pull.requests"),
use.unfiltered.data = FALSE) {
type = match.arg(type)
logging::logdebug("get.issue.contributor.count: starting.")
df = preprocess.issue.data(proj.data, type = type, retained.cols = c("issue.id", "author.email"),
use.unfiltered.data = use.unfiltered.data)
issue.id.to.events = get.key.to.value.from.df(df, "issue.id", "author.email")
issue.id.to.contributor.count = lapply(issue.id.to.events, function(df) {
length(unique(df[["data.vertices"]]))
})
logging::logdebug("get.issue.contributor.count: finished")
return(issue.id.to.contributor.count)
}
#' Get the number of events for each issue based on the issue data contained
#' in the specified \code{ProjectData}.
#'
#' The type argument specifies whether we count PRs alone, issues alone, or both (\code{"all"}).
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param type which issue type to consider (see \code{preprocess.issue.data}).
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#' @param use.unfiltered.data whether to use unfiltered issue data (see \code{preprocess.issue.data}) [default: FALSE]
#'
#' @return a named list of event counts, where the name is the issue ID.
get.issue.event.count = function(proj.data, type = c("all", "issues", "pull.requests"), use.unfiltered.data = FALSE) {
type = match.arg(type)
logging::logdebug("get.issue.event.count: starting.")
df = preprocess.issue.data(proj.data, type = type, retained.cols = c("issue.id", "event.id"),
use.unfiltered.data = use.unfiltered.data)
issue.id.to.events = get.key.to.value.from.df(df, "issue.id", "event.id")
issue.id.to.event.count = lapply(issue.id.to.events, function(df) {
## one event might show up multiple times (i.e. 'mentioned' also triggers 'subscribed'),
## so we count the number of distinct event IDs
length(unique(df[["data.vertices"]]))
})
logging::logdebug("get.issue.event.count: finished")
return(issue.id.to.event.count)
}
#' Get the number of 'commented' events for each issue based on the issue data contained
#' in the specified \code{ProjectData}.
#'
#' The type argument specifies whether we count PRs alone, issues alone, or both (\code{"all"}).
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param type which issue type to consider (see \code{preprocess.issue.data}).
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#'
#' @return a named list of comment counts, where the name is the issue ID.
get.issue.comment.count = function(proj.data, type = c("all", "issues", "pull.requests")) {
type = match.arg(type)
logging::logdebug("get.issue.comment.count: starting.")
df = preprocess.issue.data(proj.data, type = type, retained.cols = c("issue.id", "event.name"))
issue.id.to.events = get.key.to.value.from.df(df, "issue.id", "event.name")
issue.id.to.comment.count = lapply(issue.id.to.events, function(df) {
event.names = df[["data.vertices"]]
return(length(event.names[event.names == "commented"]))
})
logging::logdebug("get.issue.comment.count: finished")
return(issue.id.to.comment.count)
}
#' Get the date each issue was opened, based on the issue data contained
#' in the specified \code{ProjectData}.
#'
#' The type argument specifies whether we count PRs alone, issues alone, or both (\code{"all"}).
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param type which issue type to consider (see \code{preprocess.issue.data}).
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#'
#' @return a named list of dates, where the name is the issue ID.
get.issue.opened.date = function(proj.data, type = c("all", "issues", "pull.requests")) {
type = match.arg(type)
logging::logdebug("get.issue.opened.date: starting.")
df = preprocess.issue.data(proj.data, type = type, retained.cols = c("issue.id", "creation.date"))
issue.id.to.dates = get.key.to.value.from.df(df, "issue.id", "creation.date")
issue.id.to.start.date = lapply(issue.id.to.dates, function(df) {
min(df[["data.vertices"]]) # values should all be the same
})
logging::logdebug("get.issue.opened.date: finished")
return(issue.id.to.start.date)
}
#' Get the date each issue was closed, based on the issue data contained
#' in the specified \code{ProjectData}, or \code{NA} if the issue is still open.
#'
#' The type argument specifies whether we count PRs alone, issues alone, or both (\code{"all"}).
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param type which issue type to consider (see \code{preprocess.issue.data}).
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#'
#' @return a named list of dates, where the name is the issue ID.
get.issue.closed.date = function(proj.data, type = c("all", "issues", "pull.requests")) {
type = match.arg(type)
logging::logdebug("get.issue.closed.date: starting.")
df = preprocess.issue.data(proj.data, type = type, retained.cols = c("issue.id", "closing.date"))
issue.id.to.dates = get.key.to.value.from.df(df, "issue.id", "closing.date")
issue.id.to.closed.date = lapply(issue.id.to.dates, function(df) {
min(df[["data.vertices"]]) # values should all be the same
})
logging::logdebug("get.issue.closed.date: finished")
return(issue.id.to.closed.date)
}
#' Get the date of the last activity in each issue based on the issue data contained
#' in the specified \code{ProjectData}.
#'
#' The type argument specifies whether we count PRs alone, issues alone, or both (\code{"all"}).
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param type which issue type to consider (see \code{preprocess.issue.data}).
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#' @param use.unfiltered.data whether to use unfiltered issue data (see \code{preprocess.issue.data}) [default: FALSE]
#'
#' @return a named list of dates, where the name is the issue ID.
get.issue.last.activity.date = function(proj.data, type = c("all", "issues", "pull.requests"),
use.unfiltered.data = FALSE) {
type = match.arg(type)
logging::logdebug("get.issue.last.activity.date: starting.")
df = preprocess.issue.data(proj.data, type = type, retained.cols = c("issue.id", "date"),
use.unfiltered.data = use.unfiltered.data)
issue.id.to.dates = get.key.to.value.from.df(df, "issue.id", "date")
issue.id.to.end.date = lapply(issue.id.to.dates, function(df) {
max(df[["data.vertices"]])
})
logging::logdebug("get.issue.last.activity.date: finished")
return(issue.id.to.end.date)
}
#' Get the title of each issue based on the issue data contained
#' in the specified \code{ProjectData}.
#'
#' The type argument specifies whether we count PRs alone, issues alone, or both (\code{"all"}).
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param type which issue type to consider (see \code{preprocess.issue.data}).
#' One of \code{"issues"}, \code{"pull.requests"} or \code{"all"}
#' [default: "all"]
#'
#' @return a named list of dates, where the name is the issue ID.
get.issue.title = function(proj.data, type = c("all", "issues", "pull.requests")) {
type = match.arg(type)
logging::logdebug("get.issue.title: starting.")
df = preprocess.issue.data(proj.data, type = type, retained.cols = c("issue.id", "issue.title"))
issue.id.to.title = get.key.to.value.from.df(df, "issue.id", "issue.title")
issue.id.to.title.only = lapply(issue.id.to.title, function(df) {
## as a result of get.key.to.value.from.df, the "issue.title" column should be duplicated as "data.vertices".
## The title should be the same in every row, so we can just use the first row.
df[[1,"data.vertices"]] # data frames resulting from get.key.to.value.from.df always have at least one row
})
logging::logdebug("get.issue.title: finished")
return(issue.id.to.title.only)
}
#' Get whether a PR is open, has been merged, or has been closed without merging.
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#' @param use.unfiltered.data whether to use unfiltered issue data (see \code{preprocess.issue.data}) [default: TRUE]
#'
#' @return a named list of dates, where the name is the issue ID.
get.pr.open.merged.or.closed = function(proj.data, use.unfiltered.data = TRUE) {
logging::logdebug("get.pr.open.merged.or.closed: starting.")
df = preprocess.issue.data(proj.data, type = "pull.requests", use.unfiltered.data = use.unfiltered.data,
retained.cols = c("issue.id", "issue.state", "event.name"))
issue.id.to.events = get.key.to.value.from.df(df, "issue.id", "event.name")
issue.id.to.state = lapply(issue.id.to.events, function(df) {
return(if ("open" %in% df[["issue.state"]] || "reopened" %in% df[["issue.state"]]) "open"
else if ("merged" %in% df[["event.name"]]) "merged"
else "closed")
})
logging::logdebug("get.pr.open.merged.or.closed: finished")
return(issue.id.to.state)
}
#' Get whether each issue is a pull request, based on the issue data contained in the specified
#' \code{ProjectData}.
#'
#' @param proj.data the \code{ProjectData} containing the issue data
#'
#' @return a named list of logical values, where the name is the issue ID.
get.issue.is.pull.request = function(proj.data) {
logging::logdebug("get.issue.is.pull.request: starting.")
issue.data = proj.data$get.issues()
issue.id.to.is.pr = as.list(mask.pull.requests(issue.data))
names(issue.id.to.is.pr) = issue.data[["issue.id"]]
logging::logdebug("get.issue.is.pull.request: finished")
return(issue.id.to.is.pr)
}
## / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / / /
## Commit-Message Functionality ------------------------------------------
#' Apply preprocessing steps to commit messages of given commits. Preprocessing steps are always performed in
#' the following order: \code{"lowercase"} -> \code{"stopwords"} -> \code{"punctuation"} -> \code{"whitespaces"}
#'
#' \code{"lowercase"} transforms all upper case characters into their lowercase counterparts
#' \code{"stopwords"} removes all stopwords using a list of stopwords
#' for the english language provided by the package \code{tm}
#' \code{"punctuation"} removes all punctuation, as described in the ASCII \code{[:punct:]} class,
#' using the r-base \code{regex} functionality. This includes standard punctuation
#' characters such as ",", ".", ":", etc. but also dashes, parentheses, mathematical
#' symbols and special characters used in programming, such as "$", "#", or "&".
#' Intra-word dashes are kept.
#' \code{"whitespaces"} removes superflous whitespace characters, such as "\t" or "\n", and replaces
#' them with single whitespaces
#'
#' @param proj.data the \code{ProjectData} containing the commit-message data
#' @param commit.hashes the commit hashes that should be considered, if \code{NULL} all commits are considered
#' [default: NULL]
#' @param preprocessing the preprocessing steps to be executed
#' [default: c("lowercase", "punctuation", "stopwords", "whitespaces")]
#'
#' @return a dataframe containing the hashes and corresponding preprocesessed messages
get.preprocessed.commit.messages = function(proj.data,
commit.hashes = NULL,
preprocessing = c("lowercase",
"punctuation",
"stopwords",
"whitespaces")) {
preprocessing = match.arg.or.default(preprocessing, several.ok = TRUE)
preprocessed.messages = create.empty.data.frame(c("hash", "preprocessed.message"))
## get commit-message data of the given hashes
## if no hashes are given consider all commits
commit.message.data = proj.data$get.commit.messages()
if (!is.null(commit.hashes)) {
commit.message.data = commit.message.data[commit.message.data[["hash"]] %in% commit.hashes, ]
}
## if data is empty, abort process
if (nrow(commit.message.data) < 1) {
return(preprocessed.messages)
}
## create a corpus with all selected commit messages
if (proj.data$get.project.conf.entry("commit.messages") == "message") {
messages = paste(commit.message.data[["title"]], commit.message.data[["message"]])
} else {
messages = commit.message.data[["title"]]
}
corpus = tm::Corpus(tm::VectorSource(messages))
## preprocessing steps
if ("lowercase" %in% preprocessing) {
## convert to lowercase
corpus = tm::tm_map(corpus, tm::content_transformer(tolower))
}
if ("stopwords" %in% preprocessing) {
## remove stopwords
corpus = tm::tm_map(corpus, tm::removeWords, tm::stopwords("english"))
}
if ("punctuation" %in% preprocessing) {
## remove punctuation
corpus = tm::tm_map(corpus, tm::removePunctuation, preserve_intra_word_dashes = TRUE)
}
if ("whitespaces" %in% preprocessing) {
## remove excess whitespaces
corpus = tm::tm_map(corpus, tm::stripWhitespace)
}
## trim leading and trailing spaces
corpus = tm::tm_map(corpus, trimws)
## create output dataframe
preprocessed.messages = data.frame(hash = commit.message.data[["hash"]],
preprocessed.message = corpus$content)
return(preprocessed.messages)
}
#' Apply stemming to commit messages of given commits. Preprocessing will be executed as part of this.
#' Preprocessing steps are always performed in the following order:
#' \code{"lowercase"} -> \code{"stopwords"} -> \code{"punctuation"} -> \code{"whitespaces"}
#'
#' @param proj.data the \code{ProjectData} containing the commit-message data
#' @param commit.hashes the commit hashes that should be considered, if \code{NULL} all commits are considered
#' [default: NULL]
#' @param preprocessing the preprocessing steps to be executed
#' [default: c("lowercase", "punctuation", "stopwords", "whitespaces")]
#'
#' @return a dataframe containing the hashes and corresponding stemmed messages
get.stemmed.commit.messages = function(proj.data,
commit.hashes = NULL,
preprocessing = c("lowercase", "punctuation", "stopwords", "whitespaces")) {
## apply preprocessing
preprocessed.messages = get.preprocessed.commit.messages(proj.data, commit.hashes, preprocessing)
## build corpus
corpus = tm::Corpus(tm::VectorSource(preprocessed.messages[, "preprocessed.message"]))
## apply stemming
corpus = tm::tm_map(corpus, tm::stemDocument)
## create output dataframe
stemmed.messages = data.frame(hash = preprocessed.messages[["hash"]],
stemmed.message = corpus$content)
return(stemmed.messages)
}
#' Apply tokenization to commit messages of given commits. This function does not allow for preprocessing,
#' since it is supposed to extract all tokens from the text as is and preprocessing steps change the
#' resulting tokens. The text is split into tokens at any whitespace character.
#' Special characters have no impact and are treated the same as any other non-whitespace character.
#'
#' @param proj.data the \code{ProjectData} containing the commit-message data
#' @param commit.hashes the commit hashes that should be considered, if \code{NULL} all commits are considered
#' [default: NULL]
#'
#' @return a list of vectors containing the tokens from the commit messages
get.tokenized.commit.messages = function(proj.data, commit.hashes = NULL) {
## get commit-message data of the given hashes
## if no hashes are given consider all commits
commit.message.data = proj.data$get.commit.messages()
if (!is.null(commit.hashes)) {
commit.message.data = commit.message.data[commit.message.data[["hash"]] %in% commit.hashes, ]
}
if (proj.data$get.project.conf.entry("commit.messages") == "message") {
messages = paste(commit.message.data[["title"]], commit.message.data[["message"]])
} else {
messages = commit.message.data[["title"]]
}
tokens = lapply(messages, tm::Boost_tokenizer)
return(tokens)
}
#' Apply lemmatization to commit messages of given commits. Preprocessing will be executed as part of this.
#' Preprocessing steps are always performed in the following order:
#' \code{"lowercase"} -> \code{"stopwords"} -> \code{"punctuation"} -> \code{"whitespaces"}
#'
#' @param proj.data the \code{ProjectData} containing the commit-message data
#' @param commit.hashes the commit hashes that should be considered, if \code{NULL} all commits are considered
#' [default: NULL]
#' @param preprocessing the preprocessing steps to be executed
#' [default: c("lowercase", "punctuation", "stopwords", "whitespaces")]
#'
#' @return a dataframe containing the hashes and corresponding lemmatized messages
get.lemmatized.commit.messages = function(proj.data,
commit.hashes = NULL,
preprocessing = c("lowercase", "punctuation", "stopwords", "whitespaces")) {
## apply preprocessing
preprocessed.messages = get.preprocessed.commit.messages(proj.data, commit.hashes, preprocessing)
## build corpus
corpus = tm::Corpus(tm::VectorSource(preprocessed.messages[, "preprocessed.message"]))
## apply lemmatization
corpus = tm::tm_map(corpus, textstem::lemmatize_strings)
## create output dataframe
lemmatized.messages = data.frame(hash = preprocessed.messages[["hash"]],
lemmatized.message = corpus$content)
return(lemmatized.messages)
}
#' Get commit messages that match given strings.
#'
#' @param proj.data the \code{ProjectData} containing the commit-message data
#' @param commit.hashes the commit hashes that should be considered, if \code{NULL} all commits are considered
#' [default: NULL]
#' @param strings the strings that are searched for
#' @param match the function that describes how many of the strings need to be in a message in order for
#' that message to be returned. Can be any function that takes a list of logical values and
#' returns a single logical value, such as \code{any}, \code{all} or anything in between [default: any]
#' @param ignore.case whether the case should be ignored in the search [default: TRUE]
#'
#' @return a dataframe containing the hashes and corresponding matching messages
get.commit.messages.by.strings = function(proj.data, commit.hashes = NULL, strings, match = any, ignore.case = TRUE) {
messages = create.empty.data.frame(c("hash", "message"))
## get commit-message data of the given hashes
## if no hashes are given consider all commits
commit.message.data = proj.data$get.commit.messages()
if (!is.null(commit.hashes)) {
commit.message.data = commit.message.data[commit.message.data[["hash"]] %in% commit.hashes, ]
}
## prepare the dataframe for searching commit messages by merging the 'title' and 'message' columns if desired
if (proj.data$get.project.conf.entry("commit.messages") == "message") {
commit.message.data[["message"]] = paste(commit.message.data[["title"]], commit.message.data[["message"]])
} else {
commit.message.data[["message"]] = commit.message.data[["title"]]
}
commit.message.data = commit.message.data[, c("hash", "message")]
## filter the messages by searching for all the keywords in 'strings'
## and applying the match function once per message
messages = commit.message.data[unlist(parallel::mclapply(commit.message.data[["message"]], function(msg) {
match(lapply(strings, function(word) {
return (grepl(word, msg, ignore.case = ignore.case))
}))
})), ]
return(messages)
}
#' Count tokens in given commit messages.
#'
#' @param proj.data the \code{ProjectData} containing the commit-message data
#' @param commit.hashes the commit hashes that should be considered, if \code{NULL} all commits are considered
#' [default: NULL]
#'
#' @return a dataframe containing the hashes and corresponding token counts
get.commit.message.counts = function(proj.data, commit.hashes = NULL) {
## get commit-message data of the given hashes
## if no hashes are given consider all commits
commit.message.data = proj.data$get.commit.messages()
if (!is.null(commit.hashes)) {
commit.message.data = commit.message.data[commit.message.data[["hash"]] %in% commit.hashes, ]
}
## get tokens
tokens = get.tokenized.commit.messages(proj.data, commit.hashes)
hashes = commit.message.data[["hash"]]
counts = unlist(lapply(tokens, length))
messages = data.frame(hash = hashes,
count = counts)
return(messages)
}