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/20130108085743.blog

17 lines
3.6 KiB
Plaintext

Reposurgeon Killed The Radio Stars!
<p>The 2.13 release of <a href="http://www.catb.org/~esr/reposurgeon">reposurgeon</a> has in it maybe the coolest new feature I&#8217;ve ever implemented in five minutes of programming &#8211; graphical visualization of a repository&#8217;s commit DAG.</p>
<p><span id="more-4748"></span></p>
<p>In yet another episode of &#8220;The Awesome Power of Combining Unix Tools&#8221;, the way this actually works is that the new &#8220;graph&#8221; command emits to standard output a description of the commit graph in the DOT language used by the open-source <a href="http://www.graphviz.org/">graphviz</a> suite. To turn this into an image view, just create the following little reposurgeon script and call it something like &#8220;show&#8221;:</p>
<literallayout language="bash">
graph $% &gt;/tmp/foo$$<br />
shell dot &lt;/tmp/foo$$ -Tpng | display -; rm /tmp/foo$$
</literallayout>
</p>
<p>Now you can say &#8220;script show&#8221;; reposurgeon will call the graph command, redirecting the output to a tempfile (the reposurgeon interpreter knows that $$ in a script should be expanded to the process ID). Then it will spawn a shell and run a pipeline using the main graphviz rendering program, dot, to make an image from the DOT markup. That is then fed to the viewer of your choice, in this case display(1) from the ImageMagick suite.</p>
<p>Oh, and that $% in there? That says &#8220;substitute the selection set, if any, given the script command&#8221;. So you can use this to view selected subsets of the commit graph &#8211; useful for large repositories.</p>
<p>The stupid way to implement this feature would have been to hardwire assumptions about the image renderer and viewer into reposurgeon itself, or (slightly less stupidly) pass them in via environment variables or a dotfile. By using reposurgeon&#8217;s script feature I avoid all that sort of nonsense &#8211; the only graphics-specific thing reposurgeon itself knows how to do is emit DOT markup, which took me all of about five minutes to write after I read the graphviz documentation.</p>
<p>I added in-script expansion of the $$ and $% cookies once I knew &#8216;graph&#8217; was a good idea (I already had &#8216;shell&#8217; and > output redirection for reposurgeon commands). The $$ cookie is of course modeled on how Unix shells expand it &#8211; a perfectly reasonable notation that there is no reason not to re-use here, and which will be helpful for any other reposurgeon script in the future that needs to use tempfiles.</p>
<p>This is how it looks when you design your application as a domain-specific language and think in terms of adding simple, combinable, orthogonal primitives to it rather than big lumps implementing idiosyncratic features with code that never gets re-used for anything else. Total lines of code to implement DOT output plus $$ plus $% was certainly less than it would have been had I tried to write the equivalent of that script in Python inside reposurgeon, and this way each of these three little featurelets can pay off its complexity cost in the future by being useful in ways I&#8217;m not trying to anticipate now.</p>
<p>This design has one drawback, however. The reposurgeon scripting facility was really designed for writing regression tests and per-project repository-lifting scripts; there is at present no place reposurgeon looks for scripts like this that should be shared among all your projects &#8211; for the excellent reason that this is (probably) the first such shareable script ever written. I need to think about that; this will probably turn into another addition to the language.</p>
<p><a href="http://www.catb.org/~esr/reposurgeon">Fear the reposturgeon!</a></p>