|
ACF $AcfVersion:0$
|
Basic interfaces and implementations for abstract definition of the data model. More...
Namespaces | |
| namespace | imod |
| This namespace containes basic implementation of Model/Observer design pattern This package is system independent. | |
Classes | |
| class | ibase::CObjectSynchronizerComp |
| Component for synchronization between some master data object and its "slaves". More... | |
| class | ibase::TMakeModelObserverCompWrap< Base, Interface1, Interface2, Interface3, Interface4, Interface5, Interface6, Interface7, Interface8, Interface9, Interface10 > |
| Cretion of wrapper for model observer components from non component classes. More... | |
| class | ibase::TModelObserverCompBaseWrap< ObserverComponent > |
| Generic basic implementation of component wrapper for model observer classes. More... | |
| class | imod::IModel |
| Common interface for model objects, that supports Model/Observer design pattern. More... | |
| class | imod::IModelEditor |
| Common interface for an model editor. More... | |
| class | imod::IObserver |
| Common interface for all classes implementing the Observer functionality in the Model/Observer design pattern. More... | |
| class | imod::TModelWrap< Base > |
This model wrapper provides a simple connection between a concrete istd::IChangeable implementation and a model. More... | |
| class | imod::TMultiModelObserverBase< ModelInterface > |
| Basic implementation of a multiple model observer. More... | |
| class | imod::TSingleModelObserverBase< ModelInterface > |
| Basic implementation for a single model observer with binding to concrete data object interface. More... | |
| class | istd::CChangeDelegator |
| Delegates calls of IChangeable methods to the given slave. More... | |
| class | istd::CChangeGroup |
| Help class which provides the group of changes for update mechanism of the model. More... | |
| class | istd::CChangeNotifier |
| Help class which provides the automatic update mechanism of the model. More... | |
| class | istd::CEventBasedNotifier |
| Implementation of model changes notification between different threads. More... | |
| class | istd::IChangeable |
| Common interface for data model objects, which can be changed. More... | |
| class | istd::IChangeDelegator |
| Common interface for all classes that support delegation of their data updates to another class. More... | |
| class | istd::TChangeDelegator< Base > |
| Binder of some istd::IChangeable implementation and changing delegator. More... | |
Basic interfaces and implementations for abstract definition of the data model.
A fundamental problem in the implementation of complex software applications is ensuring a clean separation between the data model, business logic (controller) and data presentation (GUI). Such a separation allows a high degree of reusability of source code. The following aspects have to be represented by interfaces:
The most important interface for a general data model definition is istd::IChangeable. This is a common interface for describing of objects which change their state during the run time of the application. The interface provides methods for managing data change transaction (istd::IChangeable::BeginChanges and istd::IChangeable::EndChanges), methods for coping, cloning, reseting and comparison of objects. The realization of change notification mechanism is also based on this interface. Following example demonstrates implementation of a simple data object:
To ensure that the transaction block is always consistent, you could also use a helper class - istd::CChangeNotifier:
istd::CChangeNotifier calls BeginChanges in its constructor and EndChanges in the destructor.
Often you want to be informed about the upcoming changes. A simple example you want to save the existing data before it is overwritten with the changed data. This is responsibility of the istd::IChangeable::BeginChanges method. The end change notification you will need, if you want to know when the data changes are complete, for example to update a GUI.
An important aspect in the management of data change notifications is the delegating of changes from a part of data to another. Let us consider the following situation - the data object of class CPerson could "live" in any container class (eg. in a database). In this case we want the container implentation will also notice about the changes of the CPerson instance. What we have to do is to extend our CPerson implementation as following:
Then our container class can be defined as:
Now we can catch the changes of person instances in the implementation of the method OnEndChanges():
In this section we have considered situations in which a decision that a data model would delegate its changes has been made in the design phase. For situations where this is not the case, we must rely on other mechanisms. These are described in the Model/Observer concept Section.