Need a pattern to call Verify method for every instance method pattern - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T07:44:12Z http://stackoverflow.com/feeds/question/782729 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/782729/need-a-pattern-to-call-verify-method-for-every-instance-method-pattern 0 Need a pattern to call Verify method for every instance method pattern PuzzleCracker 2009-04-23T17:17:07Z 2009-04-23T18:30:32Z <p>I have the following code:</p> <pre><code>class Foo { public Foo() { Size = true; } private bool _size; protected bool Size { get { _size; } set { _size = value; } } } class CrazyFoo : Foo { public void First() { if (!Size) return; } public void Second() { if (!Size) return; } public void Finished() { if (!Size) return; } } </code></pre> <p>What is the best way to implement this sort of pattern, as it drives me nuts to type </p> <pre><code> if(!Size) return; </code></pre> <p>perhaps I can do it with attributes or AOP?</p> <p>What is the best and simplest way?</p> <p>Thanks</p> http://stackoverflow.com/questions/782729/need-a-pattern-to-call-verify-method-for-every-instance-method-pattern/782746#782746 0 Answer by Lucero for Need a pattern to call Verify method for every instance method pattern Lucero 2009-04-23T17:22:45Z 2009-04-23T17:22:45Z <p>Maybe just use one method and an Enum with the values <code>First</code>, <code>Second</code>, <code>Finished</code> etc.? It's hard to tell because, apart from that one check, you don't say what is common. AOP could be a solution, but maybe not, since aspects are usually more general in their conceptional nature.</p> <p>BTW, maybe choose a different naming for your samples in the future, this may offend some people. (Edited to match new naming)</p> http://stackoverflow.com/questions/782729/need-a-pattern-to-call-verify-method-for-every-instance-method-pattern/782760#782760 0 Answer by Reed Copsey for Need a pattern to call Verify method for every instance method pattern Reed Copsey 2009-04-23T17:26:17Z 2009-04-23T17:26:17Z <p>From a "pattern" standpoint, though, this doesn't seem onerous to me. It seems perfectly reasonable to me to type:</p> <pre><code>if(!Size) return; </code></pre> <p>You're explicitly handling the cases you want. In your case, this check is pretty specific to what you are working with, from what I can tell (from your original + edits). I'd personally choose a more obvious name, since it does seem a little strange (even in your original), and not completely obvious what's happening. </p> <p>Even with AOP, you'd be adding some other information here on each method, to make sure your aspect was handled.</p> http://stackoverflow.com/questions/782729/need-a-pattern-to-call-verify-method-for-every-instance-method-pattern/782767#782767 0 Answer by JP for Need a pattern to call Verify method for every instance method pattern JP 2009-04-23T17:27:47Z 2009-04-23T17:27:47Z <p>I would not call it "simple" (you have the simplest way), but you could do it declaratively using the <a href="http://msdn.microsoft.com/en-us/library/dd140088.aspx" rel="nofollow">Validation application block</a> in Enterprise Library.</p> http://stackoverflow.com/questions/782729/need-a-pattern-to-call-verify-method-for-every-instance-method-pattern/782854#782854 1 Answer by Michael Meadows for Need a pattern to call Verify method for every instance method pattern Michael Meadows 2009-04-23T17:56:11Z 2009-04-23T18:08:33Z <p>If you have the same guard statement at the beginning of too many methods, you can create a method called executeWithGuard:</p> <pre><code>private void executeWithGuard(Action method) { if (HeadSize) method(); } </code></pre> <p>Then you could do this:</p> <pre><code>public void ScreenFirstShot() { executeWithGuard(() =&gt; { // code here }); } public void ScreenSecondShot() { ExecuteWithGuard(() =&gt; { // code here }); } public void CrazyUp() { ExecuteWithGuard(() =&gt; { // code here }); } </code></pre> <p>There's no less code doing this... in fact, there's probably more code, but it does allow you to not have to do a find/replace if your guard condition ever changes. I'd only suggest it as a last resort, though. It's very possible that your real problem is that you're doing your validation too far down the call tree. If you can do it at a higher level, you may save yourself from all of this validation.</p> <p><strong>ALSO</strong></p> <p>Have a look at the <a href="http://en.wikipedia.org/wiki/Null%5FObject%5Fpattern" rel="nofollow">null object patttern</a>. This pattern can be used in some special cases to prevent or simplify state checking.</p> <p><strong>ALSO (rev 2)</strong></p> <p>It's hard to know what your intent is since the question focuses on a specific solution, but if you're executing these methods sequentially, you can look at using the <a href="http://en.wikipedia.org/wiki/Strategy%5Fpattern" rel="nofollow">strategy pattern</a>, and putting the check in your base strategy class.</p>