Typical C with C Preprocessor refactoring - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T10:02:21Z http://stackoverflow.com/feeds/question/787861 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/787861/typical-c-with-c-preprocessor-refactoring 0 Typical C with C Preprocessor refactoring LB 2009-04-24T23:50:00Z 2009-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#787872 0 Answer by jfclavette for Typical C with C Preprocessor refactoring jfclavette 2009-04-24T23:54:07Z 2009-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#787880 0 Answer by Shane C. Mason for Typical C with C Preprocessor refactoring Shane C. Mason 2009-04-24T23:59:29Z 2009-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#787976 2 Answer by Jonathan Leffler for Typical C with C Preprocessor refactoring Jonathan Leffler 2009-04-25T00:47:17Z 2009-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) &amp;&amp; !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#787978 1 Answer by splicer for Typical C with C Preprocessor refactoring splicer 2009-04-25T00:48:37Z 2009-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#788063 0 Answer by obecalp for Typical C with C Preprocessor refactoring obecalp 2009-04-25T01:55:51Z 2009-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#788072 2 Answer by Dan Olson for Typical C with C Preprocessor refactoring Dan Olson 2009-04-25T02:03:25Z 2009-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>