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
400 lines (326 loc) · 13.3 KB
/
RepoConfiguration.java
File metadata and controls
400 lines (326 loc) · 13.3 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
package reposense.model;
import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import java.nio.file.Files;
import java.nio.file.InvalidPathException;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import java.util.TreeMap;
import java.util.logging.Logger;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
import reposense.parser.InvalidLocationException;
import reposense.system.LogsManager;
import reposense.util.FileUtil;
public class RepoConfiguration {
public static final String DEFAULT_BRANCH = "HEAD";
private static final Logger logger = LogsManager.getLogger(RepoConfiguration.class);
private static final String MESSAGE_ILLEGAL_FORMATS = "The provided formats, %s, contains illegal characters.";
private static final String FORMAT_VALIDATION_REGEX = "[A-Za-z0-9]+";
private static final String GIT_LINK_SUFFIX = ".git";
private static final Pattern GIT_REPOSITORY_LOCATION_PATTERN =
Pattern.compile("^.*github.com\\/(?<org>.+?)\\/(?<repoName>.+?)\\.git$");
private static final String COMMIT_HASH_REGEX = "^[0-9a-f]+$";
private static final String INVALID_COMMIT_HASH_MESSAGE =
"The provided commit hash, %s, contains illegal characters.";
private String location;
private String organization;
private String repoName;
private String branch;
private String displayName;
private Date sinceDate;
private Date untilDate;
private transient boolean needCheckStyle = false;
private transient boolean annotationOverwrite = true;
private transient List<String> formats;
private transient int commitNum = 1;
private transient List<String> ignoreGlobList = new ArrayList<>();
private transient List<Author> authorList = new ArrayList<>();
private transient TreeMap<String, Author> authorAliasMap = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
private transient Map<Author, String> authorDisplayNameMap = new HashMap<>();
private transient boolean isStandaloneConfigIgnored;
private transient List<String> ignoreCommitList;
/**
* @throws InvalidLocationException if {@code location} cannot be represented by a {@code URL} or {@code Path}.
*/
public RepoConfiguration(String location) throws InvalidLocationException {
this(location, DEFAULT_BRANCH);
}
/**
* @throws InvalidLocationException if {@code location} cannot be represented by a {@code URL} or {@code Path}.
*/
public RepoConfiguration(String location, String branch) throws InvalidLocationException {
this(location, branch, Collections.emptyList(), Collections.emptyList(), false, Collections.emptyList());
}
/**
* @throws InvalidLocationException if {@code location} cannot be represented by a {@code URL} or {@code Path}.
*/
public RepoConfiguration(String location, String branch, List<String> formats, List<String> ignoreGlobList,
boolean isStandaloneConfigIgnored, List<String> ignoreCommitList) throws InvalidLocationException {
this.location = location;
this.branch = branch;
this.ignoreGlobList = ignoreGlobList;
this.isStandaloneConfigIgnored = isStandaloneConfigIgnored;
this.formats = formats;
validateIgnoreCommits(ignoreCommitList);
this.ignoreCommitList = ignoreCommitList;
verifyLocation(location);
Matcher matcher = GIT_REPOSITORY_LOCATION_PATTERN.matcher(location);
if (matcher.matches()) {
organization = matcher.group("org");
repoName = matcher.group("repoName");
displayName = organization + "_" + repoName + "_" + branch;
} else {
repoName = Paths.get(location).getFileName().toString().replace(GIT_LINK_SUFFIX, "");
displayName = repoName + "_" + branch;
}
}
public static void setDatesToRepoConfigs(
List<RepoConfiguration> configs, Optional<Date> sinceDate, Optional<Date> untilDate) {
for (RepoConfiguration config : configs) {
config.setSinceDate(sinceDate.orElse(null));
config.setUntilDate(untilDate.orElse(null));
}
}
/**
* Merges a {@code RepoConfiguration} from {@code repoConfigs} with another from {@code authorConfigs}
* if {@code location} and {@code branch} matches.
*/
public static void merge(List<RepoConfiguration> repoConfigs, List<RepoConfiguration> authorConfigs) {
for (RepoConfiguration authorConfig : authorConfigs) {
int index = repoConfigs.indexOf(authorConfig);
if (index == -1) {
logger.warning(String.format(
"Repository %s is not found in repo-config.csv.", authorConfig.getLocation()));
continue;
}
RepoConfiguration repoConfig = repoConfigs.get(index);
repoConfig.setAuthorList(authorConfig.getAuthorList());
repoConfig.setAuthorDisplayNameMap(authorConfig.getAuthorDisplayNameMap());
repoConfig.setAuthorAliasMap(authorConfig.getAuthorAliasMap());
}
}
/**
* Sets {@code formats} to {@code RepoConfiguration} in {@code configs} if its format list is empty.
*/
public static void setFormatsToRepoConfigs(List<RepoConfiguration> configs, List<String> formats) {
configs.stream().filter(config -> config.getFormats().isEmpty())
.forEach(config -> config.setFormats(formats));
}
/**
* Clears authors information and use the information provided from {@code standaloneConfig}.
*/
public void update(StandaloneConfig standaloneConfig) {
List<Author> newAuthorList = new ArrayList<>();
TreeMap<String, Author> newAuthorAliasMap = new TreeMap<>(String.CASE_INSENSITIVE_ORDER);
Map<Author, String> newAuthorDisplayNameMap = new HashMap<>();
List<String> newIgnoreGlobList = standaloneConfig.getIgnoreGlobList();
for (StandaloneAuthor sa : standaloneConfig.getAuthors()) {
Author author = new Author(sa);
author.appendIgnoreGlobList(newIgnoreGlobList);
newAuthorList.add(author);
newAuthorDisplayNameMap.put(author, author.getDisplayName());
List<String> aliases = new ArrayList<>(author.getAuthorAliases());
aliases.add(author.getGitId());
aliases.forEach(alias -> newAuthorAliasMap.put(alias, author));
}
validateFormats(standaloneConfig.getFormats());
validateIgnoreCommits(standaloneConfig.getIgnoreCommitList());
// only assign the new values when all the fields in {@code standaloneConfig} pass the validations.
authorList = newAuthorList;
authorAliasMap = newAuthorAliasMap;
authorDisplayNameMap = newAuthorDisplayNameMap;
ignoreGlobList = newIgnoreGlobList;
formats = standaloneConfig.getFormats();
ignoreCommitList = standaloneConfig.getIgnoreCommitList();
}
public String getRepoRoot() {
String path = FileUtil.REPOS_ADDRESS + File.separator + repoName + File.separator;
if (!repoName.isEmpty()) {
path += repoName + File.separator;
}
return path;
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if (!(other instanceof RepoConfiguration)) {
return false;
}
return hashCode() == ((RepoConfiguration) other).hashCode();
}
@Override
public int hashCode() {
return Objects.hash(location, branch);
}
public Map<Author, String> getAuthorDisplayNameMap() {
return authorDisplayNameMap;
}
public void setAuthorDisplayNameMap(Map<Author, String> authorDisplayNameMap) {
this.authorDisplayNameMap = authorDisplayNameMap;
}
public int getCommitNum() {
return commitNum;
}
public void setCommitNum(int commitNum) {
this.commitNum = commitNum;
}
public boolean isNeedCheckStyle() {
return needCheckStyle;
}
public void setNeedCheckStyle(boolean needCheckStyle) {
this.needCheckStyle = needCheckStyle;
}
public String getBranch() {
return branch;
}
public void setBranch(String branch) {
updateDisplayName(branch);
this.branch = branch;
}
public void updateDisplayName(String branch) {
this.displayName = displayName.substring(0, displayName.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<String> getIgnoreCommitList() {
return ignoreCommitList;
}
public void setIgnoreCommitList(List<String> ignoreCommitList) {
this.ignoreCommitList = ignoreCommitList;
}
public List<Author> getAuthorList() {
return authorList;
}
public void addAuthor(Author author) {
authorList.add(author);
}
public boolean containsAuthor(Author author) {
return authorList.contains(author);
}
public void setAuthorList(List<Author> authorList) {
this.authorList = authorList;
authorList.forEach(author -> {
// Set GitHub Id as default alias
addAuthorAliases(author, Arrays.asList(author.getGitId()));
setAuthorDisplayName(author, author.getDisplayName());
// Propagate RepoConfiguration IgnoreGlobList to Author
author.appendIgnoreGlobList(this.getIgnoreGlobList());
});
}
public TreeMap<String, Author> getAuthorAliasMap() {
return authorAliasMap;
}
public void setAuthorAliasMap(TreeMap<String, Author> authorAliasMap) {
this.authorAliasMap = authorAliasMap;
}
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 List<String> getFormats() {
return formats;
}
public void setFormats(List<String> formats) {
this.formats = formats;
}
public void setAuthorDisplayName(Author author, String displayName) {
authorDisplayNameMap.put(author, displayName);
}
public void addAuthorAliases(Author author, List<String> aliases) {
aliases.forEach(alias -> authorAliasMap.put(alias, author));
}
public String getDisplayName() {
return displayName;
}
public String getLocation() {
return location;
}
public String getRepoName() {
return repoName;
}
public boolean isStandaloneConfigIgnored() {
return isStandaloneConfigIgnored;
}
/**
* Verifies {@code location} can be presented as a {@code URL} or {@code Path}.
* @throws InvalidLocationException if otherwise.
*/
private void verifyLocation(String location) throws InvalidLocationException {
boolean isValidPathLocation = false;
boolean isValidGitUrl = false;
try {
Path pathLocation = Paths.get(location);
isValidPathLocation = Files.exists(pathLocation);
} catch (InvalidPathException ipe) {
// Ignore exception
}
try {
new URL(location);
isValidGitUrl = location.endsWith(GIT_LINK_SUFFIX);
} catch (MalformedURLException mue) {
// Ignore exception
}
if (!isValidPathLocation && !isValidGitUrl) {
throw new InvalidLocationException(location + " is an invalid location.");
}
}
/**
* Returns true if the given {@code value} is a valid format.
*/
private static boolean isValidFormat(String value) {
return value.matches(FORMAT_VALIDATION_REGEX);
}
/**
* Checks that all the strings in the {@code formats} are in valid formats.
* @throws IllegalArgumentException if any of the values do not meet the criteria.
*/
private static void validateFormats(List<String> formats) throws IllegalArgumentException {
for (String format: formats) {
if (!isValidFormat(format)) {
throw new IllegalArgumentException(String.format(MESSAGE_ILLEGAL_FORMATS, format));
}
}
}
/**
* Checks that all the strings in the {@code ignoreCommitList} are in valid formats.
* @throws IllegalArgumentException if any of the values do not meet the criteria.
*/
private static void validateIgnoreCommits(List<String> ignoreCommitList) throws IllegalArgumentException {
for (String commitHash : ignoreCommitList) {
if (!commitHash.matches(COMMIT_HASH_REGEX)) {
throw new IllegalArgumentException(String.format(INVALID_COMMIT_HASH_MESSAGE, commitHash));
}
}
}
}