How do you stop yourself from refactoring working but awful code? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-25T03:59:50Z http://stackoverflow.com/feeds/question/455271 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code 40 How do you stop yourself from refactoring working but awful code? orj 2009-01-18T15:03:32Z 2009-08-15T04:33:55Z <p>I have this problem. I can't stop myself from refactoring existing code that works but is, in my opinion (and perhaps objectively), badly designed or contains other "code smells". This can have a significant negative effect on my immediate productivity. But ultimately will be a big maintenance boon.</p> <p>If you also suffer from this "affliction", how do you restrain yourself? Or at least manage the refactoring to avoid having to alter large chunks of existing code in order to make it maintainable for the long term.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455277#455277 27 Answer by driAn for How do you stop yourself from refactoring working but awful code? driAn 2009-01-18T15:07:34Z 2009-01-18T15:07:34Z <p>Decide based on the "bottom line benefit" instead listening to your "inner voice". If that code will be reused very often, then it might make sense to refactor it. However I usually try to ignore my hate for "code smell" and really focus on the <strong>benefit/time-wasted</strong> ratio of the refactoring in question..</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455280#455280 27 Answer by David Basarab for How do you stop yourself from refactoring working but awful code? David Basarab 2009-01-18T15:08:56Z 2009-01-18T15:08:56Z <p>The answer is you don't. Just because code works doesn't mean it will always work. Bad code is bad code. </p> <p>We refactor to make the code more readable, easier to maintain, and to ensure reliability. </p> <p>As long as you keep the logic of the old code, it should still work, plus have the added bonus of being overall better code.</p> <p>I always try to leave code better than I found it.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455287#455287 8 Answer by spurrymoses for How do you stop yourself from refactoring working but awful code? spurrymoses 2009-01-18T15:14:27Z 2009-01-18T15:14:27Z <p>I won't say I 'suffer' from this affliction but... I hear you brother!</p> <p>I do think we need to leave the code in a better state than when we left it. So your pursuit is noble. Let's call it 'refactoritis'.</p> <p>I'm assuming that we all agree on the benefits of refactoring and that it sort of depends on the code as to how necessary it is... To the crux of the question then... </p> <p>One way I restrain myself, is that I try to feel safe in the knowledge that it's ripe for fixing. And I know how to fix it. And rather than completely restrain myself, I just do one step, like 'Extract Method'. And leave the next 'round' of fixing for later (perhaps we should call this 'second helpings' or 'dessert' if you're sure it's the last step). Then stick a big TODO on it, so you can find it again. And clarify what still needs to be done.</p> <p>Thanks for the interesting question. It makes me wonder whether we need a 'Refactorors Anonymous' group where we can sit around in a circle and share our problems and war stories.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455288#455288 3 Answer by Paul Lefebvre for How do you stop yourself from refactoring working but awful code? Paul Lefebvre 2009-01-18T15:15:01Z 2009-01-18T15:15:01Z <p>I agree, it's tempting but if you focus on it you might not get any of your real work done!</p> <p>Two suggestions:</p> <ol> <li>Mark the code so that you can go back to it later to clean up (use the TODO comment or something similar)</li> <li>Add a bug to your bug tracking system indicating smelly code. Perhaps you can then get time scheduled to fix a group of them.</li> </ol> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455289#455289 3 Answer by Sebastian Dietz for How do you stop yourself from refactoring working but awful code? Sebastian Dietz 2009-01-18T15:15:40Z 2009-01-18T15:15:40Z <p>I usually don't restrain myself. If I find a bad piece in the code I'm working on, I correct it directly. </p> <p>I'm working on a software that has been maintained for about 10 years now and will have to work at least ten more years. In such a situation, the longer a code smell stays in the code, the more often my fellow developers and I will stumble over it and waste time trying to figure it out or invent workarounds for it. This costs more money than just doing the work right now.</p> <p>An exception are large design problems that take days to refactor. If those do not obstruct my current project in a significant way, I add it to our maintenance todo list to work on the refactoring as a planned task in the near future.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455300#455300 2 Answer by annakata for How do you stop yourself from refactoring working but awful code? annakata 2009-01-18T15:20:21Z 2009-01-18T15:20:21Z <p>I just wanted to add that if the project in question is supported by unit-tests then refactoring is going to have considerably less risk attached, and would have a degree less productivity cost (because you're going to know exactly when you're ging wrong).</p> <p>There's still a cost/benefit to be done, but in principle I'd agree with Longhorn that you shouldn't be stopping yourself.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455310#455310 3 Answer by gkrogers for How do you stop yourself from refactoring working but awful code? gkrogers 2009-01-18T15:25:39Z 2009-01-18T15:25:39Z <p>First, you have to realise and accept that the only reason that the bad code matters is if it needs to be read and/or modified. It only needs to be read and/or modified if you're looking for a bug or adding functionality. So only touch the code if you're bug-fixing or enhancing. So, if you come across some massively nested if-then-else statements, or a badly named variable or method, leave it alone unless you need to actually understand or change that code to finish the task you're actually working on. If you do have to change the code then refactor it enough to make the code comprehensible and the change easier to make, but no more.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455313#455313 0 Answer by gridzbi for How do you stop yourself from refactoring working but awful code? gridzbi 2009-01-18T15:29:03Z 2009-01-18T15:29:03Z <p>If I'm working on a task, I don't let anything get in the way of it - it is too easy to get carried away. Anything that looks like it needs work then it probably does, but maybe not right away - make a note/add it to your bug tracker.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455327#455327 0 Answer by earlNameless for How do you stop yourself from refactoring working but awful code? earlNameless 2009-01-18T15:34:32Z 2009-01-18T15:34:32Z <p>I create an issue in our issue tracker (or you could use a post-it note) about fixing that code, and then forget about the problem.</p> <p>This allows everyone to know that there is code that is bad that could cause some problems, but also allows me to keep working on my current task without too many distractions.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455392#455392 4 Answer by barneytron for How do you stop yourself from refactoring working but awful code? barneytron 2009-01-18T16:20:36Z 2009-01-18T16:20:36Z <p>Whoa, lots of you are kinda <a href="http://en.wikipedia.org/wiki/OCD" rel="nofollow">OCD</a> if you know what I mean. I think to CYA, if you are only working the code base for the short term, then don't bother refactoring. But if you'll be owning this code in the long term, then go for it! But you must back up your new code with unit tests, as well as add unit tests to the legacy code you'll be affecting if tests don't already exists. </p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455406#455406 0 Answer by moffdub for How do you stop yourself from refactoring working but awful code? moffdub 2009-01-18T16:30:35Z 2009-01-18T16:30:35Z <p>I suffer from refactoritis as well, and I deal with it by directing it at code that is mine that others have maintained or other people's code that I have to maintain. And by deal with it, I mean "check version control every hour on the hour to see if anyone has touched my code and if they did, do an immediate diff."</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455415#455415 5 Answer by tinkertim for How do you stop yourself from refactoring working but awful code? tinkertim 2009-01-18T16:36:25Z 2009-01-18T16:36:25Z <p>Are you habitually refactoring code written by others, or code that you wrote six months ago while you were in a different kind of 'zone' ? If your answer is the latter, its very good that you don't paint or make sculptures for a living ... you'd be arrested for breaking into people's homes to 'finish' your works long after they were purchased.</p> <p>I am a BIG fan of <a href="http://www.stack.nl/~dimitri/doxygen/" rel="nofollow">Doxygen</a> , which allows me to stick a simple:</p> <pre><code>/** * Function to rule the world * @todo make this actually work */ </code></pre> <p>Then, I tell Doxygen to generate to-do lists based on my comments. This helps to ensure functions that smell like feet don't get forgotten.</p> <p>I look back on stuff that I did even two months ago and say "Ick, what the heck was I thinking ... I should do it this way ... ", which results in never actually getting a consumable out the door.</p> <p>If its other people's code that you consistently re-factor, try to ask yourself if doing so actually improves the code. If you are able to re-factor a function, its pretty obvious that you understand the function .. so unless you get some (more than trivial) benefit from re-writing it, slap a comment above it and come back later.</p> <p>After you are used to all of the code and have given some thought to how to make things more coherent .. then dive in. Otherwise, you'll end up re-factoring your previous re-factoring (what a vicious cycle that took years to perfect!).</p> <p>So, unless its inline, or used all over the place .. try to avoid messing with it unless you really need to. Later, come back and hit your TODO list in one swoop .. when doing so is your only immediate goal.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455427#455427 28 Answer by Kyralessa for How do you stop yourself from refactoring working but awful code? Kyralessa 2009-01-18T16:40:01Z 2009-01-18T16:40:01Z <p>What worked for me was getting fired from a job for it. :\</p> <p>That said, my basic problem was twofold:</p> <ol> <li><p>I was refactoring code that no one had asked me to work on.</p></li> <li><p>I found it too hard to put tests in place, so I did it without them. Which, naturally, broke some things.</p></li> </ol> <p>What I learned was:</p> <ol> <li><p>Don't work on code you don't need to work on, and that no one has asked you to work on. It's easy to remember this now, given the consequences in the past.</p></li> <li><p>When you need to refactor code you <em>are</em> supposed to work on, have tests in place, but <strong>they don't have to be automated.</strong></p></li> </ol> <p>After reading too much TDD stuff, I tended to think of automated tests as the only kind of test there is. In reality, even a bunch of <code>Debug.Print</code> statements can be a decent test to figure out if functionality is staying consistent.</p> <p>If you <em>have</em> to refactor, and you can't do automated tests, you must do <em>some</em> kind of test, whether it's printing text, or a UI script, or whatever. Any effective test is better than no test at all.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455437#455437 1 Answer by Dana for How do you stop yourself from refactoring working but awful code? Dana 2009-01-18T16:43:59Z 2009-01-18T16:43:59Z <p>I have trouble stomaching smelly code, but will usually put off cleanup and refactoring until I have to actually make changes, or if I have some down-time.</p> <p>Until then, I'll just note ideas for changes in comments.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455461#455461 1 Answer by Clayton for How do you stop yourself from refactoring working but awful code? Clayton 2009-01-18T16:59:01Z 2009-01-18T16:59:01Z <p>I used to refactor code whenever I came across something I didn't like, but not anymore. I found from experience that it's just not worth it. There are better things you could spend your time on.</p> <p>The main reason I don't refactor anymore is the risk of introducing a new bug. The worse the old code is, the higher the chance that you're going to make a mistake. For example, the old code might have an unintended side effect. That could be considered a coding error, and you'd remove it in your rewrite. However, code that calls into your rewritten function may be relying on that side effect.</p> <p>I work on a lot of really ugly legacy code that's mostly uncommented and for which there are no specs. The code just does what it does, and no one can really say why. They just know it seems to work. As horrible as it is, this code does it's job, so it's best to just leave it alone.</p> <p>That said, I do believe bad code should be rewritten. I just don't think that programmers should do this kind of thing on their own. It should be treated as a project, with defined scope, timelines, test plans, etc., just like implementation of a new feature.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455465#455465 1 Answer by Jonathan Leffler for How do you stop yourself from refactoring working but awful code? Jonathan Leffler 2009-01-18T17:02:49Z 2009-01-18T17:17:49Z <p>I do it - on some fairly awful code. The system provides a check; the code changes have to be reviewed before final checkin to the main codeline - and that provides a stop.</p> <p>But I cry internally whenever that happens. A lot the code I work still doesn't use prototypes for the C function definitions. Most, if not all, have a prototype in a header somewhere, but many of the actual definitions haven't been changed since the late 80s.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455482#455482 6 Answer by Andrei Taranchenko for How do you stop yourself from refactoring working but awful code? Andrei Taranchenko 2009-01-18T17:11:37Z 2009-01-18T17:17:35Z <p>I generally don't touch any legacy code UNLESS I am asked to build on it extensively. If the code is so bad that adding one feature cascades into bugs all over the place, you have a real reason to re-engineer it. </p> <p>In addition, there is a very, very real risk you will introduce bugs that had been fixed in the legacy mess. That will make you look unprofessional. </p> <p>The only good way, IMO, is to slowly refactor the old code outside of production. Then, when you think the functionality is the same, go through the old resolved bugs and make sure no old bugs show up again.</p> <p>Roll it out to QA and brag to management about it, preferably with some cool new feature or two. If the new code performs much faster, that's a definite selling point.</p> <p>Generally you will have two issues: complete lack of time, and management pushing against allocating time to refactor. If none of those are an issue, consider yourself very lucky. </p> <p>Edit: <a href="http://www.joelonsoftware.com/articles/fog0000000069.html" rel="nofollow">Joel Spolsky has the best answer</a>, I believe.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455514#455514 0 Answer by Jason Baker for How do you stop yourself from refactoring working but awful code? Jason Baker 2009-01-18T17:24:00Z 2009-01-18T17:24:00Z <p>I try to refactor on a piecemeal basis. That is, when I need to add new functionality, I refactor it in such a way that makes it easier to add that functionality in first. This makes refactoring a slower process, but it tends to make for an easier time adding changes.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455622#455622 3 Answer by Simucal for How do you stop yourself from refactoring working but awful code? Simucal 2009-01-18T18:20:32Z 2009-01-19T01:56:23Z <p><a href="http://en.wikipedia.org/wiki/Martin_Fowler" rel="nofollow">Martin Fowler</a>'s take on the issue:</p> <blockquote> <p>Its essence is applying a series of small behavior-preserving transformations, each of which "too small to be worth doing". However the cumulative effect of each of these transformations is quite significant. By doing them in small steps you reduce the risk of introducing errors. You also avoid having the system broken while you are carrying out the restructuring - which allows you to gradually refactor a system over an extended period of time. - Martin Fowler</p> </blockquote> <p>So when you are changing huge chunks of code at a time, I wouldn't really call that a true refactoring. More like totally rewriting particular code segments. The changes should be gradual and "almost not worth doing". After time you'll notice their cumulative effect.</p> <p>I've heard a definition for "legacy code" is code without unit tests. If you are working on code without unit tests than I would suggest writing tests before making significant changes. If you have unit tests in place than you can refactor without fear of breaking that awful code because you have your unit tests to back you up and ensure everything is still functional. </p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455670#455670 2 Answer by AviD for How do you stop yourself from refactoring working but awful code? AviD 2009-01-18T18:37:03Z 2009-01-18T18:37:03Z <p>Stop caring. </p> <p>I mean, cmon, we're all engineers here, and engineers just <em>love</em> to put out THE MOST ABSOLUTEST PERFECT CODE EVER. And we're going to keep trying. And we're not going to be happy about our work, unless we know that everything we've touched is TMAPCE. Besides, we just <em>know</em> that this way is <em>so</em> much better... </p> <p>So, the only real way to not keep trying to refactor another little bit at a time, is to not care about your work.<br /> (As I side note, this did happen to me once. It was very sad... till I moved to a different job.)</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455682#455682 3 Answer by Maltrap for How do you stop yourself from refactoring working but awful code? Maltrap 2009-01-18T18:41:59Z 2009-01-18T18:41:59Z <p>Perfectly valid question.</p> <p>I use to find myself starting to refactor code automatically as I ran into it. When I'm 5 minutes or so into the operation (checking things out etc) I suddenly get this feeling that what I'm doing is going to take longer than I expect. At this point I ask myself, is it worth the effort going down this rabbit hole? To be honest, it sometimes is, but most of the time it's not, and after a while you realize you want to rewrite the whole system, just while you're at it! </p> <p>This got me into the habbit of asking myself continuously: <strong>Is the code I'm writing now going to help me accomplish this task in a reasonable amount of time? Am I "wasting" the company's time by doing this refactoring while there are outstanding items which are much higher on the priority list?</strong></p> <p>I've seen programmers that don't even realize they're doing it. They will work for days on end to get the code in a state where they feel they can now start implementing new features or perform bug fixes. They can't distinguish between refactoring and spending time on the assigned issue. </p> <p>What I do is just comment what I want to do later on, and simply work with the existing system, no matter how ugly it is! This allows me to break less things and actually getting through my list of things to do much quicker. (We don't do TDD... yet)</p> <p>Once you find the time, come back and refactor.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455744#455744 0 Answer by porneL for How do you stop yourself from refactoring working but awful code? porneL 2009-01-18T19:22:40Z 2009-01-18T19:22:40Z <p>Before you start refactoring you need to have comprehensive <strong>unit tests</strong> for it, and nobody likes to write unit tests :)</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/455745#455745 0 Answer by Dmitri Nesteruk for How do you stop yourself from refactoring working but awful code? Dmitri Nesteruk 2009-01-18T19:22:46Z 2009-01-18T19:22:46Z <p>By reminding myself about cost-benefit ratios and all that.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456048#456048 0 Answer by too much php for How do you stop yourself from refactoring working but awful code? too much php 2009-01-18T22:34:32Z 2009-01-18T22:34:32Z <p>Refactor as your <em>last</em> task of the day.</p> <ul> <li>Figure out exactly what you want to refactor and how you would do it.</li> <li>Work out all the <em>real</em> work you need to get done today.</li> <li>Finish the <em>real</em> work.</li> <li>Refactor.</li> </ul> <p>You will be tempted to refactor first before you start the new work "because that will save even more time", but it's actually very easy to refactor new code on the same day you wrote it.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456070#456070 0 Answer by le dorfier for How do you stop yourself from refactoring working but awful code? le dorfier 2009-01-18T22:55:47Z 2009-01-18T23:04:39Z <p>I read <a href="http://xroads.virginia.edu/~ug97/remus/tar-baby.html" rel="nofollow">the old Uncle Remus story about the Tarbaby</a>. Or I bring out one of those signs from the stores where it says "You Touch It, You Own It".</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456083#456083 0 Answer by MarkR for How do you stop yourself from refactoring working but awful code? MarkR 2009-01-18T23:03:33Z 2009-01-18T23:03:33Z <p>It's easy really.</p> <p>Everything we modify, we have to come up with a written test plan that is understood and reviewed by a QA engineer. Not modifying stuff drastically simplifies actually getting code released. Therefore, unless you're touching that piece of code for some other reason anyway, any kind of refactoring is pretty much a no-no.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456114#456114 0 Answer by Adam Hawes for How do you stop yourself from refactoring working but awful code? Adam Hawes 2009-01-18T23:26:50Z 2009-01-19T03:50:19Z <p>Oftentimes refactoring can reduce or eliminate the need to do the real work assigned. If you're fixing a bug then refactoring is a good place - assuming there's tests in place. To a lesser extent adding new features can be achieved with a simple refactoring of the code to make it a bit cleaner or more efficient and then you see that the feature was already there and how to get the user to enable it.</p> <p>The short answer, however, is that you don't refactor code that works unless there's a pressing need. A good checklist is:</p> <ul> <li>Am I going to be working with this code daily for an extended period AND am I the ONLY person who will be.</li> <li>Is the code so bad that it can't be properly understood. Usually I find I'm just suffering from a case of not invented here syndrome (the thing where someone else's perfectly good solution isn't how I would have done it so I want to do it again for no real gain except pride).</li> <li>Is the architecture not capable of supporting said new work (feature, bug fix, etc).</li> <li>Is the code so incestuous that changing a few small things has a massive ripple effect of follow-on bugs.</li> </ul> <p>If you answer yes to any one of those then it might be time to refactor.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456118#456118 2 Answer by Steve Steiner for How do you stop yourself from refactoring working but awful code? Steve Steiner 2009-01-18T23:27:47Z 2009-01-18T23:27:47Z <p>"Refactoring existing code that works" - This is obviously a minority opinion here, but this is a complete waste of time. It is good you are attempting to restrain yourself.</p> <p>If you think the code is so bad, <strong>find a non-trivial bug in it before you refactor it</strong>. Then add an automated test for that bug. Only then allow yourself to refactor.</p> <p>The attitude that after refactoring working code "I've left the code better" is often programmer <strong>hubris</strong>. In many cases you don't really know you left the code better, you just believe you did. If you didn't even fix a bug or add functionality why take the risk of being wrong?</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456237#456237 0 Answer by Blaisorblade for How do you stop yourself from refactoring working but awful code? Blaisorblade 2009-01-19T00:39:26Z 2009-01-19T00:39:26Z <p>When you're working on a piece of code, or you have to use a broken interface, refactoring might be the better answer, so try to constrain refactoritis to that.</p> <p>While I'm young enough (studying for my master) that I'm not normally paid to program (I've been programming for Open Source programs, and sometimes getting money out of that), the few times I've worked on an actual company (for summer jobs, quite time constrained) I found my productivity to be much lower, and I've a definite feeling that it happened because the code, while being readable and so on, was not of the highest quality. I saw a number of bugs I wanted to fix, but gave low priority to all of them, and still the quality of the code I added myself was much lower. Dunno if that applies to anybody else, still it may be interesting to know and to see if somebody had the same experience.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456316#456316 0 Answer by Daniel Paull for How do you stop yourself from refactoring working but awful code? Daniel Paull 2009-01-19T01:46:21Z 2009-01-19T01:46:21Z <p>I find that there is an internal struggle between my idealist and my pragmatist. The idealist wishes to refactor, and refactor often, even at the expense of actual progress, while my pragmatist knows that often the code is is "good enough" and the focus should be on moving forward.</p> <p>Here the problem is the defining the term "good enough", and the definition varies based on your type of project and constraints (time and money for example) placed on you.</p> <p>I place a lot of weight on fixing things that are going to make supporting an upgrade path for the product difficult. For example, if a database schema is less than ideal, it should be fixed before release to avoid complicated schema evolution tools that have to operate on you clients production data.</p> <p>Above all, refactoring should not be a dirty word in your work place. Refactoring should be a part of your process and you should not feel like refactoring efforts need to be done on the sly.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456416#456416 0 Answer by Eddie Parker for How do you stop yourself from refactoring working but awful code? Eddie Parker 2009-01-19T03:03:31Z 2009-01-19T03:03:31Z <p>I have suffered from this in the past, and I micromanage my 'bad' good habit.</p> <p>Basically, I do the following:</p> <ul> <li>I have two separate instances of our source tree at any given time.</li> <li>If I have a massive refactor that's not really top priority, I hack away at it in the second branch. </li> <li>I'll then keep working away in my first branch, and just maintain the second branch, doing little tests as I think about it to make sure I haven't broken anything.</li> <li>I'll then check it in once I'm confident, and I can time it with a slow-down in our production cycle (i.e., don't check in right before milestone!).</li> </ul> <p>In all honesty, that 'major' refactoring never really happens often -- usually if I need to do that, it's already been tasked anyhow. Still, the few times I've done that, it's come in handy. Ideal if you can do a branch for it, and just keep integrating changes.</p> <p>For the smaller stuff, I'll often keep those changes local in my 'main' branch, and run with them locally for a while. The moment that anything I'm working on touches those files, I then check the whole change in -- our process currently includes a 'buddy check' system before check-ins, so usually it's stuff that'd clear peer review anyhow.</p> <p>Anyways. Might be more of a brain dump than you cared for, but hopefully it helps.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456486#456486 0 Answer by Jas Panesar for How do you stop yourself from refactoring working but awful code? Jas Panesar 2009-01-19T03:56:33Z 2009-01-19T03:56:33Z <p><strong>I prioritize.</strong> </p> <p>When I have some cycles available (ha), </p> <p>I generally try to re-factor code that:</p> <ul> <li><strong>would be sensitive</strong> for anyone else to work on, </li> <li>would actually <strong>need to be worked on</strong>, meaning it is touched regularly</li> <li>that is <strong>in poor shape</strong> for performance reasons or documentation reasons, in that order.</li> </ul> <p>Where re-factoring adds value, I do it. Trying to line up future new features to overlap with re-factoring makes it easier to do while under the hood.</p> <p>Reasons not to touch anything we feel like touching?</p> <ul> <li>Often old code has been hardened for input/output, as clumsy as it may be, it works.</li> <li>If it ain't broke, don't make it that way.</li> <li>There should always be something new and neat to work on, and code the right way. Old stuff will get re-factored over time as it is extended.</li> </ul> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456510#456510 0 Answer by gnovice for How do you stop yourself from refactoring working but awful code? gnovice 2009-01-19T04:14:30Z 2009-01-19T04:14:30Z <p>If I'm ever in a situation where some code needs refinement (and I usually only worry about this for my own code) I immediately add comments in the header of the function/file. Even if I have time to work on the refactoring right then, I still take the time to write comments to organize my thoughts first. As I make the improvements, I remove the comments. That way, even if I have to put the refactoring off until later, I have some kind of guidelines to remind of what the hell I was doing.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/456885#456885 1 Answer by Ludwig Wensauer for How do you stop yourself from refactoring working but awful code? Ludwig Wensauer 2009-01-19T08:32:33Z 2009-01-19T08:32:33Z <p>The following Boy Scout rule applies very good to (bad) code and design:<br/> <strong>Leave the campground cleaner than you found it!</strong></p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/459553#459553 4 Answer by Jonik for How do you stop yourself from refactoring working but awful code? Jonik 2009-01-19T23:07:07Z 2009-01-19T23:07:07Z <p>The <a href="http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code#455280">highest-rated answer</a> urging you to <em>go ahead and refactor</em> is good for many cases, but somewhat simplistic too. (I'd probably comment on it, but have no privileges to do so - I hope this works stand-alone too.)</p> <p>If you work with a large (legacy) system that's been in development for years and years, there are <em>always</em> too many things to refactor at once (unless you have been <em>exceptionally</em> rigorous all those years, which I don't believe :). So, you simply cannot get on all the tangentials you'd like to; that's a fact of life you have to accept. Otherwise you'd always be speding days on end cleaning everything up, when the original change (bugfix or enhancement) could have been done in much less time (tests and <em>some</em> refactoring included!).</p> <p>So, usually you have to draw a line somewhere; <strong>refactor only code that directly concerns the task at hand, and only if it will not take a disproportional amount of time</strong>.</p> <p>As for the bigger overhauls of architecture - which certainly you can't avoid when dealing with aforementioned large codebases. You'll have to select the ones deemed most critical, and task and prioritize them in your process high enough that they will really get done, even when these changes add no external value themselves (i.e. only immediate value for the developers, by making the code more manageable). (Now, if <em>this</em> would not be possible - if decision-makers are not smart enough to see that it's necessary to use time on such improvements, well, then your codebase is simply doomed in the long term. :))</p> <p>If you are free of any constraints of commercial software development, your mileage may vary. ;)</p> <p>By the way, good question - I too find myself thinking about where to draw the line quite often.</p> http://stackoverflow.com/questions/455271/how-do-you-stop-yourself-from-refactoring-working-but-awful-code/1281153#1281153 0 Answer by GordonG for How do you stop yourself from refactoring working but awful code? GordonG 2009-08-15T04:33:55Z 2009-08-15T04:33:55Z <p>I stop myself by thinking: "Is this going to actually accomplish anything?" "What are the benefits of taking this action, now, tomorrow, next week, a month or a year down the line?"</p> <p>If there's little to no benefit-to-time-spent ratio, then I dont' do it.</p>