########################################################################
#
# License: BSD
# Created: January 14, 2004
# Author: Francesc Alted - faltet@pytables.com
#
# $Id: unimplemented.py 4240 2009-09-11 11:30:40Z faltet $
#
########################################################################
"""Here is defined the UnImplemented class.
See UnImplemented class docstring for more info.
Classes:
UnImplemented
Misc variables:
__version__
"""
import warnings
import numpy
from tables import hdf5Extension
from tables.utils import SizeType
from tables.leaf import Leaf
__version__ = "$Revision: 4240 $"
class UnImplemented(hdf5Extension.UnImplemented, Leaf):
"""
This class represents datasets not supported by PyTables in an
HDF5 file.
When reading a generic HDF5 file (i.e. one that has not been
created with PyTables, but with some other HDF5 library based
tool), chances are that the specific combination of datatypes or
dataspaces in some dataset might not be supported by PyTables yet.
In such a case, this dataset will be mapped into an
`UnImplemented` instance and the user will still be able to access
the complete object tree of the generic HDF5 file. The user will
also be able to *read and write the attributes* of the dataset,
*access some of its metadata*, and perform *certain hierarchy
manipulation operations* like deleting or moving (but not copying)
the node. Of course, the user will not be able to read the actual
data on it.
This is an elegant way to allow users to work with generic HDF5
files despite the fact that some of its datasets are not supported
by PyTables. However, if you are really interested in having full
access to an unimplemented dataset, please get in contact with the
developer team.
This class does not have any public instance variables or methods,
except those inherited from the `Leaf` class.
"""
# Class identifier.
_c_classId = 'UNIMPLEMENTED'
def __init__(self, parentNode, name):
"""Create the `UnImplemented` instance."""
# UnImplemented objects always come from opening an existing node
# (they can not be created).
self._v_new = False
"""Is this the first time the node has been created?"""
self.nrows = SizeType(0)
"""The length of the first dimension of the data."""
self.shape = (SizeType(0),)
"""The shape of the stored data."""
self.byteorder = None
"""
The endianness of data in memory ('big', 'little' or
'irrelevant').
"""
super(UnImplemented, self).__init__(parentNode, name)
def _g_open(self):
(self.shape, self.byteorder, objectID) = \
self._openUnImplemented()
self.nrows = SizeType(self.shape[0])
return objectID
def _g_copy(self, newParent, newName, recursive, _log=True, **kwargs):
"""
Do nothing.
This method does nothing, but a ``UserWarning`` is issued.
Please note that this method *does not return a new node*, but
``None``.
"""
warnings.warn(
"UnImplemented node %r does not know how to copy itself; skipping"
% (self._v_pathname,))
return None # Can you see it?
def _f_copy(self, newparent=None, newname=None,
overwrite=False, recursive=False, createparents=False,
**kwargs):
"""
Do nothing.
This method does nothing, since `UnImplemented` nodes can not
be copied. However, a ``UserWarning`` is issued. Please note
that this method *does not return a new node*, but ``None``.
"""
# This also does nothing but warn.
self._g_copy(newparent, newname, recursive, **kwargs)
return None # Can you see it?
def __repr__(self):
# byteorder = %r
return """%s
NOTE: <The UnImplemented object represents a PyTables unimplemented
dataset present in the '%s' HDF5 file.
If you want to see this kind of HDF5 dataset implemented in
PyTables, please contact the developers.>
""" % (str(self), self._v_file.filename)
# Non supported classes. These are listed here for backward compatibility
# with PyTables 0.9.x indexes
class OldIndexArray(UnImplemented):
_c_classId = 'IndexArray'
|