vote up 1 vote down star

I've got a massive script with about 20 embedded if statements (Yay!) that is used to parse through a data file. And in a sense, that's correct because the script should not continue operating if any of those evaluations fail.

But my gut says there's a more elegant way to accomplish the same thing. I'm familiar with the statemachine plugin for rails, but that seems to be overkill (it seems to be overkill).

Any chance there's a slightly more elegant way to reduce the number of embedded 'ifs' either through a workflow, or some other way?

flag

1  
It probably depends on the code quite a bit. Can you post it? – molf Aug 26 at 14:09
1  
DUDES...this site is better than College! Thoughtful responses, friendly people, this is great! – btelles Aug 26 at 15:40

5 Answers

vote up 8 vote down check

reverse the conditions of the if statements and leave the particular function(if you can). This way you get a lot of if's behind each other instead of nested

link|flag
1  
This is a good approach without doing anything exotic like a state machine. Another term for this technique is "guard" clauses – matt Aug 26 at 14:54
2  
Perfect! Thanks Reiner! Found a link that explains the Guard clause in Ruby: thechrisoshow.com/2009/2/… – btelles Aug 26 at 15:27
no problem. glad i could help – reinier Aug 26 at 18:18
vote up 2 vote down

This is mostly code specific, but I can suggest 2 ways:

  1. case .. when .. then .. structure.
  2. Effectively using send or eval methods.
link|flag
vote up 1 vote down

One approach is to construct a hash or array in which the contents are Procs that each encapsulate a given conditional. Then you can loop through the procs and test your data against each one.

link|flag
Interesting concept...then I could test any given Proc without having to go through any other ones. – btelles Aug 26 at 15:36
vote up 0 vote down

Just refactor the code and split parts of the conditional sections out to different functions. It will not reduce the nested if deepths but make it more readable.

Otherwise there is very little to say as it is a very generic question.

link|flag
vote up 0 vote down

Use haml :P

(so you dont need to end the if tags..)

link|flag
or Python...... – Xiong Chiamiov Aug 26 at 15:44
Hi there. Mmmm i think you may have gotten some signals mixed. I think you may have thought that script meant "html," but it didn't. If not, then although HAML will handle embedded if statements without requiring 'end,' it's far from a full ruby parser, and after trying to put too much logic into it, I found it has many limitations. Hope this helps you with future answers! – btelles Aug 26 at 18:22

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.