active questions tagged codesmell - Stack Overflow most recent 30 from stackoverflow.com 2009-12-08T17:38:40Z http://stackoverflow.com/feeds/tag/codesmell http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/690330/does-this-switch-statement-smell-bad 2 does this switch statement smell bad? theman_on_vista 2009-03-27T15:56:39Z 2009-11-20T17:33:35Z <pre><code>Switch(some case) { case 1: // compute something ... return something; break; case 2: // compute something ... return something; break; /* some more cases ... */ case X: // compute something ... return something; break; default: // do something return something; break; } </code></pre> <p>In my opinion:</p> <blockquote> <p>Assuming this switch statement is justifiable, the return and break just doesnt look right or feel right. </p> </blockquote> <p>The break is obviously redundant, but is omission poor style (or is this poor style to begin with?) ?</p> <p><hr /></p> <p>I personally dont do this, but there is some of this in the codebase at work. And no, im not going to be self-righteous and correct the codebase.</p> http://stackoverflow.com/questions/174968/how-many-parameters-are-too-many 19 How many parameters are too many? Auron 2008-10-06T16:14:48Z 2009-11-17T06:50:13Z <p>Routines can have parameters, that's no news. You can define as many parameters as you may need, but too many of them will make your routine difficult to understand and maintain.</p> <p>Of course, you could use a structured variable as a workaround: putting all those variables in a single struct and passing it to the routine. In fact, using structures to simplify parameter lists is one of the techniques described by Steve McConnell in <em>Code Complete</em>. But as he says:</p> <blockquote> <p><em>Careful programmers avoid bundling data any more than is logically necessary.</em></p> </blockquote> <p>So if your routine has too many parameters or you use a struct to disguise a big parameter list, you're probably doing something wrong. That is, you're not keeping coupling loose.</p> <p>My question is, <strong>when can I consider a parameter list too big?</strong> I think that more than 5 parameters, are too many. What do you think?</p> http://stackoverflow.com/questions/226701/what-do-you-think-when-a-boolean-if-has-three-resulting-code-paths 3 What do you think when a Boolean "if" has three resulting code paths? benc 2008-10-22T17:02:19Z 2009-10-20T09:59:55Z <p>(Background: from a previous job, a co-worker and I would end up discussing the bug pile during lunch. We began to develop a topic called "bug of the week". I doubt I have material for 52 posts a year, but here's the first one...)</p> <p>Reported by:</p> <p>QA tester was reading HTML/JS code to write a functional test of a web form, and saw:</p> <pre><code>if (form_field == empty) { ...do stuff for empty field } else if (form_field != empty) { ...do stuff for non-empty field } else { ...do stuff that will never be done } </code></pre> <p>After a couple embarassing attempts, tester realized that they couldn't trigger the alert strings hidden in the third block.</p> <p>Things I'm wondering are:</p> <ul> <li>Is this problem more or less language specific (can non-JS people learn lessons here?)</li> <li>Are there legitimate reasons code ended up this way?</li> <li>What approaches should be used to find/address the problem (code coverage, code review, blackbox testing, etc.)</li> </ul> <p>A couple other points:</p> <ol> <li><p>I'm hoping we can keep it positive. Imagine this is a person you work with (in a company that does not encourage flaming). Whatever mean things you might think of the guilty party, I probably already thought them too.</p></li> <li><p>I'm not a coder by profession. I checked the wiki box, in case someone wants to provide a more literal example, or add to the base of the thread.</p></li> </ol> <p>[EDIT] Similar to <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them">http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them</a></p> http://stackoverflow.com/questions/1381781/deadline-shortcuts 1 deadline shortcuts martin 2009-09-04T22:21:08Z 2009-09-17T12:39:51Z <p>Most of the time I write very maintainable and well design code(even at home). However I just wrote db + msword report app for my friend and code is really bad - lots of code duplication and development speed driven db design - I just dont care at all about this code. I just wanted to finish it fast and go to sleep.</p> <p>I came up with some faster development tricks .. for example i needed to persist map in db, but instead of what i do at work(most of the time you need to create new table for that with two fields and then map it to ORM) I just created new field in table with properties seperated by semicolon. Development speed of that was like 5 much as fast. Even parsing at client side took almost no time to write. it can be refactored later, but i feel that it wont.</p> <p>What faster development shortcuts do you recommend when deadline is close?</p> http://stackoverflow.com/questions/563493/code-deodorant-practices-to-avoid-code-smells 5 Code deodorant: practices to avoid code smells DavidWinterbottom 2009-02-19T00:38:06Z 2009-09-16T17:20:58Z <p>Excessive use of magic numbers or string literals in code is something of a code smell; not necessarily wrong but worth considering carefully. However, one can set up your editor/IDE to highlight string and number literals in garish colours like pink on lime green. That way, you can't help but notice where you are using these types and, hopefully, this practice will force you to consider carefully how you structure your code and perhaps avoiding the code smell, or concentrating it in well-defined places (like declaring all string literals as constants). Code deodorant if you like.</p> <p>Another example practice is to use a large font size in your editor. This means that a smaller number of lines of code are visible on the screen which makes writing excessively long methods and classes more difficult - effectively guiding you towards writing short, purposeful functions. </p> <p>What are other development/management practices which steer your programming in the right direction and help avoid programming code smells? See <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them">http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them</a> for an excellent catalogue of smells.</p> http://stackoverflow.com/questions/434414/what-is-the-most-evil-code-you-have-ever-seen-in-a-production-enterprise-environm 20 What is the most EVIL code you have ever seen in a production enterprise environment? QWERTY 2009-01-12T04:10:15Z 2009-08-26T01:45:04Z <p>What is the most evil or dangerous code fragment you have ever seen in a production environment at a company? I've never encountered production code that I would consider to be deliberately malicious and evil, so I'm quite curious to see what others have found.</p> <p>The most dangerous code I have ever seen was a stored procedure two linked-servers away from our core production database server. The stored procedure accepted any NVARCHAR(8000) parameter and executed the parameter on the target production server via an double-jump sp_executeSQL command. That is to say, the sp_executeSQL command executed another sp_executeSQL command in order to jump two linked servers. Oh, and the linked server account had sysadmin rights on the target production server.</p> http://stackoverflow.com/questions/517014/any-way-to-reconcile-feature-envy-with-long-parameter-list 0 Any way to reconcile Feature Envy with Long Parameter List? moffdub 2009-02-05T17:51:16Z 2009-06-14T16:00:07Z <p>I have been thinking about the Feature Envy smell lately. Suppose I have an object called DomainObject, that responds to a message "exportTo:someExport". This is basically the DomainObject's way to provide a copy of its internal state:</p> <pre><code>exportTo:someExport someExport setX:myX. someExport setY:myY. someExport setZ:myZ. </code></pre> <p>That way, in the data access layer, I could say something like this:</p> <pre><code>saveNew:someDomainObject |domainObjectExport| domainObjectExport := DomainObjectSQLWriter new. someDomainObject exportTo:domainObjectExport. db exec:(domainObjectExport generateInsertStatement). </code></pre> <p>This is an example of Feature Envy. In order to refactor, I should extract this code into a single message to someExport:</p> <pre><code>exportTo:someExport someExport setX:myX setY:myY setZ:myZ </code></pre> <p>However, now the setX:setY:setZ: message suffers from Long Parameter List (imagine 10 parameters instead of 3). Is there a way to have it both ways, or is Feature Envy only a bad smell if data is flowing out of the object you are envious of?</p> http://stackoverflow.com/questions/137060/too-many-pattern-suffixes-design-smell 5 Too many "pattern suffixes" - design smell? finnw 2008-09-26T00:15:21Z 2009-05-12T01:59:37Z <p>I just found myself creating a class called "InstructionBuilderFactoryMapFactory". That's 4 "pattern suffixes" on one class. It immediately reminded me of this:</p> <p><a href="http://www.jroller.com/landers/entry/the_design_pattern_facade_pattern" rel="nofollow">http://www.jroller.com/landers/entry/the_design_pattern_facade_pattern</a></p> <p>Is this a design smell? Should I impose a limit on this number? </p> <p>I know some programmers have similar rules for other things (e.g. no more than N levels of pointer indirection in C.)</p> <p>All the classes seem necessary to me. I have a (fixed) map from strings to factories - something I do all the time. The list is getting long and I want to move it out of the constructor of the class that uses the builders (that are created by the factories that are obtained from the map...) And as usual I'm avoiding Singletons.</p> http://stackoverflow.com/questions/642562/anything-wrong-with-this-kind-type-of-coding-style 2 Anything wrong with this kind/type of coding style? zeroin23 2009-03-13T12:58:07Z 2009-04-23T13:41:54Z <p>Is there anything wrong with the below code? It is java codes, but somehow it looked like a C program to me. If there is something incorrect with the OO implementation, can you tell me the name of the violation? looking at <a href="http://butunclebob.com/ArticleS.UncleBob.PrinciplesOfOod" rel="nofollow">S.O.L.I.D</a> or <a href="http://c2.com/cgi/wiki?CodeSmell" rel="nofollow">CodeSmell</a> but I still have no idea why the below codes looked weird to me. </p> <pre><code>public void root() { BufferedWriter bw=new BufferedWriter () writeHTMLHeader(bw); writeBody(bw); } public void writeHTMLHeader(BufferedWriter bw) { bw.write("&lt;html&gt;&lt;head&gt;"); ... bw.write("&lt;/head&gt;"); } public void writeBody(BufferedWriter bw) { bw.write("&lt;body&gt;"); ... //pull some information writeMenu(br); ... bw.write("&lt;/body&gt;&lt;/html&gt;"); } public void writeMenu(BufferedWriter bw) { Integer count=0; writeSubMenu(bw, count); bw.write("Some other menu items"); } public void writeSubMenu(BufferedWriter bw, Integer count) { bw.write("Some submenu items"); count=count+1; } </code></pre> <p>so it is OK to pass bw and other variables (and changing them) while passing down the chain of methods call?</p> http://stackoverflow.com/questions/758961/c-style-logic-and-refactoring 1 C style logic and refactoring Dr. Zim 2009-04-17T03:59:00Z 2009-04-17T04:22:47Z <p>I love languages that evaluate a single expression both as a value and as a boolean value. For example A = 1 evaluates to true, and so does 1. If this practice is very common to the developers in my think tank, is it wrong not to refactor out these expressions, assuming no side effects?</p> <p>I have a long standing discussion at work talking about code smells, but this logic complexity is <em>why</em> I like C so well. It will be tough for me to switch to Java for example, which does not allow this effect (false != 0).</p> <p>Any thoughts?</p> http://stackoverflow.com/questions/320847/best-way-to-relate-code-smells-to-a-non-technical-audience 14 Best way to relate code smells to a non technical audience? edg 2008-11-26T14:23:04Z 2009-04-11T20:23:52Z <p>I have been asked to present examples of code issues that were found during a code review. </p> <p>My audience is mostly non-technical and I want to try to express the issues in such a way that I convey the importance of "good code" versus "bad code".</p> <p>But as I review my presentation it seems to me I've glossed over the reasons why it is important to write good code. I've mentioned a number of reasons including ease of maintenance, increased likelihood of bugs, but with my "non tech" hat on they seem unconvincing.</p> <p>What is your advice for helping a non-technical audience relate to the importance of good code?</p> http://stackoverflow.com/questions/715839/smaller-methods-vs-clear-recursion-method 2 Smaller methods vs. Clear recursion method Sergio Romero 2009-04-03T21:42:07Z 2009-04-06T20:21:21Z <p>I'm reading Robert Martin's book "Clean Code" and most of what I've read makes sense and I'm trying to apply as much as I possibly can. One of the simplest most basic things he talks about is that methods should be small, he goes all the way as to say that they should not contain more than three lines.</p> <p>Considering that I broke down a recursive method into two smaller ones but in a code review one of my peers suggested that it looked weird and that recursion was kind of hidden.</p> <p>So, what is your opinion on that? I'm including both approaches below.</p> <p>This is the one method approach.</p> <pre><code>private object GetObject(string propertyName, object dataObject) { object returnObject; if (dataObject == null) return null; if (propertyName.Contains(".")) { Type dataObjectType = dataObject.GetType(); PropertyInfo dataObjectProperty = dataObjectType.GetProperty(propertyName.Substring(0, propertyName.IndexOf("."))); ThrowExceptionIfObjectOrPropertyInexistant(dataObjectProperty, dataObjectType.FullName, propertyName); object nestedObject = dataObjectProperty.GetValue(dataObject, null); string nestedObjectPropertyName = propertyName.Substring(propertyName.IndexOf(".") + 1); returnObject = GetObject(nestedObjectPropertyName, nestedObject); } else { returnObject = dataObject; } return returnObject; } </code></pre> <p>This is the two methods one.</p> <pre><code>private object GetObject(string propertyName, object dataObject) { object returnObject; if (dataObject == null) return null; if (propertyName.Contains(".")) { returnObject = GetNestedObject(propertyName, dataObject); } else { returnObject = dataObject; } return returnObject; } private object GetNestedObject(string propertyName, object dataObject) { object returnObject; Type dataObjectType = dataObject.GetType(); PropertyInfo dataObjectProperty = dataObjectType.GetProperty(propertyName.Substring(0, propertyName.IndexOf("."))); ThrowExceptionIfObjectOrPropertyInexistant(dataObjectProperty, dataObjectType.FullName, propertyName); object nestedObject = dataObjectProperty.GetValue(dataObject, null); string nestedObjectPropertyName = propertyName.Substring(propertyName.IndexOf(".") + 1); returnObject = GetObject(nestedObjectPropertyName, nestedObject); return returnObject; } </code></pre> http://stackoverflow.com/questions/653789/elegantly-reducing-the-number-of-dependencies-in-asp-net-mvc-controllers 3 Elegantly reducing the number of dependencies in ASP.NET MVC controllers Garry Shutler 2009-03-17T11:09:34Z 2009-04-05T19:32:37Z <p>We are developing what is becoming a sizable ASP.NET MVC project and a code smell is starting to raise its head.</p> <p>Every controller has 5 or more dependencies, some of these dependencies are only used for 1 of the action methods on the controller but obviously are created for every instance of the controller.</p> <p>I'm struggling to think of a good way to reduce the number of objects that are created needlessly for 90% of calls.</p> <p>Here are a few ideas I'm toying around with:</p> <ol> <li>Splitting the controllers down into smaller, more targeted ones. <ul> <li>Currently we have roughly a controller per domain entity, this has led to nice looking URLs which we would like to emulate, meaning we would end up with a much more complicated routing scheme.</li> </ul></li> <li>Passing in an interface wrapping the IoC container. <ul> <li>This would mean the objects would only be created when they were explicitly required. However, this just seems like putting lipstick on a pig.</li> </ul></li> <li>Extending the framework in some way to achieve some crazy combination of the two.</li> </ol> <p>I feel that others must have come across this same problem; so how did you solve this or did you just live with it because it isn't really that big a problem in your eyes?</p> http://stackoverflow.com/questions/625394/are-there-any-valid-arguments-for-using-unnamed-constants 2 Are there any valid arguments for using unnamed constants? Ola Eldøy 2009-03-09T08:29:23Z 2009-03-27T11:55:57Z <p>A commonly used term is "<a href="http://en.wikipedia.org/wiki/Magic%5Fnumber%5F%28programming%29#Unnamed%5Fnumerical%5Fconstant" rel="nofollow">Magic numbers</a>". As <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/120747#120747">discussed</a> in a <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them">related question</a>, this is considered a <a href="http://en.wikipedia.org/wiki/Code%5Fsmell" rel="nofollow">code smell</a>. I assume the same would go for string constants, although the term "Magic strings" is not in common use.</p> <p>So to generalize a bit, it would seem that ALL constants should be named, thus making them "unmagical". Or am I missing something? Are there valid uses of unnamed constants?</p> http://stackoverflow.com/questions/686888/is-the-use-of-protected-methods-a-bad-thing 2 Is the use of protected methods a bad thing? Mal Ross 2009-03-26T18:00:24Z 2009-03-27T10:43:58Z <p>A friend of mine has just posited that protected methods (yes, <em>methods</em>) constitute a <a href="http://en.wikipedia.org/wiki/Code%5Fsmell" rel="nofollow">code smell</a>. That is, they're indicative of <em>potential</em> bad programming practice.</p> <p>My gut says he's wrong, but I'm struggling to come up with a good example of where they're a good, legitimate solution. For example, I might be tempted to put the protected method in a separate utility class that both base and derived classes could use as required. But that might not cover situations in which the method wants/needs access to data members and/or private methods of that object instance.</p> <p>What's your take on it?</p> <p>Can you provide good examples of why protected methods aren't necessarily a bad thing?</p> <p>Or am I just wrong? :)</p> <p>BTW, I'll not be marking any answer as accepted on this one, as someone has (correctly) tagged this question as subjective. Just so as you know. :)</p> http://stackoverflow.com/questions/675237/why-use-tuples-instead-of-objects 11 Why use tuples instead of objects? Mr. Shiny and New 2009-03-23T21:08:20Z 2009-03-23T23:22:56Z <p>The codebase where I work has an object called Pair where A and B are the types of the first and second values in the Pair. I find this object to be offensive, because it gets used instead of an object with clearly named members. So I find this:</p> <pre><code>List&lt;Pair&lt;Integer, Integer&gt;&gt; productIds = blah(); // snip many lines and method calls void doSomething(Pair&lt;Integer, Integer&gt; id) { Integer productId = id.first(); Integer quantity = id.second(); } </code></pre> <p>Instead of</p> <pre><code>class ProductsOrdered { int productId; int quantityOrdered; // accessor methods, etc } List&lt;ProductsOrderded&gt; productsOrdered = blah(); </code></pre> <p>Many other uses of the Pair in the codebase are similarly bad-smelling.</p> <p>I Googled tuples and they seem to be often misunderstood or used in dubious ways. Is there a convincing argument for or against their use? I can appreciate not wanting to create huge class hierarchies but are there realistic codebases where the class hierarchy would explode if tuples weren't used?</p> http://stackoverflow.com/questions/587395/what-would-you-say-to-someone-who-wants-to-make-everything-a-net-control 3 What would you say to someone who wants to make everything a .NET control? Larsenal 2009-02-25T19:14:15Z 2009-02-25T20:03:22Z <p>For example, we have some CSS rules to define our form layout. We use the following markup:</p> <pre><code>&lt;div class="foo"&gt; &lt;label class="bar req"&gt;Name&lt;em&gt;*&lt;/em&gt;&lt;/label&gt; &lt;span&gt; &lt;asp:TextBox runat="server"/&gt; &lt;label&gt;First&lt;/label&gt; &lt;/span&gt; &lt;span&gt; &lt;asp:TextBox runat="server"/&gt; &lt;label&gt;Last&lt;/label&gt; &lt;/span&gt; &lt;div class="clear"&gt;&lt;/div&gt; &lt;/div&gt; </code></pre> <p>In my opinion, this is perfectly fine markup. Following these rules is not a burden since you're supposed to worry about clean, correct markup anyway. It's being suggested that we "enforce" these rules with a control that looks something like the following:</p> <pre><code>&lt;x:FormField runat="server" Label="Name" Required="True"&gt; &lt;x:TextBox runat="server" hint="First"/&gt; &lt;x:TextBox runat="server" hint="Last"/&gt; &lt;/x:FormField&gt; </code></pre> <p>My instinct tells me that XHTML markup is our friend, not our enemy. Two questions:</p> <ol> <li>Am I completely off base to resist making all these custom controls just to emit markup?</li> <li>If you agree with me, what reasons would you give?</li> </ol> http://stackoverflow.com/questions/428282/is-referencing-an-implementing-base-type-in-an-interface-a-code-smell 3 Is referencing an implementing base type in an interface a code smell? Will 2009-01-09T14:41:36Z 2009-02-19T01:43:33Z <p>I'm faced with a design decision that doesn't smell to me, but gives me pause. Take a look at the following code sample:</p> <pre><code>public interface IGenerator { ///&lt;summary&gt; /// Combines two generators; performs magic as well /// &lt;/summary&gt; BaseGenerator Combine(BaseGenerator next); ///&lt;summary&gt; /// Does what a generator does. /// &lt;/summary&gt; object GenerateLolKThx(); } public abstract class BaseGenerator : IGenerator { ///&lt;summary&gt; /// Combines two generators; performs magic as well /// &lt;/summary&gt; public BaseGenerator Combine(BaseGenerator next) { // do stuff that I really don't want implementors to try and do // because its complex and can result in bad juju if done wrong return SuperSecretCombine(this, next); } ///&lt;summary&gt; /// Does what a generator does. /// &lt;/summary&gt; public abstract object GenerateLolKThx(); /* other base class methods */ } </code></pre> <p>I don't want to go into more detail about WHY I don't want to trust implementors with the Combine method; suffice it to say its complex. I do, however, want to do my best to force anybody who wants to implement IGenerator to extend BaseGenerator, as that's the only way to properly combine two generators. This is enforced by the interface itself.</p> <p>I'm worried that there are unexpected issues (indicated by a "smell") caused by my referencing an implementation of an interface within that interface. But I also know that this sort of thing isn't unheard of in CS, nor is it in and of itself bad (i.e., an XML schema that describes XSDs and language compilers that are written in the language they compile).</p> <p>I'm interested in reasons WHY this might be a code smell, possible pitfalls caused by this type of design, and alternative designs that accomplish what I desire (ensure my implementation of Combine is used to combine any and all types of generators). TIA.</p> http://stackoverflow.com/questions/461475/code-smell-adjusting-variables-with-1 3 Code Smell? - Adjusting variables with +- 1 willcodejavaforfood 2009-01-20T14:20:01Z 2009-02-19T01:42:13Z <p>I just wrote this method:</p> <pre><code>private String getNameOfFileFrom(String path) { int indexOfLastSeparator = path.lastIndexOf('/'); if (indexOfLastSeparator &gt; -1) { return path.substring(indexOfLastSeparator + 1); } else { return path; } } </code></pre> <p>The line that bothers me is:</p> <pre><code>return path.substring(indexOfLastSeparator + 1); </code></pre> <p>Is that a bad practice to modify the expression inline like that? Suggestions on how to refactor to increase readability would be most welcome.</p> <p>----Edit---- OK update after comments. Thanks everyone for answering :) I am not looking to actually change the the value of the variable at all just the expression it is used it.</p> <p>Another posted suggested I could break out that part of the expression as in the second code snippet below. Better/worse/no difference? :) I am starting to suspect I am being overly cautios here.</p> <pre><code>return path.substring(indexOfLastSeparator + 1); </code></pre> <p>or</p> <pre><code>int indexOfFirstCharInFileName = indexOfLastSeparator + 1; return path.substring(indexOfFirstCharInFileName); </code></pre> http://stackoverflow.com/questions/513837/how-can-i-get-rid-of-this-smell-refactoring-switch-statement 1 How can I get rid of this smell? (refactoring switch statement) innerJL 2009-02-04T23:17:54Z 2009-02-05T00:10:07Z <p>Yesterday i was playing with jQGrid plugin and ASP.NET. Everything turned out well, my grid is working now, but i have two methods, that make my code smell. </p> <p>smelly methods:</p> <pre><code>private IOrderedEnumerable&lt;Employee&gt; GetOrderedEmployees(Column sortColumn, bool ascending) { switch (sortColumn) { case Column.Name: { return GetOrderedEmployees(e =&gt; e.Name, ascending); } case Column.Salary: { return GetOrderedEmployees(e =&gt; e.Salary, ascending); } default: { return GetOrderedEmployees(e =&gt; e.ID, ascending); } } } private IOrderedEnumerable&lt;Employee&gt; GetOrderedEmployees&lt;TSortKey&gt;(Func&lt;Employee, TSortKey&gt; func, bool ascending) { return ascending ? Context.Employees.OrderBy(func) : Context.Employees.OrderByDescending(func); } </code></pre> <p>I can't find out, how to refactor them properly. It's seems the best solution is to return only lambdas (f.e <code>return e=&gt;e.Name</code>) in the switch statement, but how can it be done?</p> <p>Edit - in the switch statement <code>ascending</code> argument is passed 3 times. Isn't it a duplication?</p> http://stackoverflow.com/questions/300581/better-way-to-build-objects-in-c 2 Better way to build objects in C# Michael Kniskern 2008-11-18T23:45:33Z 2008-12-03T17:03:29Z <p>I have an application with my object types that inherit from a base class that contains the majority of properties for the application objects. All the object types are stored in one table in the database. The "ClassType" column determines what object type I cast the SqlDataReader row to. </p> <p>Here is my current implementation:</p> <pre><code>SqlDataReader dr = SqlServerHelper.ExecuteReader("MyStoreProc", MySqlParmas); if(dr.HasRows) { while(dr.Read()) { switch(dr["ClassType"].ToString()) { case "ClassA": //cast sqldatareader a ClassA object ClassA a = new ClassFactory.CreateClassA(object p1, object p2); case "ClassB": //cast sqldatareader a ClassB object ClassB b = new ClassFactory.CreateClassB(object p1, object p2); //it continues for all objects with app.... } } } dr.Close() </code></pre> <p>My question is is their a better implementation for this type of processing?</p> http://stackoverflow.com/questions/72682/is-there-a-name-for-this-anti-pattern-code-smell 12 Is there a name for this anti-pattern/code smell? Joel Coehoorn 2008-09-16T14:10:30Z 2008-11-19T00:31:49Z <p>Let me start by saying that I do not advocate this approach, but I saw it recently and I was wondering if there was a name for it I could use to point the guilty party to. So here goes.</p> <p>Now you have a method, and you want to return a value. You <em>also</em> want to return an error code. Of course, exceptions are a much better choice, but for whatever reason you want an error code instead. Remember, I'm playing devil's advocate here. So you create a generic class, like this:</p> <pre><code>class FunctionResult&lt;T&gt; { public T payload; public int result; } </code></pre> <p>And then declare your functions like this:</p> <pre><code>FunctionResult&lt;string&gt; MyFunction() { FunctionResult&lt;string&gt; result; //... return result; } </code></pre> <p>One variation on this pattern is to use an enum for the error code instead of a string. Now, back to my question: is there a name for this, and if so what is it?</p> http://stackoverflow.com/questions/237112/what-is-the-best-way-to-execute-sequential-methods 4 What is the best way to execute sequential methods? jfar 2008-10-25T22:24:31Z 2008-10-26T01:01:38Z <p>Working on a project where a sequential set of methods must be run every x seconds. Right now I have the methods contained within another "parent method", and just sequentially call them right after another.</p> <pre><code>class DoTheseThings() { DoThis(); NowDoThat(); NowDoThis(); MoreWork(); AndImSpent(); } </code></pre> <p>Each method must run successfully without throwing an exception before the next step can be done. So now I wrapped each of those methods with a while and try try catch, then in the catch re execute that method again.</p> <pre><code>while( !hadError ) { try { DoThis(); } catch(Exception doThisException ) { hadError = true; } } </code></pre> <p>This seems smelly and not very dry. Is there a better way to do this so I'm not wrapping any new functionality in the same methods. Isn't some kind of Delegate collection the proper way to implement this? </p> <p>Is there a more "proper" solution?</p> http://stackoverflow.com/questions/182143/persuading-developers-to-fix-smelly-but-working-code 11 Persuading developers to fix smelly but working code? Paul Stephenson 2008-10-08T11:00:46Z 2008-10-21T17:44:43Z <p>In our company, developers always have dozens of important tasks assigned and tight deadlines in which to complete them.</p> <p>In this environment, a code review often shows that their program will execute correctly but is "smelly", i.e. hard to read, hard to maintain and a potential breeding ground for bugs. How do you persuade developers (or their managers) that they need to spend extra time modifying their work?</p> <p>In my experience the long-term benefits of clean code can rarely be justified against the short-term demands of the business and those other high-priority tasks. Does it even make overall business sense to strive for such cleanliness after development time has been spent producing the correct but smelly version?</p> http://stackoverflow.com/questions/121269/code-smells-in-non-oo-forms 3 "Code Smells" in non OO forms... MaTT 2008-09-23T14:18:25Z 2008-10-16T00:17:40Z <p>So, we saw the post on <a href="http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them">Code Smells</a> and how to fix them...but what about for us NON object oriented folk? I use embedded C a LOT and while all the responses to the said post were great, I wondered if anyone had some input about the straight-C world? Some of the things mentioned in the other post do not apply (and some were even completely opposite) to my world... What do you guys think?</p> http://stackoverflow.com/questions/115269/my-java-factory-method-smells-how-do-i-fix-it 8 My Java factory method smells. How do I fix it? slim 2008-09-22T14:50:58Z 2008-09-22T23:54:06Z <p>There's something very unsatisfactory about this code:</p> <pre><code>/* Given a command string in which the first 8 characters are the command name padded on the right with whitespace, construct the appropriate kind of Command object. */ public class CommandFactory { public Command getCommand(String cmd) { cmdName = cmd.subString(0,8).trim(); if(cmdName.equals("START")) { return new StartCommand(cmd); } if(cmdName.equals("END")) { return new EndCommand(cmd); } // ... more commands in more if blocks here // else it's a bad command. return new InvalidCommand(cmd); } } </code></pre> <p>I'm unrepentant about the multiple exit points - the structure is clear. But I'm not happy about the series of near-identical if statements. I've considered making a Map of Strings to Commands:</p> <pre><code>commandMap = new HashMap(); commandMap.put("START",StartCommand.class); // ... etc. </code></pre> <p>... then using Reflection to make instances of the appropriate class looked up from the Map. However while conceptually elegant, this involves a fair amount of Reflection code that whoever inherits this code might not appreciate - although that cost might be offset by the benefits. All the lines hardcoding values into the commandMap smell almost as bad as the if block.</p> <p>Even better would be if the factory's constructor could scan the classpath for subclasses of Command, query them for String representations, and automatically add them them to its repertoire.</p> <p>So - how should I go about refactoring this?</p> <p>I guess some of the frameworks out there give me this kind of thing for free. Let's assume I'm not in a position to migrate this stuff into such a framework.</p>