######################################################################## # # License: BSD # Created: January 14, 2004 # Author: Francesc Altet - faltet@carabos.com # # $Id: unimplemented.py 2688 2007-04-15 11:47:44Z ivilata $ # ######################################################################## """Here is defined the UnImplemented class. See UnImplemented class docstring for more info. Classes: UnImplemented Misc variables: __version__ """ import warnings from tables import hdf5Extension from tables.leaf import Leaf __version__ = "$Revision: 2688 $" 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. """ 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 = 0 """The length of the first dimension of the data.""" self.shape = (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 = 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: """ % (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'