本文整理汇总了Java中org.eclipse.jgit.diff.DiffEntry.getPath方法的典型用法代码示例。如果您正苦于以下问题:Java DiffEntry.getPath方法的具体用法?Java DiffEntry.getPath怎么用?Java DiffEntry.getPath使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.jgit.diff.DiffEntry
的用法示例。
在下文中一共展示了DiffEntry.getPath方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: checkDiffEmpty
import org.eclipse.jgit.diff.DiffEntry; //导入方法依赖的package包/类
private void checkDiffEmpty(List<DiffEntry> diffs){
if (diffs.isEmpty()) {
System.out.println("No diff");
} else {
System.out.println("Check if there are plugins to update");
for (DiffEntry entry : diffs) {
String editFilePath = entry.getPath(DiffEntry.Side.NEW);
if (editFilePath.contains("neembuu-uploader-uploaders/src/neembuu/uploader/uploaders")) {
AbbreviatedObjectId newId = entry.getNewId();
String sha = newId.name();
pluginsToUpdate.add(new PluginToUpdate(new File(gitDirectory, editFilePath), sha));
System.out.println(sha + " -> " + editFilePath);
}
}
}
}
示例2: walkFilesInCommit
import org.eclipse.jgit.diff.DiffEntry; //导入方法依赖的package包/类
private void walkFilesInCommit(
Git gitClient,
RevCommit commit,
List<SourceCodeFileAnalyzerPlugin> analyzers,
MetricsProcessor metricsProcessor)
throws IOException {
commit = CommitUtils.getCommit(gitClient.getRepository(), commit.getId());
logger.info("starting analysis of commit {}", commit.getName());
DiffFormatter diffFormatter = new DiffFormatter(DisabledOutputStream.INSTANCE);
diffFormatter.setRepository(gitClient.getRepository());
diffFormatter.setDiffComparator(RawTextComparator.DEFAULT);
diffFormatter.setDetectRenames(true);
ObjectId parentId = null;
if (commit.getParentCount() > 0) {
// TODO: support multiple parents
parentId = commit.getParent(0).getId();
}
List<DiffEntry> diffs = diffFormatter.scan(parentId, commit);
for (DiffEntry diff : diffs) {
String filePath = diff.getPath(DiffEntry.Side.NEW);
byte[] fileContent =
BlobUtils.getRawContent(gitClient.getRepository(), commit.getId(), filePath);
FileMetrics metrics = fileAnalyzer.analyzeFile(analyzers, filePath, fileContent);
FileMetricsWithChangeType metricsWithChangeType =
new FileMetricsWithChangeType(
metrics, changeTypeMapper.jgitToCoderadar(diff.getChangeType()));
metricsProcessor.processMetrics(metricsWithChangeType, gitClient, commit.getId(), filePath);
}
metricsProcessor.onCommitFinished(gitClient, commit.getId());
}