Typical C with C Preprocessor refactoring - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T10:02:21Zhttp://stackoverflow.com/feeds/question/787861http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/787861/typical-c-with-c-preprocessor-refactoring0Typical C with C Preprocessor refactoringLB 2009-04-24T23:50:00Z2009-04-25T02:03:25Z
<p>Hi,</p>
<p>I'm working on a refactoring tool for C with preprocessor support...
I don't know the kind of refactoring involved in large C projects and I would like to know what people actually do when refactoring C code (and preprocessor directives)</p>
<p>I'd like to know also if some features that would be really interesting are not present in any tool and so the refactoring has to be done completely manually... I've seen for instance that Xref could not refactor macros that are used as iterators (don't know exactly what that means though)...</p>
<p>thanks</p>
http://stackoverflow.com/questions/787861/typical-c-with-c-preprocessor-refactoring/787872#7878720Answer by jfclavette for Typical C with C Preprocessor refactoringjfclavette2009-04-24T23:54:07Z2009-04-24T23:54:07Z<p>For C:</p>
<ul>
<li>Parameters to struct</li>
<li>Extract function / Extract Macro</li>
</ul>
<p>For C++:</p>
<ul>
<li>Generating a class template from a class and type(s) would be nice.</li>
</ul>
<p>Good luck. Refactoring C/C++ sounds painful.</p>
http://stackoverflow.com/questions/787861/typical-c-with-c-preprocessor-refactoring/787880#7878800Answer by Shane C. Mason for Typical C with C Preprocessor refactoringShane C. Mason2009-04-24T23:59:29Z2009-04-24T23:59:29Z<p>I will tell you honestly that there are no good tools for refactoring C++ like there are for Java. Most of it will be painful search and replace, but this depends on the actual task. Look at Netbeans and Eclipse C++ plugins.</p>
<blockquote>
<p>I've seen for instance that Xref could
not refactor macros that are used as
iterators (don't know exactly what
that means though)</p>
</blockquote>
<p>To be honest, you might be in over your head - consider if you are the right person for this task.</p>
http://stackoverflow.com/questions/787861/typical-c-with-c-preprocessor-refactoring/787976#7879762Answer by Jonathan Leffler for Typical C with C Preprocessor refactoringJonathan Leffler2009-04-25T00:47:17Z2009-04-25T00:47:17Z<p>Huge topic!</p>
<ul>
<li><p>The stuff I need to clean up is contorted nests of <code>#ifdefs</code>. A refactoring tool would understand when conditional stuff appears in argument lists (function declaration or definitions), and improve that.</p></li>
<li><p>If it was really good, it would recognize that</p>
<pre><code>#if defined(SysA) || defined(SysB) || ... || defined(SysJ)
</code></pre>
<p>was really equivalent to:</p>
<pre><code>#if !defined(SysK) && !defined(SysL)
</code></pre>
<p>If you managed that, I'd be amazed.</p></li>
<li><p>It would allow me to specify 'this macro is now defined - which code is visible' (meaning, visible to the compiler); it would also allow me to choose to see the code that is invisible.</p></li>
<li><p>It would handle a system spread across over 100 top-level directories, with varying levels of sub-directories under those. It would handle tens of thousands of files, with lengths of 20K lines in places.</p></li>
<li><p>It would identify where macro definitions come from makefiles instead of header files (aargh!).</p></li>
</ul>
http://stackoverflow.com/questions/787861/typical-c-with-c-preprocessor-refactoring/787978#7879781Answer by splicer for Typical C with C Preprocessor refactoringsplicer2009-04-25T00:48:37Z2009-04-25T00:48:37Z<p>Macros can often get quite complex, so I wouldn't try supporting much more than simple renaming.</p>
http://stackoverflow.com/questions/787861/typical-c-with-c-preprocessor-refactoring/788063#7880630Answer by obecalp for Typical C with C Preprocessor refactoringobecalp2009-04-25T01:55:51Z2009-04-25T01:55:51Z<p>If you can handle <strong>reliable renaming</strong> of various types, variables and macros over a big project with an arbitrarily complex directory hierarchy, I want to use your product.</p>
http://stackoverflow.com/questions/787861/typical-c-with-c-preprocessor-refactoring/788072#7880722Answer by Dan Olson for Typical C with C Preprocessor refactoringDan Olson2009-04-25T02:03:25Z2009-04-25T02:03:25Z<p>Well, since it is part of the preprocessor... #include refactoring is a huge huge topic and I'm not aware of any tools that do it really well.</p>
<p>Trivial problems a tool could tackle:</p>
<ul>
<li>Enforcing consistent case and backslash usage in #includes</li>
<li>Enforce a consistent header guarding convention, automatically add redundant external guards, etc.</li>
</ul>
<p>Harder problems a tool could tackle:</p>
<ul>
<li>Finding and removing spurious includes.</li>
<li>Suggest the use of predeclarations wherever practical.</li>
</ul>
<p>For macros... perhaps some sort of scoping would be interesting, where if you #define a macro inside a block, the tool would automatically #undef it at the end of a block. Other quick things I can think of:</p>
<ul>
<li>A quick analysis on macro safety could be helpful as a lot of people still don't know to use do { } while (0) and other techniques.</li>
<li>Alternately, find and flag spots where expressions with side-effects are passed as macro arguments. This could possibly be really helpful for things like... asserts with unintentional side-effects.</li>
</ul>