Is there an alternative to hyper-indented code? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T23:01:14Z http://stackoverflow.com/feeds/question/360063 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/360063/is-there-an-alternative-to-hyper-indented-code 7 Is there an alternative to hyper-indented code? Kip 2008-12-11T16:52:21Z 2008-12-22T22:55:51Z <p>I often run into code that has to perform lots of checks and ends up being indented at least five or six levels before really doing anything. I am wondering what alternatives exist.</p> <p>Below I've posted an example of what I'm talking about (which isn't actual production code, just something I came up with off the top of my head).</p> <pre><code>public String myFunc(SomeClass input) { Object output = null; if(input != null) { SomeClass2 obj2 = input.getSomeClass2(); if(obj2 != null) { SomeClass3 obj3 = obj2.getSomeClass3(); if(obj3 != null &amp;&amp; !BAD_OBJECT.equals(obj3.getSomeProperty())) { SomeClass4 = obj3.getSomeClass4(); if(obj4 != null) { int myVal = obj4.getSomeValue(); if(BAD_VALUE != myVal) { String message = this.getMessage(myVal); if(MIN_VALUE &lt;= message.length() &amp;&amp; message.length() &lt;= MAX_VALUE) { //now actually do stuff! message = result_of_stuff_actually_done; } } } } } } return output; } </code></pre> http://stackoverflow.com/questions/360063/is-there-an-alternative-to-hyper-indented-code/360070#360070 16 Answer by Galwegian for Is there an alternative to hyper-indented code? Galwegian 2008-12-11T16:54:39Z 2008-12-11T16:54:39Z <p>See <a href="http://www.codinghorror.com/blog/archives/000486.html" rel="nofollow">Flattening Arrow Code</a> for help.</p> <blockquote> <ol> <li>Replace conditions with guard clauses.</li> <li>Decompose conditional blocks into seperate functions.</li> <li>Convert negative checks into positive checks.</li> </ol> </blockquote> http://stackoverflow.com/questions/360063/is-there-an-alternative-to-hyper-indented-code/360071#360071 8 Answer by ieure for Is there an alternative to hyper-indented code? ieure 2008-12-11T16:54:44Z 2008-12-11T16:54:44Z <p>Return early:</p> <pre><code>if (input == null) { return output; } </code></pre> http://stackoverflow.com/questions/360063/is-there-an-alternative-to-hyper-indented-code/360072#360072 1 Answer by Bill the Lizard for Is there an alternative to hyper-indented code? Bill the Lizard 2008-12-11T16:54:49Z 2008-12-11T17:00:02Z <p>You can get rid of some of the nesting by using guard clauses.</p> <pre><code>public String myFunc(SomeClass input) { Object output = null; if(input == null) return ""; SomeClass2 obj2 = input.getSomeClass2(); if(obj2 == null) return ""; SomeClass3 obj3 = obj2.getSomeClass3(); if(obj3 == null || BAD_OBJECT.equals(obj3.getSomeProperty())) { return ""; } SomeClass4 = obj3.getSomeClass4(); if(obj4 == null) return ""; int myVal = obj4.getSomeValue(); if(BAD_VALUE == myVal) return ""; String message = this.getMessage(myVal); if(MIN_VALUE &lt;= message.length() &amp;&amp; message.length() &lt;= MAX_VALUE) { //now actually do stuff! message = result_of_stuff_actually_done; } return output; } </code></pre> <p>Change all of the <code>return "";</code> statements that I used to illustrate the point to statements that throw a descriptive variety of Exception, though.</p> http://stackoverflow.com/questions/360063/is-there-an-alternative-to-hyper-indented-code/360082#360082 2 Answer by Andrew Rollings for Is there an alternative to hyper-indented code? Andrew Rollings 2008-12-11T16:56:36Z 2008-12-11T16:56:36Z <p>Yes, you could remove the indents as follows:</p> <p>Basically do the checks sequentially, and compare against failure rather than success. It removes the nesting and makes it easier to follow (IMO).</p> <pre><code>public String myFunc(SomeClass input) { Object output = null; if (input == null) { return null; } SomeClass2 obj2 = input.getSomeClass2(); if (obj2 == null) { return null; } SomeClass3 obj3 = obj2.getSomeClass3(); if (obj3 == null || BAD_OBJECT.equals(obj3.getSomeProperty())) { return null; } SomeClass4 = obj3.getSomeClass4(); if (obj4 == null) { return null; } int myVal = obj4.getSomeValue(); if (BAD_VALUE == myVal) { return null; } String message = this.getMessage(myVal); if (MIN_VALUE &lt;= message.length() &amp;&amp; message.length() &lt;= MAX_VALUE) { //now actually do stuff! message = result_of_stuff_actually_done; } return output; } </code></pre> http://stackoverflow.com/questions/360063/is-there-an-alternative-to-hyper-indented-code/360093#360093 1 Answer by Stephane Grenier for Is there an alternative to hyper-indented code? Stephane Grenier 2008-12-11T16:58:19Z 2008-12-11T16:58:19Z <p>If you don't need to process stop, don't embed.</p> <p>For example, you can do:</p> <pre><code>if(input == null &amp;&amp; input.getSomeClass2() == null &amp;&amp; ...) return null; // Do what you want. </code></pre> <p>Assuming you're using a language like Java that orders the conditionals.</p> <p>Alternatively you could:</p> <pre><code>if(input == null &amp;&amp; input.getSomeClass2() == null) return null; SomeClass2 obj2 = input.getSomeClass2(); if(obj2 == null) return null; ... // Do what you want. </code></pre> <p>For more complex cases. </p> <p>The idea is to return from the method if you don't need to process. Embedding in a large nested if is almost impossible to read.</p> http://stackoverflow.com/questions/360063/is-there-an-alternative-to-hyper-indented-code/360127#360127 0 Answer by Jamal Hansen for Is there an alternative to hyper-indented code? Jamal Hansen 2008-12-11T17:08:21Z 2008-12-11T17:08:21Z <p>if it's just a readability issue you could make it clearer by moving the nesting to another method. Additionally convert to guard style if you like.</p> <pre><code>public String myFunc(SomeClass input) { Object output = null; if (inputIsValid(input)) { //now actually do stuff! message = result_of_stuff_actually_done; } return output; } private bool inputIsValid(SomeClass input) { // ***************************************** // convert these to guard style if you like // ***************************************** if(input != null) { SomeClass2 obj2 = input.getSomeClass2(); if(obj2 != null) { SomeClass3 obj3 = obj2.getSomeClass3(); if(obj3 != null &amp;&amp; !BAD_OBJECT.equals(obj3.getSomeProperty())) { SomeClass4 = obj3.getSomeClass4(); if(obj4 != null) { int myVal = obj4.getSomeValue(); if(BAD_VALUE != myVal) { String message = this.getMessage(myVal); if(MIN_VALUE &lt;= message.length() &amp;&amp; message.length() &lt;= MAX_VALUE) { return true; } } } } } } return false; } </code></pre> http://stackoverflow.com/questions/360063/is-there-an-alternative-to-hyper-indented-code/360251#360251 6 Answer by Oscar Reyes for Is there an alternative to hyper-indented code? Oscar Reyes 2008-12-11T17:49:05Z 2008-12-22T22:55:51Z <h2>Yes there is an alternative.</h2> <p>And please never code like that ( unless you're maintaining your own code ) </p> <p>I have had to maintain code like that and is as awful as a Charles_Bronsonn film ( some people like those films though ) </p> <p>This kind of code is usual comming from procedural languages such as C ( is C procedural :P ) Anyway. </p> <p>That was the reason why ObjectOrientedProgrammng became mainstream. It allows you to create objects and add state to them. Create operations with that state. They're not only property holders.</p> <p>I know you made up that scenario but most of the times all those conditions are <strong>business rules!!</strong>. Most of the times those rules CHANGE, and if the original developer is not longer there ( or a couple of months have already passed ) there won't be a feasible way to modify that code. The rules are awkward to read. And a lot of pain comes from that.</p> <h2>What can you do?</h2> <p>1.) Keep the state of the object INSIDE the object using <strong>private</strong> member variables ( AKA attributes, properties, instances vars etc. ) </p> <p>2.) Make the methods private ( that's what that access level is for ) so none can call them by mistake and put the program in the NullPointerException land. </p> <p>3.) Create methods that define what the condition is. Thats what they call <em>self documenting code</em> </p> <p>So instead of </p> <pre><code>// validates the user has amount if( amount &gt; other &amp;&amp; that != var || startsAligned() != false ) { } </code></pre> <p>Create a method </p> <pre><code>if( isValidAmount() ) { } private boolean isValidAmount() { return ( amount &gt; other &amp;&amp; that != var || startsAligned() != false ); } </code></pre> <p>I know it looks verbose, but allows human be able to read the code. The compiler does not care about readability.</p> <p>So how would it look like your hypernested with this approach?</p> <p>Like this.</p> <pre><code>// these are business rules // then it should be clear that those rules are // and what they do. // internal state of the object. private SomeClass2 obj2; private SomeClass3 obj3; private SomeClass4 obj4; //public String myFunc( SomeClass input ) { public String myComplicatedValidation( SomeClass input ) { this.input = input; if ( isValidInput() &amp;&amp; isRuleTwoReady() &amp;&amp; isRuleTreeDifferentOf( BAD_OBJECT ) &amp;&amp; isRuleFourDifferentOf( BAD_VALUE ) &amp;&amp; isMessageLengthInRenge( MIN_VALUE , MAX_VALUE ) ) { message = resultOfStuffActuallyDone(); } } // These method names are self explaining what they do. private final boolean isValidInput() { return this.input != null; } private final boolean isRuleTwoReady() { obj2 = input.getSomeClass2(); return obj2 != null ; } private final boolean isRuleTreeDifferentOf( Object badObject ) { obj3 = obj2.getSomeClass3(); return obj3 != null &amp;&amp; !badObject.equals( obj3.getSomeProperty() ); } private final boolean isRuleFourDifferentOf( int badValue ) { obj4 = obj3.getSomeClass4(); return obj4 != null &amp;&amp; obj4.getSomeValue() != badValue; } private final boolean isMessageLengthInRenge( int min, int max ) { String message = getMessage( obj4.getSomeValue() ); int length = message.length(); return length &gt;= min &amp;&amp; length &lt;= max; } </code></pre> <p>I know, It looks like more coding. But think about this. The rules are almost human readable </p> <pre><code> if ( isValidInput() &amp;&amp; isRuleTwoReady() &amp;&amp; isRuleTreeDifferentOf( BAD_OBJECT ) &amp;&amp; isRuleFourDifferentOf( BAD_VALUE ) &amp;&amp; isMessageLengthInRenge( MIN_VALUE , MAX_VALUE ) ) { message = resultOfStuffActuallyDone(); } </code></pre> <p>May be almost read as</p> <pre><code>if is valid input and rule two is ready and rule three is not BAD OBJECT and rule four is no BAD_VALUE and the message length is in range </code></pre> <p>And by keeping the rules vary small, the coder may understand them very easily and not be afraid of brake something.</p> <p>A lot more can be read about this at: <strong><a href="http://www.refactoring.com/" rel="nofollow">http://www.refactoring.com/</a></strong></p>