Is there an alternative to hyper-indented code? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T23:01:14Zhttp://stackoverflow.com/feeds/question/360063http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/360063/is-there-an-alternative-to-hyper-indented-code7Is there an alternative to hyper-indented code?Kip2008-12-11T16:52:21Z2008-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 && !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 <= message.length() &&
message.length() <= 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#36007016Answer by Galwegian for Is there an alternative to hyper-indented code?Galwegian2008-12-11T16:54:39Z2008-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#3600718Answer by ieure for Is there an alternative to hyper-indented code?ieure2008-12-11T16:54:44Z2008-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#3600721Answer by Bill the Lizard for Is there an alternative to hyper-indented code?Bill the Lizard2008-12-11T16:54:49Z2008-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 <= message.length() &&
message.length() <= 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#3600822Answer by Andrew Rollings for Is there an alternative to hyper-indented code?Andrew Rollings2008-12-11T16:56:36Z2008-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 <= message.length() &&
message.length() <= 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#3600931Answer by Stephane Grenier for Is there an alternative to hyper-indented code?Stephane Grenier2008-12-11T16:58:19Z2008-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 && input.getSomeClass2() == null && ...)
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 && 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#3601270Answer by Jamal Hansen for Is there an alternative to hyper-indented code?Jamal Hansen2008-12-11T17:08:21Z2008-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 && !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 <= message.length() &&
message.length() <= MAX_VALUE)
{
return true;
}
}
}
}
}
}
return false;
}
</code></pre>
http://stackoverflow.com/questions/360063/is-there-an-alternative-to-hyper-indented-code/360251#3602516Answer by Oscar Reyes for Is there an alternative to hyper-indented code?Oscar Reyes2008-12-11T17:49:05Z2008-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 > other && that != var || startsAligned() != false ) {
}
</code></pre>
<p>Create a method </p>
<pre><code>if( isValidAmount() ) {
}
private boolean isValidAmount() {
return ( amount > other && 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() &&
isRuleTwoReady() &&
isRuleTreeDifferentOf( BAD_OBJECT ) &&
isRuleFourDifferentOf( BAD_VALUE ) &&
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 && !badObject.equals( obj3.getSomeProperty() );
}
private final boolean isRuleFourDifferentOf( int badValue ) {
obj4 = obj3.getSomeClass4();
return obj4 != null && obj4.getSomeValue() != badValue;
}
private final boolean isMessageLengthInRenge( int min, int max ) {
String message = getMessage( obj4.getSomeValue() );
int length = message.length();
return length >= min && length <= 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() &&
isRuleTwoReady() &&
isRuleTreeDifferentOf( BAD_OBJECT ) &&
isRuleFourDifferentOf( BAD_VALUE ) &&
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>