Refactoring with Lambda's and Delegates - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T23:37:47Z http://stackoverflow.com/feeds/question/809945 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/809945/refactoring-with-lambdas-and-delegates 1 Refactoring with Lambda's and Delegates Josh Smeaton 2009-05-01T02:20:58Z 2009-05-03T07:56:53Z <p>I've just installed VS2008 and have run into a problem that I'm sure can be solved with either lambda's or delegates (or a combination!).</p> <pre><code> private string ReadData(TcpClient s, string terminator) { // Reads a byte steam into a string builder until either data is unavailable or the terminator has not been reached var sb = new StringBuilder(); do { var numBytesRead = s.GetStream().Read(byteBuff, 0, byteBuff.Length); sb.AppendFormat("{0}", Encoding.ASCII.GetString(byteBuff, 0, numBytesRead)); } while (s.GetStream().DataAvailable &amp;&amp; !sb.ToString().Contains(terminator)); return sb.ToString(); } </code></pre> <p>The problem is, sometimes I need to check if the string contains either of two different values. Sometimes I may need to check it for three values.</p> <p>So what I propose, is to change " !sb.ToString().Contains(terminator)" to a function that is passed into the method. </p> <p>I could write my different functions such as:</p> <pre><code>private bool compare1(string s, string t) { return s.contains(t) } private bool compare2(string s, string t1, string t2) { return (s.compare(t1) or s.compare(t2) } // etc... </code></pre> <p>Then when I want to compare with 3 different values, create a delegate to one of these functions, then pass that to the ReadData() method.</p> <p>I'm very clueless when it comes to delegates, and I'm not sure if this seems like the right place for a lambda but something is telling me it is.</p> <p>The calling code is this:</p> <pre><code> // Enter username . if (HasData(s,"login:")) SendData(s, switchUser + TelnetHelper.CRLF); </code></pre> <p>HasData is identical to ReadData, but returns a bool instead of a string (which I'd also like to factor out into one method using some trickery - but that's a secondary question - feel free to answer that though.</p> <p>Just for reference:</p> <pre><code> private bool HasData(TcpClient s, string terminator) { // Reads a byte steam into a string builder until either data is unavailable or the terminator has not been reached var sb = new StringBuilder(); do { var numBytesRead = s.GetStream().Read(byteBuff, 0, byteBuff.Length); sb.AppendFormat("{0}", Encoding.ASCII.GetString(byteBuff, 0, numBytesRead)); } while (s.GetStream().DataAvailable &amp;&amp; !sb.ToString().Contains(terminator)); return sb.ToString().Contains(terminator); } </code></pre> http://stackoverflow.com/questions/809945/refactoring-with-lambdas-and-delegates/809958#809958 4 Answer by JaredPar for Refactoring with Lambda's and Delegates JaredPar 2009-05-01T02:26:27Z 2009-05-01T05:06:39Z <p>It sounds like you're looking for a predicate function. Instead of hard coding the check, take a delegate as a parameter than can do the check</p> <pre><code> private string ReadData(TcpClient s, Func&lt;string,bool&gt; predicate) { // Reads a byte steam into a string builder until either data is unavailable or the terminator has not been reached var sb = new StringBuilder(); do { var numBytesRead = s.GetStream().Read(byteBuff, 0, byteBuff.Length); sb.AppendFormat("{0}", Encoding.ASCII.GetString(byteBuff, 0, numBytesRead)); } while (s.GetStream().DataAvailable &amp;&amp; !predicate(sb)); return sb.ToString(); } </code></pre> <p>Then you can create several wrappers which just create the appropriate delegate and pass it down</p> <pre><code>public bool HasData(TcpClient c, string terminator) { return HasData(c, (s) =&gt; s.Contains(terminator)); } public bool HasData(TcpClient c, string t1, string t2) { return HasData(c, (s) =&gt; s.Contains(t1) || s.Contains(t2)); } </code></pre> <p>You can even build a delegate on the fly based on arbitrary number of terminators</p> <pre><code>public bool HasData(TcpClient c, params string[] terminatorList) { return HasData(c, (s) =&gt; terminatorList.Where(x =&gt; s.Contains(x)).Any()); } </code></pre> http://stackoverflow.com/questions/809945/refactoring-with-lambdas-and-delegates/811122#811122 1 Answer by Steve Dignan for Refactoring with Lambda's and Delegates Steve Dignan 2009-05-01T12:07:49Z 2009-05-01T12:07:49Z <p>One option would be to overload the ReadData() method to take a string array containing the values that you are checking for. Using an <a href="http://msdn.microsoft.com/en-us/library/bb383977.aspx" rel="nofollow">extension method</a>, you could extend Contains() to take a string array.</p> <p>Your ReadData() method could be:</p> <pre><code>private string ReadData(TcpClient s, string[] terminators) { // Reads a byte steam into a string builder until either data is unavailable or the terminator has not been reached var sb = new StringBuilder(); do { var numBytesRead = s.GetStream().Read(byteBuff, 0, byteBuff.Length); sb.AppendFormat("{0}", Encoding.ASCII.GetString(byteBuff, 0, numBytesRead)); } while (s.GetStream().DataAvailable &amp;&amp; !sb.ToString().Contains(terminators)); return sb.ToString(); } </code></pre> <p>The Contains() method extension could be:</p> <pre><code>public static bool Contains ( this String str , String[] testValues ) { foreach ( var value in testValues ) { if ( str.Contains( value ) ) return true; } return false; } </code></pre> <p>This implementation eliminates the need to create a new predicate each time you have a different number of strings to test for.</p> http://stackoverflow.com/questions/809945/refactoring-with-lambdas-and-delegates/816544#816544 0 Answer by Josh Smeaton for Refactoring with Lambda's and Delegates Josh Smeaton 2009-05-03T07:56:53Z 2009-05-03T07:56:53Z <p>Because the syntax of the lambdas is somewhat foreign to myself (and the rest of my team) I ended up going with a slightly different solution. I couldn't figure out the syntax of .All() when modified from the .Any() function above.</p> <p>I needed an .All() function as well, to ensure all the terminators in the list were found. So I ended up going with something like the following:</p> <pre><code>delegate bool Predicate (string s, params [] string terminators); bool HasAll(string s, params string [] terminators) { foreach (var t in terminators) { if (!s.contains(t)) return false; } return true; } bool HasAny(string s, params string [] terminators) { foreach (var t in terminators) { if (s.contains(t)) return true; } return false; } // Just looking now, I could also pass in a bool to switch between the two and remove one of these functions. But this is fairly clear string ReadData(TcpClient sock, Function predicate, params [] string terminators) { var sb = new StringBuilder(); do { var numBytesRead = s.GetStream().Read(byteBuff, 0, byteBuff.Length); sb.AppendFormat("{0}", Encoding.ASCII.GetString(byteBuff, 0, numBytesRead)); } while (s.GetStream().DataAvailable &amp;&amp; !predicate(sb.ToString(), terminators); return sb.ToString(); } </code></pre> <p>Then the calling code looks like:</p> <pre><code>private void someFunc() { Predicate any = new Predicate(HasAny); Predicate all = new Predicate(HasAll); String response; // Check all strings exist response = ReadData(this.sock, all, "(", ")", "-&gt;") if (all(response, "(", ")", "-&gt;") SendData(this.sock, ...); // Check any string exists response = ReadData(this.sock, any, "Hi", "Hey", "Hello"); if (any(response, "Hi", "Hey", "Hello")) SendData(this.sock, ...); } </code></pre> <p>I'll probably add null checks into the Has[Any|All] functions, reverse the do..while to a while, and just check response != null instead of duplicating the params. This solutions suits all my use cases and is fairly human readable I think. As long as I make the small changes I mentioned just above.</p> <p>This whole thing highlights for me my need to learn lambda expressions though!</p>