forked from reposense/RepoSense
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRepoConfiguration.java
More file actions
461 lines (382 loc) · 16 KB
/
RepoConfiguration.java
File metadata and controls
461 lines (382 loc) · 16 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
package reposense.model;
import java.io.File;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Date;
import java.util.List;
import java.util.Map;
import java.util.logging.Logger;
import java.util.stream.Collectors;
import reposense.git.GitBranch;
import reposense.git.exception.GitBranchException;
import reposense.system.LogsManager;
import reposense.util.FileUtil;
/**
* Represents configuration information from CSV config file for a single repository.
*/
public class RepoConfiguration {
public static final String DEFAULT_BRANCH = "HEAD";
private static final Logger logger = LogsManager.getLogger(RepoConfiguration.class);
private RepoLocation location;
private String branch;
private String displayName;
private String outputFolderName;
private transient Date sinceDate;
private transient Date untilDate;
private transient String repoFolderName;
private transient boolean annotationOverwrite = true;
private transient FileTypeManager fileTypeManager;
private transient int commitNum = 1;
private transient List<String> ignoreGlobList = new ArrayList<>();
private transient AuthorConfiguration authorConfig;
private transient boolean isStandaloneConfigIgnored;
private transient List<CommitHash> ignoreCommitList;
private transient boolean isFormatsOverriding;
private transient boolean isIgnoreGlobListOverriding;
private transient boolean isIgnoreCommitListOverriding;
public RepoConfiguration(RepoLocation location) {
this(location, DEFAULT_BRANCH);
}
public RepoConfiguration(RepoLocation location, String branch) {
this(location, branch, Collections.emptyList(), Collections.emptyList(), false, Collections.emptyList(),
false, false, false);
}
public RepoConfiguration(RepoLocation location, String branch, List<FileType> formats, List<String> ignoreGlobList,
boolean isStandaloneConfigIgnored, List<CommitHash> ignoreCommitList, boolean isFormatsOverriding,
boolean isIgnoreGlobListOverriding, boolean isIgnoreCommitListOverriding) {
this.authorConfig = new AuthorConfiguration(location, branch);
this.location = location;
this.branch = location.isEmpty() ? DEFAULT_BRANCH : branch;
this.ignoreGlobList = ignoreGlobList;
this.isStandaloneConfigIgnored = isStandaloneConfigIgnored;
this.fileTypeManager = new FileTypeManager(formats);
this.ignoreCommitList = ignoreCommitList;
this.isFormatsOverriding = isFormatsOverriding;
this.isIgnoreGlobListOverriding = isIgnoreGlobListOverriding;
this.isIgnoreCommitListOverriding = isIgnoreCommitListOverriding;
String organization = location.getOrganization();
String repoName = location.getRepoName();
displayName = repoName + "[" + branch + "]";
outputFolderName = repoName + "_" + branch;
repoFolderName = repoName;
if (organization != null) {
repoFolderName = organization + "_" + repoFolderName;
displayName = organization + "/" + displayName;
outputFolderName = organization + "_" + outputFolderName;
}
}
public static void setDatesToRepoConfigs(List<RepoConfiguration> configs, Date sinceDate, Date untilDate) {
for (RepoConfiguration config : configs) {
config.setSinceDate(sinceDate);
config.setUntilDate(untilDate);
}
}
/**
* Merges a {@code RepoConfiguration} from {@code repoConfigs} with an {@code AuthorConfiguration} from
* {@code authorConfigs} if their {@code RepoLocation} and branch matches
*/
public static void merge(List<RepoConfiguration> repoConfigs, List<AuthorConfiguration> authorConfigs) {
for (AuthorConfiguration authorConfig : authorConfigs) {
if (authorConfig.getLocation().isEmpty()) {
continue;
}
RepoConfiguration matchingRepoConfig = getMatchingRepoConfig(repoConfigs, authorConfig);
if (matchingRepoConfig == null) {
String branchInfo = authorConfig.isDefaultBranch()
? ""
: String.format(" (branch %s)", authorConfig.getBranch());
logger.warning(String.format(
"Repository %s%s is not found in repo-config.csv.",
authorConfig.getLocation(), branchInfo));
continue;
}
matchingRepoConfig.setAuthorConfiguration(authorConfig);
}
for (AuthorConfiguration authorConfig : authorConfigs) {
if (authorConfig.getLocation().isEmpty()) {
for (RepoConfiguration repoConfig : repoConfigs) {
repoConfig.addAuthors(authorConfig.getAuthorList());
}
}
}
}
/**
* Sets the list of groups in {@code groupConfigs} to the respective {@code repoConfigs}.
*/
public static void setGroupConfigsToRepos(List<RepoConfiguration> repoConfigs,
List<GroupConfiguration> groupConfigs) {
for (GroupConfiguration groupConfig : groupConfigs) {
if (groupConfig.getLocation().isEmpty()) {
continue;
}
List<RepoConfiguration> matchingRepoConfigs = getMatchingRepoConfigsByRepoLocation(repoConfigs,
groupConfig.getLocation());
if (matchingRepoConfigs.isEmpty()) {
logger.warning(String.format(
"Repository %s is not found in repo-config.csv.", groupConfig.getLocation()));
continue;
}
matchingRepoConfigs.forEach(matchingRepoConfig -> {
matchingRepoConfig.setGroups(groupConfig.getGroupsList());
});
}
}
/**
* Iterates through {@code repoConfigs} to find a {@code RepoConfiguration} with {@code RepoLocation} and branch
* that matches {@code authorConfig}. Returns {@code null} if no match is found.
*/
private static RepoConfiguration getMatchingRepoConfig(
List<RepoConfiguration> repoConfigs, AuthorConfiguration authorConfig) {
for (RepoConfiguration repoConfig : repoConfigs) {
if (repoConfig.getLocation().equals(authorConfig.getLocation())
&& repoConfig.getBranch().equals(authorConfig.getBranch())) {
return repoConfig;
}
}
return null;
}
/**
* Returns a list of {@link RepoConfiguration} where the {@link RepoLocation} matches {@code targetRepoLocation}.
*/
private static List<RepoConfiguration> getMatchingRepoConfigsByRepoLocation(
List<RepoConfiguration> configs, RepoLocation targetRepoLocation) {
return configs.stream().filter(config -> config.getLocation().equals(targetRepoLocation))
.collect(Collectors.toList());
}
/**
* Sets {@code formats} to {@code RepoConfiguration} in {@code configs} if its format list is empty.
*/
public static void setFormatsToRepoConfigs(List<RepoConfiguration> configs, List<FileType> formats) {
for (RepoConfiguration config : configs) {
if (!config.fileTypeManager.hasSpecifiedFormats()) {
config.fileTypeManager.setFormats(formats);
}
}
}
/**
* Sets {@code isStandaloneConfigIgnored} to all {@code RepoConfiguration} in {@code configs}.
*/
public static void setStandaloneConfigIgnoredToRepoConfigs(
List<RepoConfiguration> configs, boolean isStandaloneConfigIgnored) {
configs.stream().forEach(config -> config.setStandaloneConfigIgnored(isStandaloneConfigIgnored));
}
/**
* Clears authors information and use the information provided from {@code standaloneConfig}.
*/
public void update(StandaloneConfig standaloneConfig) {
// only assign the new values when all the fields in {@code standaloneConfig} pass the validations.
List<FileType> replacementFileTypes = FileType.convertFormatStringsToFileTypes(standaloneConfig.getFormats());
CommitHash.validateCommits(standaloneConfig.getIgnoreCommitList());
if (!isIgnoreGlobListOverriding) {
ignoreGlobList = standaloneConfig.getIgnoreGlobList();
}
if (!isFormatsOverriding) {
fileTypeManager.setFormats(replacementFileTypes);
}
if (!isIgnoreCommitListOverriding) {
ignoreCommitList = CommitHash.convertStringsToCommits(standaloneConfig.getIgnoreCommitList());
}
authorConfig.update(standaloneConfig, ignoreGlobList);
}
/**
* Attempts to find matching {@code Author} given a name and an email.
* If no matching {@code Author} is found, {@code Author#UNKNOWN_AUTHOR} is returned.
*/
public Author getAuthor(String name, String email) {
return authorConfig.getAuthor(name, email);
}
/**
* Updates branch with {@code currentBranch} if default branch is specified.
*/
public void updateBranch(String currentBranch) {
if (branch.equals(DEFAULT_BRANCH)) {
setBranch(currentBranch);
}
}
/**
* Gets the current branch and updates branch with current branch if default branch is specified.
*/
public void updateBranch() throws GitBranchException {
if (branch.equals(DEFAULT_BRANCH)) {
String currentBranch = GitBranch.getCurrentBranch(getRepoRoot());
setBranch(currentBranch);
}
}
/**
* Gets the path to the root folder of the repository.
*/
public String getRepoRoot() {
String path = FileUtil.REPOS_ADDRESS + File.separator + getRepoFolderName() + File.separator;
if (!getRepoName().isEmpty()) {
path += getRepoName() + File.separator;
}
return path;
}
/**
* Gets the name of the folder containing the cloned repository; the parent directory of the repo's root folder.
*/
public String getRepoFolderName() {
return repoFolderName;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if (!(other instanceof RepoConfiguration)) {
return false;
}
RepoConfiguration otherRepoConfig = (RepoConfiguration) other;
return location.equals(otherRepoConfig.location)
&& branch.equals(otherRepoConfig.branch)
&& authorConfig.equals(otherRepoConfig.authorConfig)
&& ignoreGlobList.equals(otherRepoConfig.ignoreGlobList)
&& isStandaloneConfigIgnored == otherRepoConfig.isStandaloneConfigIgnored
&& fileTypeManager.equals(otherRepoConfig.fileTypeManager)
&& isFormatsOverriding == otherRepoConfig.isFormatsOverriding
&& isIgnoreGlobListOverriding == otherRepoConfig.isIgnoreGlobListOverriding
&& isIgnoreCommitListOverriding == otherRepoConfig.isIgnoreCommitListOverriding;
}
public Map<Author, String> getAuthorDisplayNameMap() {
return authorConfig.getAuthorDisplayNameMap();
}
public void setAuthorDisplayNameMap(Map<Author, String> authorDisplayNameMap) {
authorConfig.setAuthorDisplayNameMap(authorDisplayNameMap);
}
public int getCommitNum() {
return commitNum;
}
public void setCommitNum(int commitNum) {
this.commitNum = commitNum;
}
public String getBranch() {
return branch;
}
public void setBranch(String branch) {
updateDisplayName(branch);
updateOutputFolderName(branch);
this.branch = branch;
authorConfig.setBranch(branch);
}
public void updateDisplayName(String branch) {
this.displayName = displayName.substring(0, displayName.lastIndexOf('[') + 1) + branch + "]";
}
public void updateOutputFolderName(String branch) {
this.outputFolderName = outputFolderName.substring(0, outputFolderName.lastIndexOf('_') + 1) + branch;
}
public boolean isAnnotationOverwrite() {
return annotationOverwrite;
}
public void setAnnotationOverwrite(boolean annotationOverwrite) {
this.annotationOverwrite = annotationOverwrite;
}
public List<String> getIgnoreGlobList() {
return ignoreGlobList;
}
public void setIgnoreGlobList(List<String> ignoreGlobList) {
this.ignoreGlobList = ignoreGlobList;
}
public List<CommitHash> getIgnoreCommitList() {
return ignoreCommitList;
}
public void setIgnoreCommitList(List<CommitHash> ignoreCommitList) {
this.ignoreCommitList = ignoreCommitList;
}
public List<Author> getAuthorList() {
return authorConfig.getAuthorList();
}
public void addAuthor(Author author) {
authorConfig.addAuthor(author, this.getIgnoreGlobList());
}
public void addAuthors(List<Author> authorList) {
authorConfig.addAuthors(authorList, this.getIgnoreGlobList());
}
public void setAuthorConfiguration(AuthorConfiguration authorConfig) {
this.authorConfig = authorConfig;
for (Author author : authorConfig.getAuthorList()) {
AuthorConfiguration.propagateIgnoreGlobList(author, ignoreGlobList);
}
}
public boolean containsAuthor(Author author) {
return authorConfig.containsAuthor(author);
}
/**
* Clears authors information and sets the {@code authorList} to {@code RepoConfiguration}.
*/
public void setAuthorList(List<Author> authorList) {
authorConfig.setAuthorList(authorList);
authorConfig.resetAuthorInformation(this.getIgnoreGlobList());
}
public Map<String, Author> getAuthorEmailsAndAliasesMap() {
return authorConfig.getAuthorEmailsAndAliasesMap();
}
public void setAuthorEmailsAndAliasesMap(Map<String, Author> authorEmailsAndAliasesMap) {
authorConfig.setAuthorEmailsAndAliasesMap(authorEmailsAndAliasesMap);
}
public void setFormats(List<FileType> formats) {
fileTypeManager.setFormats(formats);
}
private void setGroups(List<FileType> groups) {
fileTypeManager.setGroups(groups);
}
/**
* Returns all format or group types (depending on whether the user has specified a custom grouping).
*/
public List<FileType> getAllFileTypes() {
return fileTypeManager.getAllFileTypes();
}
public FileType getFileType(String fileName) {
return fileTypeManager.getFileType(fileName);
}
public FileTypeManager getFileTypeManager() {
return fileTypeManager;
}
public Date getSinceDate() {
return sinceDate;
}
public void setSinceDate(Date sinceDate) {
this.sinceDate = sinceDate;
}
public Date getUntilDate() {
return untilDate;
}
public void setUntilDate(Date untilDate) {
this.untilDate = untilDate;
}
public void setAuthorDisplayName(Author author, String displayName) {
authorConfig.setAuthorDisplayName(author, displayName);
}
public void addAuthorEmailsAndAliasesMapEntry(Author author, List<String> values) {
authorConfig.addAuthorEmailsAndAliasesMapEntry(author, values);
}
public String getDisplayName() {
return displayName;
}
public String getRepoName() {
return location.getRepoName();
}
public String getOutputFolderName() {
return outputFolderName;
}
public void setStandaloneConfigIgnored(boolean isStandaloneConfigIgnored) {
this.isStandaloneConfigIgnored = isStandaloneConfigIgnored;
}
public RepoLocation getLocation() {
return location;
}
public String getOrganization() {
return location.getOrganization();
}
public boolean isStandaloneConfigIgnored() {
return isStandaloneConfigIgnored;
}
public boolean isFormatsOverriding() {
return isFormatsOverriding;
}
public boolean isIgnoreGlobListOverriding() {
return isIgnoreGlobListOverriding;
}
public boolean isIgnoreCommitListOverriding() {
return isIgnoreCommitListOverriding;
}
}