本文整理匯總了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());
}