This is a wrapper for an API I'm working on, am I doing it sort of right? I'm not particularly fond of all the repeating code in the constructor, if someone can show me if I can reduce that it would be very helpful!

public class WebWizForumVersion
{
    // Properties of returned data
    public string Software { get; private set; }
    public string Version { get; private set; }
    public string APIVersion { get; private set; }
    public string Copyright { get; private set; }
    public string BoardName { get; private set; }
    public string URL { get; private set; }
    public string Email { get; private set; }
    public string Database { get; private set; }
    public string InstallationID { get; private set; }
    public bool NewsPad { get; private set; }
    public string NewsPadURL { get; private set; }

    public WebWizForumVersion(XmlReader Data)
    {
        try
        {
            Data.ReadToFollowing("Software");
            this.Software = Data.ReadElementContentAsString();
            Data.ReadToFollowing("Version");
            this.Version = Data.ReadElementContentAsString();
            Data.ReadToFollowing("ApiVersion");
            this.APIVersion = Data.ReadElementContentAsString();
            Data.ReadToFollowing("Copyright");
            this.Copyright = Data.ReadElementContentAsString();
            Data.ReadToFollowing("BoardName");
            this.BoardName = Data.ReadElementContentAsString();
            Data.ReadToFollowing("URL");
            this.URL = Data.ReadElementContentAsString();
            Data.ReadToFollowing("Email");
            this.Email = Data.ReadElementContentAsString();
            Data.ReadToFollowing("Database");
            this.Database = Data.ReadElementContentAsString();
            Data.ReadToFollowing("InstallID");
            this.InstallationID = Data.ReadElementContentAsString();
            Data.ReadToFollowing("NewsPad");
            this.NewsPad = bool.Parse(Data.ReadElementContentAsString());
            Data.ReadToFollowing("NewsPadURL");
            this.NewsPadURL = Data.ReadElementContentAsString();
        }
        catch (Exception e)
        {

        }
    }
}
link|improve this question

feedback

6 Answers

up vote 4 down vote accepted
var properties = new [] {
    new {Name = "Software", Setter = new Action<string>(value => this.Software = value)},
    new {Name = "Version", Setter = new Action<string>(value => this.Version= value)},
    new {Name = "ApiVersion", Setter = new Action<string>(value => this.ApiVersion = value)},
    // ...
    new {Name = "NewsPad", Setter = new Action<string>(value => this.NewsPad = bool.Parse(value))},
}

foreach (var property in properties)
{
    Data.ReadToFollowing(property.Name);
    property.Setter(Data.ReadElementContentAsString());
}
link|improve this answer
1  
Thanks, looks a lot better! But what about handling the different data types, I have a bool hidden in the original question. – Tom Gullen Mar 19 '11 at 0:04
1  
@Tom to fix the boolean problem add this, new {Name = "NewsPad", Setter = (value => this.NewsPad= bool.Parse(value))} – Andrew Finnell Mar 19 '11 at 0:08
probably also a Action ctor should be added updated the code. Thanks, Andrew – Snowbear Mar 19 '11 at 0:10
2  
Hmm. This is shorter, but looks quite a bit more cryptic. Not sure if I agree here. – Spacemoses Mar 19 '11 at 0:18
1  
+1 Lambdas are always fun! – Venemo Mar 19 '11 at 9:33
show 1 more comment
feedback

I'd leave the assignment of your local properties alone, and use helper methods to read the values from the XML.

public class WebWizForumVersion
{
    public WebWizForumVersion(XmlReader Data)
    {
        this.Software = Data.ReadString("Software");
        this.Version = Data.ReadString("Version");
        this.APIVersion = Data.ReadString("ApiVersion");
        this.NewsPad = Data.ReadBool("NewsPad");
    }
}

public static class XmlReaderHelpers
{
    private string ReadString(this XmlReader Data, string name)
    {
        Data.ReadToFollowing(name);
        return Data.ReadElementContentAsString();
    }

    private bool ReadBool(this XmlReader Data, string name)
    {
        return bool.Parse(Data.ReadString(name));
    }
}
link|improve this answer
+1, but I would reuse ReadString inside ReadBool – Snowbear Mar 19 '11 at 0:13
Good idea. Added. – David Yaw Mar 19 '11 at 0:15
I like this version b/c there's no dictionary to maintain – dave thieben Mar 19 '11 at 0:17
I like this method because it allows you to easily change the underlying logic if, say, you changed to a database instead of an xml file. BUT, I would get rid of the boolean version and just cast the special case in the constructor. – Spacemoses Mar 19 '11 at 0:21
2  
No no...now you went and complicated it. – Spacemoses Mar 19 '11 at 0:24
show 3 more comments
feedback

Can you have all your values in a Dictionary type of object instead? So something like this would simplify things:

public Dictionary<string, string> ForumVars = null;

public WebWizForumVersion(XmlReader Data)
{
    ForumVars = new Dictionary<string, string>();
    ForumVars.Add("Software", GetValue("Software"));
    ForumVars.Add("Version", GetValue("Version"));
    ForumVars.Add("APIVersion", GetValue("APIVersion"));
}

protected string GetValue(string key)
{
    Data.ReadToFollowing(key);
    return Data.ReadElementContentAsString();
}

I understand that not everything might be a string (e.g. NewsPad), so you can instead work with dynamic or Object.

link|improve this answer
feedback

Yeah and when using a dictionary a way to simplify it even further is like this.

new Dictionary<string, string>() {
    {"key", "val"},
    ...
}
link|improve this answer
feedback

In Java, you could use JAXB, for example:
WebWizForumVersion wwfv = read(WebWizForumVersion.class, sr);

And the read method would look something like:

@SuppressWarnings("unchecked") public static <T> T read(
        Class<T> t, XMLStreamReader reader) throws Exception {
    Preconditions.checkNotNull(reader);
    Preconditions.checkNotNull(t);
    JAXBContext context = JAXBContext.newInstance(t);
    Unmarshaller u = context.createUnmarshaller();
    return (T) u.unmarshal(reader);
}

As it uses constructor injector pattern, it does not need this kind of boiler plate code. Well actually annotations are used to describe how to map xml to variables and Vice Versa.

C# might not have an equivalent for JAXB, but you can basically do the same.

link|improve this answer
feedback

IF you are able to change the name of your InstallationID property to InstallID to match the element name, then you could use refelction:

public class WebWizForumVersion
{
    // Properties of returned data
    public string Software { get; private set; }
    public string Version { get; private set; }
    public string APIVersion { get; private set; }
    public string Copyright { get; private set; }
    public string BoardName { get; private set; }
    public string URL { get; private set; }
    public string Email { get; private set; }
    public string Database { get; private set; }
    public string InstallID { get; private set; }  // changed property name
    public bool NewsPad { get; private set; }
    public string NewsPadURL { get; private set; }

    public WebWizForumVersion( XmlReader Data )
    {
        try
        {
            PropertyInfo[] props = this.GetType().GetProperties();

            foreach( PropertyInfo pi in props )
            {
                Data.ReadToFollowing( pi.Name );
                if( pi.PropertyType == typeof( bool ) )
                {
                    pi.SetValue( this, bool.Parse( Data.ReadElementContentAsString() ), null );
                }
                else
                {
                    pi.SetValue( this, Data.ReadElementContentAsString(), null );
                }
            }
        }
        catch( Exception e )
        {
          // do something with exception
        }
    }
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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