vote up 2 vote down star
2

Basically I am giving the user an option to filter a set of files based on thier size.

The user picks a comparison type (Greater Than, Less Than, Equal To) from a drop down list, and then enters a size, in bytes, to compare to. This is what I have so far:

switch (cmboCompareType.SelectedText)
{
    case "Greater Than":
        fileOK = fi[i].Length > int.Parse(txtByteValue.Text);
        break;
    case "Less Than":
        fileOK = fi[i].Length < int.Parse(txtByteValue.Text);
        break;
    case "Equal To":
        fileOK = fi[i].Length == int.Parse(txtByteValue.Text);
        break;
}

Is there a more elegant way to do this sort of comparison without repeating so much code in C#?

flag

8 Answers

vote up 7 vote down check
int value = int.Parse(txtByteValue.Text);
int len = fi[i].Length;

switch (cmboCompareType.SelectedText)
{
    case "Greater Than": fileOK = len > value; break;
    case "Less Than": fileOK = len < value; break;
    case "Equal To": fileOK = len == value; break;
}

TADA! Less repetition. ;P

link|flag
well that part was obvious. I was looking for more of a "dynamic" comparison. – Neil N Sep 25 at 18:33
Well, you didn't ask for a dynamic comparison...you just asked for less repetition. I was trying to make a point. ;P – jrista Sep 25 at 18:39
Well, the title does say "how to DYNAMICALLY switch..." Though I have to admit, this one is the most simplistic, and probably the most "elegant" of all answers so far. – Neil N Sep 25 at 18:44
Although I like Jon Skeet's solution as well, I give you +1 for keeping it simple. – Steve Wortham Sep 25 at 18:51
1  
Since I guess the level of "dynamic" I was looking for isn't really possible in C#, I prefer this one overall due to its clarity and brevity. – Neil N Sep 27 at 23:31
show 3 more comments
vote up 16 vote down

Two options:

1) Use CompareTo and Sign:

int requiredSign;
switch (cmboCompareType.SelectedText)
{
  case "Greater Than": requiredSign = 1; break;
  case "Less Than": requiredSign = -1; break;
  case "Equal To": requiredSign = 0; break;
  default: throw new ArgumentException();
}
fileOK = Math.Sign(fi[i].Length.Compare(txtByteValue.Text)) == requiredSign;

2) Use a delegate:

static readonly Func<int, int, bool> GreaterThan = (x, y) => x > y;
static readonly Func<int, int, bool> LessThan = (x, y) => x < y;
static readonly Func<int, int, bool> Equal = (x, y) => x == y;
...

Func<int, int, bool> comparison;
switch (cmboCompareType.SelectedText)
{
  case "Greater Than": comparison = GreaterThan; break;
  case "Less Than": comparison = LessThan; break;
  case "Equal To": comparison = Equal; break;
  default: throw new ArgumentException();
}
fileOK = comparison(fi[i].Length, int.Parse(txtByteValue.Text));
link|flag
+1 for the delegate option. Cures the DRY problem with the original code without sacrificing readability. – JohnFx Sep 25 at 18:45
+1: dynamically selecting delegates, rather than particular values, is an underappreciated design pattern. Its also more extensible than the Math.Sign approach: if the OP adds more items to his dropdown, he can modified the code very easily to retrieve the appropriate comparator from a Dictionary<string, Func<int, int, bool>>. – Juliet Sep 25 at 18:46
I like option 2 better. – David Basarab Sep 25 at 18:53
I like option 2 better as well. The sign one was more of an "ooh, that would work too" option :) – Jon Skeet Sep 25 at 18:59
While I always enjoy the mind-expanding answers of John skeet, I think both these solutions would be overkill in this scenario. It was a tough call but I think I will accept the more simple answer. – Neil N Sep 27 at 23:30
vote up 2 vote down

I'm not a fan of case statements, same thing though, just another way.


var fileOK = new Dictionary<string, Func<int, int, bool>>
    (StringComparer.OrdinalIgnoreCase)
    {
        { "Greater Than", (x, y) => x > y },
        { "Less Than", (x, y) => x < y },
        { "Equal To", (x, y) => x == y }
    }[cmboCompareType.SelectedText](fi.Length, int.Parse(txtByteValue.Text));
link|flag
very interesting – Neil N Sep 25 at 19:40
vote up 1 vote down
int actual = Math.Sign(fi[i].Length.CompareTo(int.Parse(txtByteValue.Text)));
int expected;

switch (cmboCompareType.SelectedText)
{
    case "Greater Than": expected = +1; break;
    case "Less Than":    expected = -1; break;
    case "Equal To":     expected =  0; break;
}

fileOK = (actual == expected);
link|flag
vote up 1 vote down

If you have a map, you can use something like:

private int CompareOp(string Text)
{
    switch (cmboCompareType.SelectedText)
    {
        case "Greater Than": 
            return 1;
        case "Less Than": 
            return -1;
        case "Equal To": 
            return 0;
    }
}

// In your method:
fileOK = (fi[i].Length.CompareTo(value) == CompareOp(cmboCompareType.SelectedText);
link|flag
vote up 1 vote down

You could also add the values -1, 0, 1 to the value property of each combo box item and then the code would look like:

fileOK = fi[i].Length.CompareTo(int.Parse(txtByteValue.Text) == cmboCompareType.SelectedValue;
link|flag
Ya thats the thought process that led me to the answer I just added. But instead of adding values, I just offset the index by one. – Neil N Sep 25 at 19:19
vote up 0 vote down

Create an extension method on int

public static int Compare(this int a, int b, string compareType)
{
    switch (CompareType)
    {
        case "Greater Than":
            return fi[i].Length > int.Parse(txtByteValue.Text);
            break;
        case "Less Than":
            return fi[i].Length < int.Parse(txtByteValue.Text);
            break;
        case "Equal To":
            return fi[i].Length == int.Parse(txtByteValue.Text);
            break;
    }
}

and then use it as:

fileOK = fi[i].Length.Compare(int.Parse(txtByteValue.Text), cmboCompareType.SelectedTex);
link|flag
Does not address the "Don't Repeat Yourself" issue – Nathan Koop Sep 25 at 19:20
@Nathan: it depends on how often this is used. the extension method will show up on every int so if this comparison is being done in many different places, then the Compare method is implemented only once and used everywhere. – Jeff Hornby Sep 25 at 19:50
vote up 0 vote down

My own idea, inspired by the solutions that used Math.Sign(). Since the drop down box has three values, which will have an index of 0,1,and 2, I could subtract 1 to get -1,0,1, then use that to compare with the sign, as such:

int sign = Math.Sign(fi[i].Length.CompareTo(int.Parse(txtByteValue.Text)));
fileOK = sign == (cmboCompareType.SelectedIndex - 1);

This would be dependent on the items in the listbox being put in this specific order:
Less Than
Equal To
Greater Than

And of course would only work if these are the only values that will ever be in the listbox. Probably not the best solution, but I got a kick out of the fact that I accomplished this in only two lines of code.

EDIT: Techincally I could simplify this down to a single line of code:

fileOk=(cmboCompareType.SelectedIndex-1) == Math.Sign(fi[i].Length.CompareTo(int.Parse(txtByteValue.Text)));
link|flag

Your Answer

Get an OpenID
or

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