Any software for pattern-matching and -rewriting source code? - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T20:31:14Zhttp://stackoverflow.com/feeds/question/415455http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/415455/any-software-for-pattern-matching-and-rewriting-source-code2Any software for pattern-matching and -rewriting source code?Steven A. Lowe2009-01-06T04:27:24Z2009-01-06T18:42:40Z
<p>I have some old software (in a language that's not dead but is dead to me ;-)) that implements a basic pattern-matching and -rewriting system for source code. I am considering resurrecting this code, translating it into a modern language, and open-sourcing the project as a refactoring power-tool. Before I go much further, I want to know if anything like this exists already (my google-fu is fanning air on this tonight).</p>
<p>Here's how it works:</p>
<ul>
<li>the pattern-matching part matches source-code patterns spanning multiple lines of code using a template with binding variables, </li>
<li>the pattern-rewriting part uses a template to rewrite the matched code, inserting the contents of the bound variables from the matching template</li>
<li>matching and rewriting templates are associated (1:1) by a simple (unconditional) rewrite rule</li>
</ul>
<p>the software operates on the abstract syntax tree (AST) of the input application, and outputs a modified AST which can then be regenerated into new source code</p>
<p>for example, suppose we find a bunch of while-loops that really should be for-loops. The following template will match the while-loop pattern:</p>
<pre><code>Template oldLoopPtrn
int @cnt@ = 0;
while (@cnt@ < @max@)
{
… @body@
++@cnt@;
}
End_Template
</code></pre>
<p>while the following template will specify the output rewrite pattern:</p>
<pre><code>Template newLoopPtrn
for(int @cnt@ = 0; @cnt@ < @max@; @cnt@++)
{
@body@
}
End_Template
</code></pre>
<p>and a simple rule to associate them</p>
<pre><code>Rule oldLoopPtrn --> newLoopPtrn
</code></pre>
<p>so code that looks like this</p>
<pre><code>int i=0;
while(i<arrlen)
{
printf("element %d: %f\n",i,arr[i]);
++i;
}
</code></pre>
<p>gets automatically rewritten to look like this</p>
<pre><code>for(int i = 0; i < arrlen; i++)
{
printf("element %d: %f\n",i,arr[i]);
}
</code></pre>
<p>The closest thing I've seen like this is some of the code-refactoring tools, but they seem to be geared towards interactive rewriting of selected snippets, not wholesale automated changes.</p>
<p>I believe that this kind of tool could supercharge refactoring, and would work on multiple languages (even HTML/CSS). I also believe that converting and polishing the code base would be a huge project that I simply cannot do alone in any reasonable amount of time.</p>
<p>So, anything like this out there already? If not, any obvious features (besides rewrite-rule conditions) to consider?</p>
<p>EDIT: The one feature of this system that I like very much is that the template patterns are fairly obvious and easy to read because <em>they're written in the same language as the target source code</em>, not in some esoteric mutated regex/BNF format.</p>
http://stackoverflow.com/questions/415455/any-software-for-pattern-matching-and-rewriting-source-code/415486#4154862Answer by Doug Currie for Any software for pattern-matching and -rewriting source code?Doug Currie2009-01-06T04:38:14Z2009-01-06T04:38:14Z<p><a href="http://www.txl.ca/" rel="nofollow">TXL</a> is rule based rather than pattern based, so it has more capabilities but perhaps a steeper learning curve.</p>