Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I’m working on a small UI automation tool and have gotten a bit hung up while trying to determine the best way to architect the handling of data. The project is writen with C#/.net 4.0

I started out thinking of implementing a set number of abstract data type objects (BoolDataObject, StringDataObject, NumberDataObject) which would then be implemented by a version that gets and sets from an unknown until runtime data source and another version that simply works with local variables. The intent being that the desired data could be coming from a bound data source or just some set value that never changes (like a Url to navigate to).

This would force me to write each data type/type of action mix I want the automation tool to be able to perform as one typically wouldn’t want to send a bool to a text box or a string to a radio button though one might want to send a number to a text box, combo box, etc. To further complicate things, I’d like to also encapsulate common functions the user should be able to perform on the information before using it like simple string manipulations or basic math. Using my current architecture, I’d need to create those functions as DataObjects with specific output types further complicating the structure so that they could be assigned to whatever script step they are to be used.

I have considered generics but I have run into the same issue there – SetElementTextValue can’t store a DataObject, it needs a DataObject.

Duplicating the same classes to achieve nothing more than taking in different data types seems like a bit of a code smell. One option I considered was simply returning objects for everything and letting the step itself handle the attempted type conversion as a cast. The data is pulled so infrequently, I doubt the boxing will kill me. It just doesn’t seem very elegant. Is there a cleaner way I’m not considering?

Edit: Some Example Code Illustrating what I'd like to accomplish

public abstract class DataObject
{
    public ?? GetValue();
    public void SetValue(?? value);
}

public class ElementFindLogic
{
    public List<ElementFindClause> FindClauses { get; set; }
}

public class ElementFindClause
{
    public SomePropertyEnum SearchProperty { get; set; }
    public DataObject SearchValue { get; set; }
}

public class SendValueToScreenElementStep : AutomationStep
{
    public ElementFindLogic ScreenElementFindLogic { get; set; }
    public DataObject DataToSend { get; set; }
}

public class IfStep : AutomationStep
{
    // Different evaluation classes would be written to handle different comparisons 
    // (ex. IsElementFound, Does DataObject1 == DataObject2, etc.)
    public Evaluation IfEvaluation { get; set; }  
}
share|improve this question
You should post an example of some code, because I can't figure out quite what you're asking for. – Gabe Apr 29 '11 at 11:41
Vote to close: I'm sorry, but this question has either too little or too much information to be useful to anyone. I suggest you narrow it down to a single question, and start from there. If your question is really "How do I design my program so that it does everything, and is extensible", I'm afraid Stack Overflow is not the right place to ask this question. – Lasse V. Karlsen Apr 29 '11 at 20:52
other than the single word "object" for ?? – John Gardner Apr 29 '11 at 20:52
just two questions: - does the creator of DataObject know what type will go inside - doest the consumer of dataObject know which type it needs on its side? – Marino Šimić Apr 29 '11 at 20:55
My question was how should I design an abstract base data object class that can be used anywhere without regard to what specific data type it returns or takes in a set action. The only reason I mentioned the specifics on how the program should use it is because those are the cases that have given me issues when attempting to use a generic class. Edit in more detail and closed within 10 minutes. Yipes. – Mike Apr 29 '11 at 22:28
show 1 more comment

closed as not a real question by Anna Lear, jgauffin, Adam Ralph, Samuel Neff, Lasse V. Karlsen Apr 29 '11 at 20:51

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

I'm not sure what you're trying to do. Are you trying to create a data type than can easily be converted to other data types, like a VARIANT or something like that? You might want wrap an Object inside a class, and use System.Convert methods inside a bunch of conversion operators (http://msdn.microsoft.com/en-us/library/85w54y0a.aspx).

share|improve this answer

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