I'd like to improve this piece of code.

I have 3 methods doing (basically) the same thing, but calling a different overload of a method according to the datatype passed as parameter.

//FUNC 1 (HashTable)
public string GetAString(Hashtable ht)
{
    FinderObject cur = null;
    int curValue = -1;

    foreach (FinderObject f in _finderObjects) //_finderObjects is a list of FinderObject
    {
        int val = f.Match(ht);
        if (val > curValue)
        {
            cur = f;
            curValue = val;
        }
    }

    return cur == null ? null : cur.StringFound;
}

//FUNC 2 (XElement)
public string GetAString(XElement xe)
{
    FinderObject cur = null;
    int curValue = -1;

    foreach (FinderObject f in _finderObjects) //_finderObjects is a list of FinderObject
    {
        int val = f.Match(xe);
        if (val > curValue)
        {
            cur = f;
            curValue = val;
        }
    }

    return cur == null ? null : cur.StringFound;
}

... and so on ... (I have more than 2 methods, but just to show you the basic sample

As you can see, both methods do the EXACT same thing, except calling f.Match() with the correct data type.

I could use generics for both functions (GetAString and Match), but that seems kinda pointless, since not all Types will be allowed in these calls (just 3 or 4 types, to be precise).

So, my question is: how do I improve the above piece of code?

Thank you in advance :)

link|improve this question

feedback

6 Answers

up vote 4 down vote accepted

You could pass a delegate into the method to perform the matching, rather than passing the object (Hashtable, XElement, IDataReader etc) directly. For example:

string x = GetAString(f => f.Match(ht));  // instead of GetAString(ht);
string y = GetAString(f => f.Match(xe));  // instead of GetAString(xe);
string z = GetAString(f => f.Match(dr));  // instead of GetAString(dr);

// ...

public string GetAString(Func<FinderObject, int> finderFunc)
{
    FinderObject cur = null;
    int curValue = -1;

    foreach (FinderObject f in _finderObjects)
    {
        int val = finderFunc(f);
        if (val > curValue)
        {
            cur = f;
            curValue = val;
        }
    }
    return cur == null ? null : cur.StringFound;
}
link|improve this answer
Thank you, that's exactly what I was looking for – sh0uzama Feb 1 '11 at 9:49
feedback

How about you just use Object? Like so.

public string GetAString(Object xe)
{
    FinderObject cur = null;
    int curValue = -1;

    foreach (FinderObject f in _finderObjects) //_finderObjects is a list of FinderObject
    {
        int val = f.Match(xe);
        if (val > curValue)
        {
            cur = f;
            curValue = val;
        }
    }

    return cur == null ? null : cur.StringFound;
}

And if you don't want to be able to call this method on any type of object you can do the following:

public string GetAString(Hashtable ht) { return GetAString((object)ht); }
public string GetAString(XElement xe) { return GetAString((object)xe); }
private string GetAString(Object obj) {
    ....
}
link|improve this answer
Not a great improvement - well, it improves the GetAString, creating complexity inside f.Match() :( In your example, I'll need to write a switch(typeof(xe)) inside f.Match(xe) to check which kind of object I'll need to interact with. – sh0uzama Jan 31 '11 at 11:03
feedback

How about just using object for the parameter type? I don't know how your FinderObject works internally (Match()) etc. but think that might be the easiest solution.

link|improve this answer
As said to Alxandr: Not a great improvement - well, it improves the GetAString, creating complexity inside f.Match() :( In your example, I'll need to write a switch(typeof(xe)) inside f.Match(xe) to check which kind of object I'll need to interact with. – sh0uzama Jan 31 '11 at 11:04
Create a common base class used by all valid parameter classes and provide some overwritten method for FinderObject to compare/match/whatever the objects (similar to ToString()). – Mario Jan 31 '11 at 11:09
feedback

You could create an interface that defines the Match method. Then add this interface to each of the allowed classes and change your parameter declaration to accept classes of this interface instead of a specific class.

link|improve this answer
unfortunately, the types I have to interact with are: XElement, IDataReader and Hashtable - I have no "power" to add Interfaces to them :P - at least until MS assumes me :D – sh0uzama Jan 31 '11 at 11:06
Ah yes disregards this answer ;) – Jack Allan Jan 31 '11 at 12:07
feedback

How about this:

public string GetAString<T>(Func<FinderObject, int> matcher)
{
    FinderObject cur = null;
    int curValue = -1;
    foreach (FinderObject f in _finderObjects) //_finderObjects is a list of FinderObject
    {
        int val = matcher(f);
        if (val > curValue)
        {
            cur = f;
            curValue = val;
        }
    }
    return cur == null ? null : cur.StringFound;
}

and then call like this:

XElement xe = ...
var result = GetAString(f => f.Match(xe));
Hashtable ht = ...
result = GetAString(f => f.Match(ht));
link|improve this answer
feedback

Just expanding on Alxander's answer really... Except using generics:

    public string GetAString(Hashtable ht) { return GetAString<Hashtable>(ht); }
    public string GetAString(XElement xe) { return GetAString<XElement>(xe); }

    private string GetAString<T>(T obj)
    {
        FinderObject cur = null;
        int curValue = -1;

        foreach (FinderObject f in _finderObjects) //_finderObjects is a list of FinderObject
        {
            int val = f.Match(obj);
            if (val > curValue)
            {
                cur = f;
                curValue = val;
            }
        }

        return cur == null ? null : cur.StringFound;
    }
link|improve this answer
This won't compile unless the Match method's argument is either (1) object, or (2) an unconstrained generic type. – LukeH Jan 31 '11 at 11:46
Just based on sh0uzama's sample code this must compile as the Match method is accepting both these types – Jack Allan Jan 31 '11 at 12:05
Not true. There could be multiple overloads of Match taking Hashtable, XElement etc, but that doesn't mean that there'll be an overload for any arbitrary T (which is what your method requires). – LukeH Jan 31 '11 at 16:18
feedback

Your Answer

 
or
required, but never shown

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