I have a structural problem that I could use your help with. I'll explain the abstract problem first, then an example to illustrate the problem.
Consider an abstract class A holding a number of instances of an abstract class B, also assume the following methods in A: void a.foo1(B val) and B a.foo2(). The problem arises when we inherit the classes (A' inherits A and B' inherits B) and demand that the relation A has to B should be the same as A' has to B'. That is, in A': void a.foo1(B' val) and B' a.foo2(). The second method will work, but not the first one (unless we do a unsafe type-cast). In other words, in A': a.foo1(B val) should be illegal unless parameter is an instance of B'. I've tried to model this relationship with generics/templates with little sucess.
This problem arises when making a graph framework. Here we have classes Graph and GraphVertex. (In my actual implementation I overload GraphVertex's delete operator.) In C++:
template<class T> class Graph; // Forward reference.
template<class T> class GraphVertex
{
public:
GraphVertex(Graph<T> &graph) : m_graph(graph){}
virtual ~GraphVertex() {}
... // Abstract methods, using T parameter.
void remove()
{ m_graph.removeVertex(this); }
protected:
Graph<T> &m_graph;
}
template<class T> class Graph
{
public:
virtual ~Graph(){}
...
virtual GraphVertex<T> *add(T val) = 0;
virtual void removeVertex(GraphVertex<T> *vertex) = 0; // <--- !!!
}
The problem here is the removeVertex method. Lets say we have implemented the classes with AdjacencyMatrixGraph and AMGVertex. When removing a vertex in the AdjacencyMatrixGraph we need more data than is provided in the abstract base class GraphVertex. We know that the parameter type should be AMGVertex but sending another type as parameter would not generate an (compile-time) error.
To solve this problem I've tried to add a new template parameter, specifying the implemented type. That is:
template<class T, class G> class GraphVertex
{
public:
GraphVertex(G &graph) : m_graph(graph) {}
~GraphVertex() {}
...
void remove() { m_graph.removeVertex(this); }
protected:
G &m_graph;
}
template<class T, class V> class Graph
{
public:
virtual ~Graph() {}
...
virtual V *add(T val) = 0;
virtual void removeVertex(V *vertex) = 0;
}
template<class T> AdjacencyMatrixGraph; // Forward declaration.
template<class T> AMGVertex : public GraphVertex<T, AdjacencyMatrixGraph<T>>
{ ... }
template<class T> AdjacencyMatrixGraph : public Graph<T, AMGVertex<T>>
{ ... }
However, this will not work. It is not possible to use the base class Graph due to circular reference of the base classes.
Graph<int> *p = new AdjacencyMatrixGraph<int>(); // Won't work.
The example above has the same problems in Java with generics.
So, is there anyway to model the relation in a type-safe way? Or am I stuck with casting pointers around?
Thank you for reading!
EDIT:
An example usage of the above could look like:
Graph<int> *someGraph = getSomeGraph();
GraphVertex<int> *newVertex = someGraph->add(3);
...
newVertex->remove();