This repository has been archived on 2017-04-03. You can view files and clone it, but cannot push or open issues/pull-requests.
blog_post_tests/20101101154302.blog

75 lines
12 KiB
Plaintext

Announcing reposurgeon – a tool for the good new days
<p>I&#8217;ve been mostly blog-silent for the last week because I&#8217;ve been working my tail off on a new project. It&#8217;s <a href="http://www.catb.org/~esr/reposurgeon">reposurgeon</a>, a tool for performing surgery on repository histories, and there are several interesting things to note about it.</p>
<p><span id="more-2718"></span></p>
<p>One of my regular guests on the blog, apparently a younger programmer, recently left a comment regretting the old days he wasn&#8217;t there for. He reports feeling stifled by the experience of Googling every time he has a nifty programming idea and discovering that someone else has already done it.</p>
<p>But with new days come new challenges, and new opportunities. Reposurgeon exploits a possibility that didn&#8217;t exist until quite recently; there has never been anything quite like it before, though there was were very partial precedents in svndumpfilter and my own svnsquash/svncutter tool.</p>
<p>reposurgeon is a repository-history editor. With it, you can edit old comments and metadata, remove junk commits (of the sort frequently generated by repository conversion tools such as cvs2svn), and perform various other operations that version-control systems (VCSes) don&#8217;t want to let you do.</p>
<p>I wrote it because I&#8217;ve been doing a bunch of repository conversions recently and I wanted a way to deal with the crufty artifacts those tend to create. But there are other obvious uses; one would be expunging repo contents that&#8217;s got some intellectual-property issue from the history, so you&#8217;re not re-infringing every time somebody clones the repository&#8230;</p>
<p>And when I say &#8220;editor&#8221;, I mean a tool general enough to have uses I&#8217;m not anticipating. It has a rather powerful little minilanguage in it for specifying selection sets. It lets you dump the metadata from the VCS history (committer, commit date, and comment text) in a textual form that you can edit and feed back into to it to modify the history.</p>
<p>Something like this, though limited to one specific VCS, could have been written before now. But the astute reader will note that I haven&#8217;t mentioned a specific VCS. In fact, reposurgeon can operate on histories created by RCS, CVS, Subversion, git, Mercurial, bzr, and probably several other VCSes about which I haven&#8217;t the faintest clue.</p>
<p>Yes, you may boggle now. If you are wondering where in the fleeping frack I get off claiming to support version-control systems I admit I don&#8217;t know anything about, this shows you are paying attention. It has been rumored that I am a clever fellow, but what, what, *what*? Right. You deserve an explanation and shall have one.</p>
<p>The trick that enables reposurgeon to do its magic is that it only fakes editing repositories. What it actually edits is git-fast-import command streams.</p>
<p>Aha! Some of you are already nodding knowingly. For the rest of the audience, a &#8220;git-fast-import command stream&#8221; is a format Linus Torvalds and friends invented to flatten a git repository history into one big file that can be used to reconstitute the repository by another instance of git.</p>
<p>This is meant to enable writing import tools; the moment you have an exporter that can generate this format from (say) Mercurial or bzr, you can transcode repositories from the other system to git as easily as you pour water from one cup to another. (Well. Some older systems that use only local usernames as committer IDs rather than full email addresses have an issue, but it&#8217;s easily worked around in a variety of ways.) And exporters are easy to write; if your special VCS has a command-line interface at all, odds are building an exporter is about a day&#8217;s work in the scripting language of your choice.</p>
<p>This stream format has useful properties. It&#8217;s easy to parse and self-describing. But the really <em>important</em> property is that it expresses an ontology or data model that is both very simple and general enough to capture the state of repositories made not just with git but with other VCSes. It has to, or it wouldn&#8217;t be good enough to support importers &#8211; too much state would get lost in transition.</p>
<p>So, lots of git fans have written exporters for a huge range of VCSes. Not to be outdone, fans of other VCSes have written importers for their systems. They don&#8217;t want all the migration to be one-way, you see. Lossless import capability makes a VCS a potential destination, giving it a competitive advantage over systems that can only export projects away from themselves.</p>
<p>Look what&#8217;s happening here! Without necessarily intending it, the git crew have created a de-facto-standard interchange format for passing around version-control histories. This is huge. Because what it actually does is decouple the whole I&#8217;ve-got-a-project-history thing from any individual version-control system. </p>
<p>Watch for second-order consequences of this in the future. In particular, I predict that VCSes will increasingly converge on supporting <em>exactly the set of abstractions in a fast-import stream</em>. They&#8217;re a good enough set, and being interoperable will prove a powerful lure.</p>
<p>While the rumor that I&#8217;m a clever fellow isn&#8217;t <em>entirely</em> false, the most important knack I have is for seeing the stupid-obvious possibilities that have been sitting under peoples&#8217; noses all along &#8211; in this case, the possibility for a VCS-independent history-editing tool. What reposurgeon actually does is take a fast-import stream in one end, allow you to hack it in various interesting ways, then ship the modified repo out its other end as a modified fast-import stream.</p>
<p>It can <em>look</em> like you&#8217;re editing a repository, sure. But that&#8217;s because reposurgeon has a method table in it that&#8217;s indexed by VCS type and contains a small handful of command-line templates for each of them, including an importer command and an exporter command. And that, basically, is it; that handful of commands is all reposurgeon knows about any specific VCS, and probably all it will ever need to know. Adding reposurgeon support for new VCSes is <em>easy</em> and doesn&#8217;t require changing any executable code at all.</p>
<p>If you want to work with a VCS that isn&#8217;t in the list, use the exporter of your choice to dump to a stream file, then tell reposurgeon to load from that. When you&#8217;re done, tell reposurgeon to write the stream to another file, then use whatever importer you like to rebuild a repo from it.</p>
<p>There is one significant drawback to operating this way. In a system like git or Mercurial that uses hashes of a commit&#8217;s content to identify it, the IDs of anything that&#8217;s downstream of a commit you alter or delete will change. This will tend to hose people trying to sync from the modified repo. You do not, repeat <em>not</em>, want to use reposurgeon on a publicly-visible repo &#8211; not unless you can get everyone to re-clone it in a clean directory afterwards.</p>
<p>But this isn&#8217;t reposurgeon&#8217;s fault; any surgery tool would have the same issue. In a way, that&#8217;s liberating; metadata that no surgery tool could possibly preserve even in principle is metadata that reposurgeon doesn&#8217;t have to worry about preserving.</p>
<p>There are a couple other fun things about reposurgeon. I wrote and documented the whole thing in eight days from a standing start, and if after <a href="http://www.catb.org/esr/reposurgeon/reposurgeon.html">seeing the manual page</a> you think that&#8217;s a lot of work for eight days you&#8217;re not wrong. I was able to be that productive because (a) I didn&#8217;t pause to reinvent any wheels, and (b) stuck to a brutally simple, minimalist design.</p>
<p>An example of not reinventing wheels is how I support metadata editing. Look at the following session transcript; I&#8217;ve added some whitespace and comments (beginning with ;;) for clarity:</p>
<pre>
esr@snark:~/WWW/reposurgeon$ reposurgeon
reposurgeon% read
reposurgeon: from git repo at '.'......(0.20 sec) done.
;; That's the repo being grabbed
reposurgeon% list 426
426 2010-11-01T00:47:57 Documentation improvement.
;; That's a summary listing of event 426, a commit
reposurgeon% write 426
commit refs/heads/master
mark :425
author Eric S. Raymond <esr @thyrsus.com> 1288572477 -0400
committer Eric S. Raymond </esr><esr @thyrsus.com> 1288572477 -0400
data 27
Documentation improvement.
from :423
M 100755 :424 reposurgeon
;; That's how it looks as a fragment of a git-import stream
reposurgeon% mailbox_out 426
------------------------------------------------------------------------------
Event-Number: 426
Author: Eric S. Raymond </esr><esr @thyrsus.com>
Author-Date: Mon 01 Nov 2010 00:47:57 -0400
Committer: Eric S. Raymond </esr><esr @thyrsus.com>
Committer-Date: Mon 01 Nov 2010 00:47:57 -0400
Documentation improvement.
;; And that's how it looks when it's been mailboxized.
</esr></pre>
<p>That &#8216;mailboxized&#8217; version is is the form you get to edit. It contains all the metadata you can safely modify and nothing that you can&#8217;t, with the (unavoidable) exception of the event number. In fact, reposurgeon has an &#8220;edit&#8221; command you can use that grabs as much of the repository&#8217;s metadata as you want, launches an editor session, then de-mailboxizes what you leave when you exit your editor and applies the changed bits.</p>
<p>The point here is that I didn&#8217;t invent anything I didn&#8217;t have to. Reposurgeon isn&#8217;t some glossy idiotic GUI thing where you have to edit commit metadata via a form full of clicky-boxes; you get to use your own editor and deal with a data format as simple as an email message.</p>
<p>Reposurgeon is a command-line tool in the classic Unix style. (Yeah, I wrote a book about that once.) Part of the reason I wrote it that way is that it meant I got to use the Python cmd.Cmd class as my interpreter framework &#8211; once again, not inventing anything I didn&#8217;t have to. But I would have done it anyway, because command-line tools can be <em>scripted</em>. And that was a goal.</p>
<p>(This project is, by the way, reason #2317 why I heart Python. The ready-to-use convenience of the cmd.Cmd class, the email parser, and shlex were absolutely essential to getting this done without bogging me down in low-level implementation details.)</p>
<p>Back to scripting. Here&#8217;s a command I could have used to generate that transcript:</p>
<pre>
reposurgeon 'verbose 1' read 'list 42' 'write 426' 'mailbox_out 426'
</pre>
<p>See that? Reposurgeon actually improves on the classic style by having no command-line options. <em>None.</em> Instead&#8230;the command-line arguments are interpreted exactly the same way user input typed to the prompt would be. There&#8217;s only one specially-interpreted command-line cookie; &#8216;-&#8216;, which means &#8220;run the interactive interpreter&#8217;. </p>
<p>So, for example, I can say &#8220;reposurgeon read list -&#8221; to my shell prompt; reposurgeon will cheerfully read the repo in the current directory, list its commits and tags, then hand me a prompt. This is what I mean by brutally (and effectively) simple.</p>
<p>It&#8217;s not perfect, of course. I&#8217;ve only tested it on small repos with linear histories, which is why I&#8217;m calling the initial release 0.1; it needs to be torture-tested using large repos with tricky topologies, and it needs to be tested on things that aren&#8217;t git. There are some operations I have planned but haven&#8217;t implemented yet, like doing a topological cut of a repo into two repos that keeps the rest of the branch structure intact.</p>
<p>But it&#8217;s a good start. It&#8217;s already quite useful for my original goal, cleaning up cruft from repo conversions. The core classes are solid. The expression language works. The code is properly factored. It should make a good platform for implementing more complex surgical operations like history merges.</p>
<p>Best of all, every time I add a capability to the tool, it will support every single VCS, now and in the future, that speaks the import-stream format. And the fact that this is even conceivable is a pretty good reason not to pine for the old days.</p>
<p>UPDATE: Thanks to Russ Nelson&#8217;s suggestion, the project now travels under <a href="http://www.catb.org/esr/reposurgeon/">the sign of the blue sturgeon</a>. Heh.</p>