Consider the following situation:
There can be Categories; Children derived from Categories; and somewhere, there must be a method that looks like:
ChildType[] Get(ParentType parent) { ... }
ChildType is not derived from ParentType; they are so-named because this method is a factory method for getting children based on the ID of the parent.
Currently I have something that looks like this:
static class CatFactory<ChildType, ParentType> : Category
where ParentType: Category
where ChildType: Category, new()
{
public static ChildType[] Get(string catname, ParentType parent)
{
// ...
}
}
class ParentCategoryA : Category { }
class ParentCategoryB: Category { }
class ChildCategoryA: Category { }
class ChildCategoryB: Category { }
And then I would call the factory like this:
CatFactory<ChildCategoryA, ParentCategoryA>.Get(someparent);
The intent of this is - given some strongly-typed parent instance with an ID, go to a web service with that ID and then deserialize a new child instance.
This leaves a bad taste in my mouth. It seems to me that ChildCategoryA should know that its parent is ParentCategoryA, and one should be able to call ChildCategoryA.Get(someparent). This is of course possible by defining a static Get() for each implementation of a child, but that would require a large amount of repetitive code.
So - what's the best way to do this? Separate factory class, or no?
Category<TParentType>? So you would haveclass ChildCategoryA : Category<ParentCategoryA>? (in turn,Category<TParentType>might inherit from a non-genericCategorybase class if it makes sense for your API) – Chris Sinclair Jan 9 at 19:58Category<TParentType>, because some categories have no parents. I could, however, have something likeChildCategory<TParentType>. But I don't know how far that would get me - how would I have a singlestatic Get()? – Reinderien Jan 9 at 20:00RootCategorytype to serve as a dummy to indicate a root category. As for theGet... uhhhh well types could register themselves on first usage (static constructor)? Or you can do a search via reflection on application startup to find all types? – Chris Sinclair Jan 9 at 20:03public static ChildType[] Get(string catname)would be a cleaner signature. TheParentTypewould be inferred from theCatFactory's type. (I don't have a compiler handy to test this.) – neontapir Jan 9 at 20:05Get()needs to be passed a parent instance to get a child. It doesn't only depend on the type of the parent, but the value of one of the parent's fields. – Reinderien Jan 9 at 20:07