Main Page | Modules | Namespace List | Class Hierarchy | Class List | Namespace Members | Class Members

Object Persistence.
[Concepts]


Classes

class  Client
 Client class. More...
class  MolecularInformation
 MolecularInformation class. More...
class  MoleculeObjectCreator
 MoleculeObjectCreator class. More...
class  PersistenceManager
 Persistence manager class. More...
class  PersistentObject
 The persistent object. More...
class  TextPersistenceManager
 Text-format-based persistence manager. More...
class  XDRPersistenceManager
 XDR-format-based persistence manager. More...

Detailed Description

Ball provides support for the serialization and deserialization of objects and their platform-independent storage.
All persistent objects have to be derived from PersistentObject. The management, serialization, and deserialization is performed by the PersistenceManager class. A persistence manager possess an input stream and an output stream ( persistent streams ). It can write objects to the output stream, thereby converting them to a portable format and serializing all dependend objects, too. It can also read objects from the input stream, create the corresponding objects dynamically and demangle pointers and references.
There are two main problems related with this trivial persistence concept: