C++ Directory Restructuring - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T14:24:31Z http://stackoverflow.com/feeds/question/593792 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/593792/c-directory-restructuring 4 C++ Directory Restructuring Amit Kumar 2009-02-27T06:59:57Z 2009-02-27T09:56:17Z <p>I have a source code of about 500 files in about 10 directories. I need to refactor the directory structure - this includes changing the directory hierarchy or renaming some directories. </p> <p>I am using svn version control. There are two ways to refactor: one preserving svn history (using svn move command) and the other without preserving. I think refactoring preserving svn history is a lot easier using eclipse CDT and SVN plugin (visual studio does not fit at all for directory restructuring). </p> <p>But right now since the code is not released, we have the option to not preserve history.</p> <p>Still there remains the task of changing the include directives of header files wherever they are included. I am thinking of writing a small script using python - receives a map from current filename to new filename, and makes the rename wherever needed (using something like sed). Has anyone done this kind of directory refactoring? Do you know of good related tools?</p> http://stackoverflow.com/questions/593792/c-directory-restructuring/593832#593832 4 Answer by Charlie Martin for C++ Directory Restructuring Charlie Martin 2009-02-27T07:21:59Z 2009-02-27T07:21:59Z <p>If you're having to rewrite the <code>#include</code>s to do this, you did it wrong. Change all your <code>#includes</code> to use a very simple directory structure, at mot two levels deep and only using a second level to organize around architecture or OS dependencies (like <code>sys/types.h</code>).</p> <p>Then change your make files to use <code>-I</code> include paths.</p> <p>Voila. You'll never have to hack the code again for this, and compiles will blow up instantly if something goes wrong.</p> <p>As far as the history part, I personally find it easier to make a clean start when doing this sort of thing; archive the old one, make a new repository v2, go from there. The counterargument is when there is a whole lot of history of changes, or lots of open issues against the existing code.</p> <p>Oh, and you do have good tests, and you're not doing this with a release coming right up, right?</p> http://stackoverflow.com/questions/593792/c-directory-restructuring/593845#593845 2 Answer by James Thompson for C++ Directory Restructuring James Thompson 2009-02-27T07:28:03Z 2009-02-27T07:28:03Z <p>I would preserve the history, even if it takes a small amount of extra time. There's a lot of value in being able to read through commit logs and understand why function X is written in a weird way, or that this really is an off-by-one error because it was written by Oliver, who always gets that wrong.</p> <p>The argument against preserving the history can be made for the following users:</p> <ul> <li>your code might have embarrassing things, like profanity and fighting among developers</li> <li>you don't care about the commit history of your code, because it's not going to change or be maintained in the future</li> </ul> <p>I did some directory refactoring like this last year on our code base. If your code is reasonable structured at the beginning, you can do about 75-90% of the work using scripts written in your language of choice (I used Perl). In my case, we were moving from set of files all in one big directory, to a series of nested directories depending on namespaces. So, a file that declared the class protocols::serialization::SerializerBase was located in src/protocols/serialization/SerializerBase. The mapping from the old name to the new name was trivial, so that doing a find and replace on #includes in every source file in the tree was trivial, although it was a big change. There were a couple of weird edge cases that we had to fix by hand, but that seemed a lot better than either having to do everything by hand or having to write our own C++ parser.</p> http://stackoverflow.com/questions/593792/c-directory-restructuring/594161#594161 2 Answer by mrree for C++ Directory Restructuring mrree 2009-02-27T09:56:17Z 2009-02-27T09:56:17Z <p>Hacking up a shell script to do the <em>svn</em> moves is trivial. In <em>tcsh</em> it's <em>foreach F ( $FILES ) ... end</em> to adjust a set of files. Perl &amp; Python offer better utility.</p> <p>It really is worth saving the history. Especially when trying to track down some exotic bug. Those who do not learn from history are doomed to repeat it, or some such junk...</p> <p>As for altering all the files... There was a similar question just the other day over at:</p> <p><a href="http://stackoverflow.com/questions/573430/c-include-header-path-change-windows-to-linux/573531#573531">http://stackoverflow.com/questions/573430/ c-include-header-path-change-windows-to-linux/573531#573531</a></p>