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 10.0KB

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