Commit 495fa8f4 authored by Tim Peters's avatar Tim Peters

Improve the interface docs.

parent 9346f9b7
...@@ -40,7 +40,7 @@ class IPersistent(Interface): ...@@ -40,7 +40,7 @@ class IPersistent(Interface):
- Sticky - Sticky
This state is identical to the up-to-date state except that the This state is identical to the saved state except that the
object cannot transition to the ghost state. This is a special object cannot transition to the ghost state. This is a special
state used by C methods of persistent objects to make sure that state used by C methods of persistent objects to make sure that
state is not unloaded in the middle of computation. state is not unloaded in the middle of computation.
...@@ -48,8 +48,8 @@ class IPersistent(Interface): ...@@ -48,8 +48,8 @@ class IPersistent(Interface):
In this state, the _p_changed attribute is non-None and false In this state, the _p_changed attribute is non-None and false
and the _p_jar attribute is set to a data manager. and the _p_jar attribute is set to a data manager.
There is, currently, no official way to detect whether an object There is no Python API for detecting whether an object is in the
is in the sticky state. sticky state.
- Changed - Changed
...@@ -61,8 +61,15 @@ class IPersistent(Interface): ...@@ -61,8 +61,15 @@ class IPersistent(Interface):
- Ghost - Ghost
the object is in memory but its state has not been loaded from the object is in memory but its state has not been loaded from
the database (or has been unloaded). In this state, the object the database (or its state has been unloaded). In this state,
doesn't contain any data. the object doesn't contain any application data.
In this state, the _p_changed attribute is None, and the _p_jar
attribute is set to the data manager from which the object was
obtained.
In all the above, _p_oid (the persistent object id) is set when
_p_jar first gets set.
The following state transactions are possible: The following state transactions are possible:
...@@ -77,37 +84,37 @@ class IPersistent(Interface): ...@@ -77,37 +84,37 @@ class IPersistent(Interface):
Sticky -> Changed Sticky -> Changed
This transition occurs when someone sets an attribute or sets This transition occurs when someone sets an attribute or sets
_p_changed to a true value on an up-to-date or sticky _p_changed to a true value on a saved or sticky object. When the
object. When the transition occurs, the persistent object is transition occurs, the persistent object is required to call the
required to call the register method on its data manager, register() method on its data manager, passing itself as the
passing itself as the only argument. only argument.
- Saved -> Sticky - Saved -> Sticky
This transition occurs when C code marks the object as sticky to This transition occurs when C code marks the object as sticky to
prevent its deactivation and transition to the ghost state. prevent its deactivation.
- Saved -> Ghost - Saved -> Ghost
This transition occurs when an saved object is deactivated, by: This transition occurs when a saved object is deactivated or
calling _p_deactivate, setting _p_changed to None, or deleting invalidated. See discussion below.
_p_changed.
- Sticky -> Saved - Sticky -> Saved
This transition occurs when C code unmarks the object as sticky to This transition occurs when C code unmarks the object as sticky to
allow its deactivation and transition to the ghost state. allow its deactivation.
- Changed -> Saved - Changed -> Saved
This transition occurs when a transaction is committed. This transition occurs when a transaction is committed. After
The data manager affects the transaction by setting _p_changed saving the state of a changed object during transaction commit,
to a true value. the data manager sets the object's _p_changed to a non-None false
value.
- Changed -> Ghost - Changed -> Ghost
This transition occurs when a transaction is aborted. This transition occurs when a transaction is aborted. All changed
The data manager affects the transaction by deleting _p_changed. objects are invalidated by the data manager by an abort.
- Ghost -> Saved - Ghost -> Saved
...@@ -116,102 +123,120 @@ class IPersistent(Interface): ...@@ -116,102 +123,120 @@ class IPersistent(Interface):
Note that there is a separate C API that is not included here. Note that there is a separate C API that is not included here.
The C API requires a specific data layout and defines the sticky The C API requires a specific data layout and defines the sticky
state that is used to prevent object deactivation while in C state.
routines.
About Invalidation, Deactivation and the Sticky & Ghost States
The sticky state is intended to be a short-lived state, to prevent
an object's state from being discarded while we're in C routines. It
is an error to invalidate an object in the sticky state.
Deactivation is a request that an object discard its state (become
a ghost). Deactivation is an optimization, and a request to
deactivate may be ignored. There are two equivalent ways to
request deactivation:
- call _p_deactivate()
- set _p_changed to None
There is one way to invalidate an object: delete its _p_changed
attribute. This cannot be ignored, and is used when semantics
require invalidation. Normally, an invalidated object transitions
to the ghost state. However, some objects cannot be ghosts. When
these objects are invalidated, they immediately reload their state
from their data manager, and are then in the saved state.
""" """
_p_jar=Attribute( _p_jar = Attribute(
"""The data manager for the object """The data manager for the object.
The data manager implements the IPersistentDataManager interface. The data manager implements the IPersistentDataManager interface.
If there is no data manager, then this is None. If there is no data manager, then this is None.
""") """)
_p_oid=Attribute( _p_oid = Attribute(
"""The object id """The object id.
It is up to the data manager to assign this. It is up to the data manager to assign this.
The special value None is reserved to indicate that an object The special value None is reserved to indicate that an object
id has not been assigned. id has not been assigned. Non-None object ids must be hashable
and totally ordered.
""") """)
_p_changed=Attribute( _p_changed = Attribute(
"""The persistent state of the object """The persistent state of the object
This is one of: This is one of:
None -- The object is a ghost. It is not active. None -- The object is a ghost.
false -- The object is saved (or has never been saved). false but not None -- The object is saved (or has never been saved).
true -- The object has been modified. true -- The object has been modified since it was last saved.
The object state may be changed by assigning this attribute, The object state may be changed by assigning or deleting this
however, assigning None is ignored if the object is not in the attribute; however, assigning None is ignored if the object is
up-to-date state. not in the saved state, and may be ignored even if the object is
in the saved state.
Note that an object can change to the modified state only if Note that an object can transition to the changed state only if
it has a data manager. When such a state change occurs, the it has a data manager. When such a state change occurs, the
'register' method of the data manager is called, passing the 'register' method of the data manager must be called, passing the
persistent object. persistent object.
Deleting this attribute forces deactivation independent of Deleting this attribute forces invalidation independent of
existing state. existing state, although it is an error if the sticky state is
current.
Note that an attribute is used for this to allow optimized
cache implementations.
""") """)
_p_serial=Attribute( _p_serial = Attribute(
"""The object serial number """The object serial number.
This is an arbitrary object. This member is used by the data manager to distiguish distinct
""") revisions of a given persistent object.
_p_atime=Attribute(
"""The integer object access time, in seconds, modulus one day
XXX When does a day start, the current implementation appears This is an 8-byte string (not Unicode).
to use gmtime, but this hasn't be explicitly specified.
XXX Why just one day?
""") """)
def __getstate__(): def __getstate__():
"""Get the object state data """Get the object data.
The state should not include persistent attributes ("_p_name") The state should not include persistent attributes ("_p_name").
The result must be picklable.
""" """
def __setstate__(state): def __setstate__(state):
"""Set the object state data """Set the object data.
Note that this does not affect the object's persistent state.
""" """
def _p_activate(): def _p_activate():
"""Activate the object """Activate the object.
Change the object to the up-to-date state if it is a ghost. Change the object to the saved state if it is a ghost.
""" """
def _p_deactivate(): def _p_deactivate():
"""Deactivate the object """Deactivate the object.
If possible, change an object in the up-to-date state to the Possibly change an object in the saved state to the
ghost state. It may not be possible to make some persistent ghost state. It may not be possible to make some persistent
objects ghosts. objects ghosts, and, for optimization reasons, the implementation
may choose to keep an object in the saved state.
""" """
class IPersistentNoReadConflicts(IPersistent): class IPersistentNoReadConflicts(IPersistent):
def _p_independent(): def _p_independent():
"""Hook for subclasses to prevent read conflict errors """Hook for subclasses to prevent read conflict errors.
A specific persistent object type can define this method and A specific persistent object type can define this method and
have it return true if the data manager should ignore read have it return true if the data manager should ignore read
conflicts for this object. conflicts for this object.
""" """
# XXX TODO: document conflict resolution.
class IPersistentDataManager(Interface): class IPersistentDataManager(Interface):
"""Provide services for managing persistent state. """Provide services for managing persistent state.
...@@ -222,36 +247,34 @@ class IPersistentDataManager(Interface): ...@@ -222,36 +247,34 @@ class IPersistentDataManager(Interface):
def setstate(object): def setstate(object):
"""Load the state for the given object. """Load the state for the given object.
The object should be in the deactivated (ghost) state. The object should be in the ghost state.
The object's state will be set and the object will end up The object's state will be set and the object will end up
in the up-to-date state. in the saved state.
The object must implement the IPersistent interface. The object must provide the IPersistent interface.
""" """
def register(object): def register(object):
"""Register a IPersistent with the current transaction. """Register an IPersistent with the current transaction.
This method provides some insulation of the persistent object This method must be called when the object transitions to
from details of transaction management. For example, it allows the changed state.
the use of per-database-connection rather than per-thread
transaction managers.
A persistent object should not register with its data manager
more than once during a single transaction. XXX should is too
wishy-washy; we should probably guarantee that this is true,
and it might be.
""" """
def mtime(object): def mtime(object):
"""Return the modification time of the object. """Return the modification time of the object.
The modification time may not be known, in which case None The modification time may not be known, in which case None
is returned. is returned. If non-None, the return value is the kind of
timestamp supplied by Python's time.time().
""" """
# XXX Should we keep the following? Doesn't seem too useful, and
# XXX we don't actually implement this interface (e.g., we have no
# XXX .statistics() method).
class ICache(Interface): class ICache(Interface):
"""In-memory object cache """In-memory object cache.
The cache serves two purposes. It peforms pointer swizzling, and The cache serves two purposes. It peforms pointer swizzling, and
it keeps a bounded set of recently used but otherwise unreferenced it keeps a bounded set of recently used but otherwise unreferenced
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment