You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BlameCommand.java 6.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229
  1. /*
  2. * Copyright (C) 2011, GitHub Inc.
  3. * and other copyright owners as documented in the project's IP log.
  4. *
  5. * This program and the accompanying materials are made available
  6. * under the terms of the Eclipse Distribution License v1.0 which
  7. * accompanies this distribution, is reproduced below, and is
  8. * available at http://www.eclipse.org/org/documents/edl-v10.php
  9. *
  10. * All rights reserved.
  11. *
  12. * Redistribution and use in source and binary forms, with or
  13. * without modification, are permitted provided that the following
  14. * conditions are met:
  15. *
  16. * - Redistributions of source code must retain the above copyright
  17. * notice, this list of conditions and the following disclaimer.
  18. *
  19. * - Redistributions in binary form must reproduce the above
  20. * copyright notice, this list of conditions and the following
  21. * disclaimer in the documentation and/or other materials provided
  22. * with the distribution.
  23. *
  24. * - Neither the name of the Eclipse Foundation, Inc. nor the
  25. * names of its contributors may be used to endorse or promote
  26. * products derived from this software without specific prior
  27. * written permission.
  28. *
  29. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  30. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  31. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  33. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  34. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  35. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  36. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  37. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  38. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  39. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  40. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  41. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  42. */
  43. package org.eclipse.jgit.api;
  44. import java.io.File;
  45. import java.io.IOException;
  46. import java.util.ArrayList;
  47. import java.util.Collection;
  48. import java.util.Collections;
  49. import org.eclipse.jgit.api.errors.GitAPIException;
  50. import org.eclipse.jgit.api.errors.JGitInternalException;
  51. import org.eclipse.jgit.blame.BlameGenerator;
  52. import org.eclipse.jgit.blame.BlameResult;
  53. import org.eclipse.jgit.diff.DiffAlgorithm;
  54. import org.eclipse.jgit.diff.RawText;
  55. import org.eclipse.jgit.diff.RawTextComparator;
  56. import org.eclipse.jgit.dircache.DirCache;
  57. import org.eclipse.jgit.lib.AnyObjectId;
  58. import org.eclipse.jgit.lib.Constants;
  59. import org.eclipse.jgit.lib.ObjectId;
  60. import org.eclipse.jgit.lib.Repository;
  61. /**
  62. * Blame command for building a {@link BlameResult} for a file path.
  63. */
  64. public class BlameCommand extends GitCommand<BlameResult> {
  65. private String path;
  66. private DiffAlgorithm diffAlgorithm;
  67. private RawTextComparator textComparator;
  68. private ObjectId startCommit;
  69. private Collection<ObjectId> reverseEndCommits;
  70. private Boolean followFileRenames;
  71. /**
  72. * @param repo
  73. */
  74. public BlameCommand(Repository repo) {
  75. super(repo);
  76. }
  77. /**
  78. * Set file path.
  79. *
  80. * @param filePath
  81. * file path (with <code>/</code> as separator)
  82. * @return this command
  83. */
  84. public BlameCommand setFilePath(String filePath) {
  85. this.path = filePath;
  86. return this;
  87. }
  88. /**
  89. * Set diff algorithm
  90. *
  91. * @param diffAlgorithm
  92. * @return this command
  93. */
  94. public BlameCommand setDiffAlgorithm(DiffAlgorithm diffAlgorithm) {
  95. this.diffAlgorithm = diffAlgorithm;
  96. return this;
  97. }
  98. /**
  99. * Set raw text comparator
  100. *
  101. * @param textComparator
  102. * @return this command
  103. */
  104. public BlameCommand setTextComparator(RawTextComparator textComparator) {
  105. this.textComparator = textComparator;
  106. return this;
  107. }
  108. /**
  109. * Set start commit id
  110. *
  111. * @param commit
  112. * @return this command
  113. */
  114. public BlameCommand setStartCommit(AnyObjectId commit) {
  115. this.startCommit = commit.toObjectId();
  116. return this;
  117. }
  118. /**
  119. * Enable (or disable) following file renames.
  120. * <p>
  121. * If true renames are followed using the standard FollowFilter behavior
  122. * used by RevWalk (which matches {@code git log --follow} in the C
  123. * implementation). This is not the same as copy/move detection as
  124. * implemented by the C implementation's of {@code git blame -M -C}.
  125. *
  126. * @param follow
  127. * enable following.
  128. * @return {@code this}
  129. */
  130. public BlameCommand setFollowFileRenames(boolean follow) {
  131. followFileRenames = Boolean.valueOf(follow);
  132. return this;
  133. }
  134. /**
  135. * Configure the command to compute reverse blame (history of deletes).
  136. *
  137. * @param start
  138. * oldest commit to traverse from. The result file will be loaded
  139. * from this commit's tree.
  140. * @param end
  141. * most recent commit to stop traversal at. Usually an active
  142. * branch tip, tag, or HEAD.
  143. * @return {@code this}
  144. * @throws IOException
  145. * the repository cannot be read.
  146. */
  147. public BlameCommand reverse(AnyObjectId start, AnyObjectId end)
  148. throws IOException {
  149. return reverse(start, Collections.singleton(end.toObjectId()));
  150. }
  151. /**
  152. * Configure the generator to compute reverse blame (history of deletes).
  153. *
  154. * @param start
  155. * oldest commit to traverse from. The result file will be loaded
  156. * from this commit's tree.
  157. * @param end
  158. * most recent commits to stop traversal at. Usually an active
  159. * branch tip, tag, or HEAD.
  160. * @return {@code this}
  161. * @throws IOException
  162. * the repository cannot be read.
  163. */
  164. public BlameCommand reverse(AnyObjectId start, Collection<ObjectId> end)
  165. throws IOException {
  166. startCommit = start.toObjectId();
  167. reverseEndCommits = new ArrayList<ObjectId>(end);
  168. return this;
  169. }
  170. /**
  171. * Generate a list of lines with information about when the lines were
  172. * introduced into the file path.
  173. *
  174. * @return list of lines
  175. */
  176. public BlameResult call() throws GitAPIException {
  177. checkCallable();
  178. BlameGenerator gen = new BlameGenerator(repo, path);
  179. try {
  180. if (diffAlgorithm != null)
  181. gen.setDiffAlgorithm(diffAlgorithm);
  182. if (textComparator != null)
  183. gen.setTextComparator(textComparator);
  184. if (followFileRenames != null)
  185. gen.setFollowFileRenames(followFileRenames.booleanValue());
  186. if (reverseEndCommits != null)
  187. gen.reverse(startCommit, reverseEndCommits);
  188. else if (startCommit != null)
  189. gen.push(null, startCommit);
  190. else {
  191. gen.push(null, repo.resolve(Constants.HEAD));
  192. if (!repo.isBare()) {
  193. DirCache dc = repo.readDirCache();
  194. int entry = dc.findEntry(path);
  195. if (0 <= entry)
  196. gen.push(null, dc.getEntry(entry).getObjectId());
  197. File inTree = new File(repo.getWorkTree(), path);
  198. if (inTree.isFile())
  199. gen.push(null, new RawText(inTree));
  200. }
  201. }
  202. return gen.computeBlameResult();
  203. } catch (IOException e) {
  204. throw new JGitInternalException(e.getMessage(), e);
  205. } finally {
  206. gen.release();
  207. }
  208. }
  209. }