diff options
author | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2000-11-14 21:30:12 (GMT) |
---|---|---|
committer | Binh-Minh Ribler <bmribler@hdfgroup.org> | 2000-11-14 21:30:12 (GMT) |
commit | 92041a68656c59813619ae1f26ed211b7f028e86 (patch) | |
tree | aaa3256c9a9f0adde21570eac9254f7ce00450b1 /c++/src/H5Exception.h | |
parent | 36acd5381e3977164e0d6d666f8ce97cc53f9387 (diff) | |
download | hdf5-92041a68656c59813619ae1f26ed211b7f028e86.zip hdf5-92041a68656c59813619ae1f26ed211b7f028e86.tar.gz hdf5-92041a68656c59813619ae1f26ed211b7f028e86.tar.bz2 |
[svn-r2897] Purpose:
C++ API for 1.3.x branch
Description:
The *.C and *.h files named different than those in 1.2.x.
They are in the form: 'H5' + classname, or just classname if
the classname is already prefixed with 'H5' to avoid ambiguity
in documentation context. This version has several hidden bugs
fixed and an improvement on the reference counting approach.
The classes and their inheritance structure are listed below:
---------------------------------------
H5Library
Exception
RefCounter
IdComponent
H5File
DataSpace
H5Object
Group
AbstractDs
DataSet
Attribute
DataType
PredType
EnumType
CompType
AtomType
StrType
IntType
FloatType
PropList
FileCreatPropList
FileAccPropList
DSetCreatPropList
DSetMemXferPropList
---------------------------------------
IdComponent uses RefCounter to keep track of opened objects
so proper termination of HDF5 objects can be maintained.
Each class has a .h file containing the class declaration and
a .C file containing its definition. In addition to the classes
files, the following files do not have class information:
- H5Cpp.h: header file to be included in user's application
- H5Idtemplates.h: contains a template function used by several classes
- H5Classes.h: contains forward class declarations
- H5CommonFG.*: contains common code used by classes H5File and Group
- H5Include.h: contains the hdf5.h header file and the #undef RCSID
to work around the problem: multiple defined RcsId
- H5Alltypes.h: simply serves as a container to hold the header
files of all datatypes to simplify the header file inclusion
Platforms:
Solaris (arabica) and Linux
Diffstat (limited to 'c++/src/H5Exception.h')
-rw-r--r-- | c++/src/H5Exception.h | 163 |
1 files changed, 163 insertions, 0 deletions
diff --git a/c++/src/H5Exception.h b/c++/src/H5Exception.h new file mode 100644 index 0000000..69ecf42 --- /dev/null +++ b/c++/src/H5Exception.h @@ -0,0 +1,163 @@ +#ifndef _H5Exception_H +#define _H5Exception_H + +#include <string> + +#ifndef H5_NO_NAMESPACE +namespace H5 { +using namespace std; +#endif + +class Exception { + public: + // Creates an exception with no message + Exception(); + + // Creates an exception with a detailed message + Exception( const string& message ); + + Exception( const char* message); + + // copy constructor + Exception( const Exception& orig ); + + // Returns the character string that describes an error specified by + // a major error number. + string getMajorString( H5E_major_t major_num ) const; + + // Returns the character string that describes an error specified by + // a minor error number. + string getMinorString( H5E_minor_t minor_num ) const; + + // Returns the detailed message set at the time the exception is thrown + string getDetailMesg() const; + + // Turns on the automatic error printing. + void setAutoPrint( H5E_auto_t func, + void* client_data ) const; + + // Turns off the automatic error printing. + static void dontPrint(); + + // Retrieves the current settings for the automatic error stack + // traversal function and its data. + void getAutoPrint( H5E_auto_t& func, + void** client_data ) const; + + // Clears the error stack for the current thread. + void clearErrorStack() const; + + // Walks the error stack for the current thread, calling the + // specified function. + void walkErrorStack( H5E_direction_t direction, + H5E_walk_t func, void* client_data ) const; + + // Default error stack traversal callback function that prints + // error messages to the specified output stream. + void walkDefErrorStack( int n, H5E_error_t& err_desc, + void* client_data ) const; + + // Prints the error stack in a default manner. + //void printError() const; + void printError( FILE* stream = NULL ) const; + + private: + string detailMessage; +}; + +// This exception is privately used in Group and H5File only +class File_GroupException { + public: + File_GroupException(); + File_GroupException( string message ); +}; + +class FileIException : public Exception { + public: + FileIException(); + FileIException( string message ); +}; + +class GroupIException : public Exception { + public: + GroupIException(); + GroupIException( string message ); +}; + +class ObjectHeaderException : public Exception { + public: + ObjectHeaderException(); + ObjectHeaderException( string message ); +}; + +class DataSpaceIException : public Exception { + public: + DataSpaceIException(); + DataSpaceIException( string message ); +}; + +class DataTypeIException : public Exception { + public: + DataTypeIException(); + DataTypeIException( string message ); +}; + +class PropListIException : public Exception { + public: + PropListIException(); + PropListIException( string message ); +}; + +class DataSetIException : public Exception { + public: + DataSetIException(); + DataSetIException( string message ); +}; + +class AttributeIException : public Exception { + public: + AttributeIException(); + AttributeIException( string message ); +}; + +class FunctionArgumentException : public Exception { + public: + FunctionArgumentException(); + FunctionArgumentException( string message ); +}; + +class ReferenceException : public Exception { + public: + ReferenceException(); + ReferenceException( string message ); +}; + +class DataStorageException : public Exception { + public: + DataStorageException(); + DataStorageException( string message ); +}; + +class LibraryIException : public Exception { + public: + LibraryIException(); + LibraryIException( string message ); +}; + +class IdComponentException : public Exception { + public: + IdComponentException(); + IdComponentException( string message ); +}; + +// The following are from Java API but not done here: +// AtomException, BtreeException, DataFiltersException, +// ExternalFilelistException, FunctionEntryExitException, +// HeapException, InternalErrorException, LowLevelIOException, +// MetaDataCacheException, ResourceUnavailableException, +// SymbolTableException +#ifndef H5_NO_NAMESPACE +} +#endif + +#endif // _H5Exception_H |