當前位置: 首頁>>代碼示例>>Java>>正文


Java DiffEntry.getPath方法代碼示例

本文整理匯總了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);
            }
        }
    }
}
 
開發者ID:Neembuu-Uploader,項目名稱:neembuu-uploader,代碼行數:17,代碼來源:UpdaterGenerator.java

示例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());
}
 
開發者ID:reflectoring,項目名稱:coderadar,代碼行數:33,代碼來源:AnalyzingCommitProcessor.java


注:本文中的org.eclipse.jgit.diff.DiffEntry.getPath方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。