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.

RebuildCommitGraph.java 10KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311
  1. /*
  2. * Copyright (C) 2009-2010, Google 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.pgm.debug;
  44. import static org.eclipse.jgit.lib.RefDatabase.ALL;
  45. import java.io.BufferedReader;
  46. import java.io.File;
  47. import java.io.FileInputStream;
  48. import java.io.IOException;
  49. import java.io.InputStreamReader;
  50. import java.text.MessageFormat;
  51. import java.util.ArrayList;
  52. import java.util.Date;
  53. import java.util.HashMap;
  54. import java.util.List;
  55. import java.util.ListIterator;
  56. import java.util.Map;
  57. import org.eclipse.jgit.errors.MissingObjectException;
  58. import org.eclipse.jgit.errors.ObjectWritingException;
  59. import org.eclipse.jgit.internal.storage.file.LockFile;
  60. import org.eclipse.jgit.lib.CommitBuilder;
  61. import org.eclipse.jgit.lib.Constants;
  62. import org.eclipse.jgit.lib.ObjectId;
  63. import org.eclipse.jgit.lib.ObjectIdRef;
  64. import org.eclipse.jgit.lib.ObjectInserter;
  65. import org.eclipse.jgit.lib.PersonIdent;
  66. import org.eclipse.jgit.lib.ProgressMonitor;
  67. import org.eclipse.jgit.lib.Ref;
  68. import org.eclipse.jgit.lib.RefUpdate;
  69. import org.eclipse.jgit.lib.RefWriter;
  70. import org.eclipse.jgit.lib.TextProgressMonitor;
  71. import org.eclipse.jgit.pgm.Command;
  72. import org.eclipse.jgit.pgm.TextBuiltin;
  73. import org.eclipse.jgit.pgm.internal.CLIText;
  74. import org.eclipse.jgit.revwalk.RevWalk;
  75. import org.kohsuke.args4j.Argument;
  76. import org.kohsuke.args4j.Option;
  77. /**
  78. * Recreates a repository from another one's commit graph.
  79. * <p>
  80. * <b>Do not run this on a repository unless you want to destroy it.</b>
  81. * <p>
  82. * To create the input files, in the source repository use:
  83. *
  84. * <pre>
  85. * git for-each-ref &gt;in.refs
  86. * git log --all '--pretty=format:%H %ct %P' &gt;in.dag
  87. * </pre>
  88. * <p>
  89. * Run the rebuild in either an empty repository, or a clone of the source. Any
  90. * missing commits (which might be the entire graph) will be created. All refs
  91. * will be modified to match the input exactly, which means some refs may be
  92. * deleted from the current repository.
  93. * <p>
  94. */
  95. @Command(usage = "usage_RebuildCommitGraph")
  96. class RebuildCommitGraph extends TextBuiltin {
  97. private static final String REALLY = "--destroy-this-repository"; //$NON-NLS-1$
  98. @Option(name = REALLY, usage = "usage_approveDestructionOfRepository")
  99. boolean really;
  100. @Argument(index = 0, required = true, metaVar = "metaVar_refs", usage = "usage_forEachRefOutput")
  101. File refList;
  102. @Argument(index = 1, required = true, metaVar = "metaVar_refs", usage = "usage_logAllPretty")
  103. File graph;
  104. private final ProgressMonitor pm = new TextProgressMonitor(errw);
  105. private Map<ObjectId, ObjectId> rewrites = new HashMap<ObjectId, ObjectId>();
  106. @Override
  107. protected void run() throws Exception {
  108. if (!really && !db.getRefDatabase().getRefs(ALL).isEmpty()) {
  109. File directory = db.getDirectory();
  110. String absolutePath = directory == null ? "null" //$NON-NLS-1$
  111. : directory.getAbsolutePath();
  112. errw.println(
  113. MessageFormat.format(CLIText.get().fatalThisProgramWillDestroyTheRepository
  114. , absolutePath, REALLY));
  115. throw die(CLIText.get().needApprovalToDestroyCurrentRepository);
  116. }
  117. if (!refList.isFile())
  118. throw die(MessageFormat.format(CLIText.get().noSuchFile, refList.getPath()));
  119. if (!graph.isFile())
  120. throw die(MessageFormat.format(CLIText.get().noSuchFile, graph.getPath()));
  121. recreateCommitGraph();
  122. detachHead();
  123. deleteAllRefs();
  124. recreateRefs();
  125. }
  126. private void recreateCommitGraph() throws IOException {
  127. final Map<ObjectId, ToRewrite> toRewrite = new HashMap<ObjectId, ToRewrite>();
  128. List<ToRewrite> queue = new ArrayList<ToRewrite>();
  129. try (RevWalk rw = new RevWalk(db);
  130. final BufferedReader br = new BufferedReader(
  131. new InputStreamReader(new FileInputStream(graph),
  132. Constants.CHARSET))) {
  133. String line;
  134. while ((line = br.readLine()) != null) {
  135. final String[] parts = line.split("[ \t]{1,}"); //$NON-NLS-1$
  136. final ObjectId oldId = ObjectId.fromString(parts[0]);
  137. try {
  138. rw.parseCommit(oldId);
  139. // We have it already. Don't rewrite it.
  140. continue;
  141. } catch (MissingObjectException mue) {
  142. // Fall through and rewrite it.
  143. }
  144. final long time = Long.parseLong(parts[1]) * 1000L;
  145. final ObjectId[] parents = new ObjectId[parts.length - 2];
  146. for (int i = 0; i < parents.length; i++) {
  147. parents[i] = ObjectId.fromString(parts[2 + i]);
  148. }
  149. final ToRewrite t = new ToRewrite(oldId, time, parents);
  150. toRewrite.put(oldId, t);
  151. queue.add(t);
  152. }
  153. }
  154. pm.beginTask("Rewriting commits", queue.size()); //$NON-NLS-1$
  155. try (ObjectInserter oi = db.newObjectInserter()) {
  156. final ObjectId emptyTree = oi.insert(Constants.OBJ_TREE,
  157. new byte[] {});
  158. final PersonIdent me = new PersonIdent("jgit rebuild-commitgraph", //$NON-NLS-1$
  159. "rebuild-commitgraph@localhost"); //$NON-NLS-1$
  160. while (!queue.isEmpty()) {
  161. final ListIterator<ToRewrite> itr = queue
  162. .listIterator(queue.size());
  163. queue = new ArrayList<ToRewrite>();
  164. REWRITE: while (itr.hasPrevious()) {
  165. final ToRewrite t = itr.previous();
  166. final ObjectId[] newParents = new ObjectId[t.oldParents.length];
  167. for (int k = 0; k < t.oldParents.length; k++) {
  168. final ToRewrite p = toRewrite.get(t.oldParents[k]);
  169. if (p != null) {
  170. if (p.newId == null) {
  171. // Must defer until after the parent is
  172. // rewritten.
  173. queue.add(t);
  174. continue REWRITE;
  175. } else {
  176. newParents[k] = p.newId;
  177. }
  178. } else {
  179. // We have the old parent object. Use it.
  180. //
  181. newParents[k] = t.oldParents[k];
  182. }
  183. }
  184. final CommitBuilder newc = new CommitBuilder();
  185. newc.setTreeId(emptyTree);
  186. newc.setAuthor(new PersonIdent(me, new Date(t.commitTime)));
  187. newc.setCommitter(newc.getAuthor());
  188. newc.setParentIds(newParents);
  189. newc.setMessage("ORIGINAL " + t.oldId.name() + "\n"); //$NON-NLS-1$ //$NON-NLS-2$
  190. t.newId = oi.insert(newc);
  191. rewrites.put(t.oldId, t.newId);
  192. pm.update(1);
  193. }
  194. }
  195. oi.flush();
  196. }
  197. pm.endTask();
  198. }
  199. private static class ToRewrite {
  200. final ObjectId oldId;
  201. final long commitTime;
  202. final ObjectId[] oldParents;
  203. ObjectId newId;
  204. ToRewrite(final ObjectId o, final long t, final ObjectId[] p) {
  205. oldId = o;
  206. commitTime = t;
  207. oldParents = p;
  208. }
  209. }
  210. private void detachHead() throws IOException {
  211. final String head = db.getFullBranch();
  212. final ObjectId id = db.resolve(Constants.HEAD);
  213. if (!ObjectId.isId(head) && id != null) {
  214. final LockFile lf;
  215. lf = new LockFile(new File(db.getDirectory(), Constants.HEAD));
  216. if (!lf.lock())
  217. throw new IOException(MessageFormat.format(CLIText.get().cannotLock, Constants.HEAD));
  218. lf.write(id);
  219. if (!lf.commit())
  220. throw new IOException(CLIText.get().cannotDeatchHEAD);
  221. }
  222. }
  223. private void deleteAllRefs() throws Exception {
  224. final RevWalk rw = new RevWalk(db);
  225. Map<String, Ref> refs = db.getRefDatabase().getRefs(ALL);
  226. for (final Ref r : refs.values()) {
  227. if (Constants.HEAD.equals(r.getName()))
  228. continue;
  229. final RefUpdate u = db.updateRef(r.getName());
  230. u.setForceUpdate(true);
  231. u.delete(rw);
  232. }
  233. }
  234. private void recreateRefs() throws Exception {
  235. final Map<String, Ref> refs = computeNewRefs();
  236. new RefWriter(refs.values()) {
  237. @Override
  238. protected void writeFile(final String name, final byte[] content)
  239. throws IOException {
  240. final File file = new File(db.getDirectory(), name);
  241. final LockFile lck = new LockFile(file);
  242. if (!lck.lock())
  243. throw new ObjectWritingException(MessageFormat.format(CLIText.get().cantWrite, file));
  244. try {
  245. lck.write(content);
  246. } catch (IOException ioe) {
  247. throw new ObjectWritingException(MessageFormat.format(CLIText.get().cantWrite, file));
  248. }
  249. if (!lck.commit())
  250. throw new ObjectWritingException(MessageFormat.format(CLIText.get().cantWrite, file));
  251. }
  252. }.writePackedRefs();
  253. }
  254. private Map<String, Ref> computeNewRefs() throws IOException {
  255. final Map<String, Ref> refs = new HashMap<String, Ref>();
  256. try (RevWalk rw = new RevWalk(db);
  257. BufferedReader br = new BufferedReader(
  258. new InputStreamReader(new FileInputStream(refList),
  259. Constants.CHARSET))) {
  260. String line;
  261. while ((line = br.readLine()) != null) {
  262. final String[] parts = line.split("[ \t]{1,}"); //$NON-NLS-1$
  263. final ObjectId origId = ObjectId.fromString(parts[0]);
  264. final String type = parts[1];
  265. final String name = parts[2];
  266. ObjectId id = rewrites.get(origId);
  267. if (id == null)
  268. id = origId;
  269. try {
  270. rw.parseAny(id);
  271. } catch (MissingObjectException mue) {
  272. if (!Constants.TYPE_COMMIT.equals(type)) {
  273. errw.println(MessageFormat.format(CLIText.get().skippingObject, type, name));
  274. continue;
  275. }
  276. throw new MissingObjectException(id, type);
  277. }
  278. refs.put(name, new ObjectIdRef.Unpeeled(Ref.Storage.PACKED,
  279. name, id));
  280. }
  281. }
  282. return refs;
  283. }
  284. }