|
OSSIM - Open Source Software Image Map
Version 1.9.0 (20180803)
|
Factory for Hdf image reader. More...
#include <ossimH5ReaderFactory.h>
Public Member Functions | |
| virtual | ~ossimH5ReaderFactory () |
| virtual destructor More... | |
| virtual ossimImageHandler * | open (const ossimFilename &fileName, bool openOverview=true) const |
| open that takes a file name. More... | |
| virtual ossimImageHandler * | open (const ossimKeywordlist &kwl, const char *prefix=0) const |
| open that takes a keyword list and prefix. More... | |
| virtual ossimObject * | createObject (const ossimString &typeName) const |
| createObject that takes a class name (ossimH5Reader) More... | |
| virtual ossimObject * | createObject (const ossimKeywordlist &kwl, const char *prefix=0) const |
| Creates and object given a keyword list and prefix. More... | |
| virtual void | getTypeNameList (std::vector< ossimString > &typeList) const |
| Adds ossimH5Reader to the typeList. More... | |
| virtual void | getSupportedExtensions (ossimImageHandlerFactoryBase::UniqueStringList &extensionList) const |
| Method to add supported extension to the list, like "hdf". More... | |
Public Member Functions inherited from ossimImageHandlerFactoryBase | |
| virtual ossimRefPtr< ossimImageHandler > | open (std::shared_ptr< ossim::istream > &str, const std::string &connectionString, bool openOverview=true) const |
| Open method that takes a stream. More... | |
| virtual ossimRefPtr< ossimImageHandler > | open (std::shared_ptr< ossim::ImageHandlerState > state) const |
| virtual ossimRefPtr< ossimImageHandler > | openOverview (const ossimFilename &file) const |
| Open overview that takes a file name. More... | |
| virtual ossimRefPtr< ossimImageHandler > | openOverview (std::shared_ptr< ossim::istream > &str, const ossimString &connectionString) const |
| Open method that takes a stream. More... | |
| virtual void | getImageHandlersBySuffix (ImageHandlerList &result, const ossimString &ext) const |
| virtual void | getImageHandlersByMimeType (ImageHandlerList &result, const ossimString &mimeType) const |
Public Member Functions inherited from ossimObjectFactory | |
| virtual | ~ossimObjectFactory () |
Public Member Functions inherited from ossimObject | |
| ossimObject () | |
| virtual | ~ossimObject () |
| virtual ossimObject * | dup () const |
| virtual ossimString | getShortName () const |
| virtual ossimString | getLongName () const |
| virtual ossimString | getDescription () const |
| virtual ossimString | getClassName () const |
| virtual RTTItypeid | getType () const |
| virtual bool | canCastTo (ossimObject *obj) const |
| virtual bool | canCastTo (const RTTItypeid &id) const |
| virtual bool | canCastTo (const ossimString &parentClassName) const |
| virtual bool | saveState (ossimKeywordlist &kwl, const char *prefix=0) const |
| virtual bool | loadState (const ossimKeywordlist &kwl, const char *prefix=0) |
| virtual std::ostream & | print (std::ostream &out) const |
| Generic print method. More... | |
| virtual bool | isEqualTo (const ossimObject &obj, ossimCompareType compareType=OSSIM_COMPARE_FULL) const |
| virtual void | accept (ossimVisitor &visitor) |
Public Member Functions inherited from ossimReferenced | |
| ossimReferenced () | |
| ossimReferenced (const ossimReferenced &) | |
| ossimReferenced & | operator= (const ossimReferenced &) |
| void | ref () const |
| increment the reference count by one, indicating that this object has another pointer which is referencing it. More... | |
| void | unref () const |
| decrement the reference count by one, indicating that a pointer to this object is referencing it. More... | |
| void | unref_nodelete () const |
| decrement the reference count by one, indicating that a pointer to this object is referencing it. More... | |
| int | referenceCount () const |
Static Public Member Functions | |
| static ossimH5ReaderFactory * | instance () |
| static method to return instance (the only one) of this class. More... | |
Protected Member Functions | |
| bool | hasExcludedExtension (const ossimFilename &file) const |
| Method to weed out extensions that this plugin knows it does not support. More... | |
| ossimH5ReaderFactory () | |
| hidden from use default constructor More... | |
| ossimH5ReaderFactory (const ossimH5ReaderFactory &) | |
| hidden from use copy constructor More... | |
| void | operator= (const ossimH5ReaderFactory &) |
| hidden from use copy constructor More... | |
Protected Member Functions inherited from ossimReferenced | |
| virtual | ~ossimReferenced () |
Static Protected Attributes | |
| static ossimH5ReaderFactory * | theInstance = 0 |
| static instance of this class More... | |
Additional Inherited Members | |
Public Types inherited from ossimImageHandlerFactoryBase | |
| typedef UniqueList< ossimString > | UniqueStringList |
| typedef std::vector< ossimRefPtr< ossimImageHandler > > | ImageHandlerList |
Factory for Hdf image reader.
Definition at line 23 of file ossimH5ReaderFactory.h.
|
virtual |
virtual destructor
Definition at line 31 of file ossimH5ReaderFactory.cpp.
References theInstance.
|
protected |
hidden from use default constructor
Definition at line 155 of file ossimH5ReaderFactory.cpp.
Referenced by instance().
|
protected |
|
virtual |
createObject that takes a class name (ossimH5Reader)
| typeName | Should be "ossimH5Reader". |
Implements ossimObjectFactory.
Definition at line 109 of file ossimH5ReaderFactory.cpp.
References ossimRefPtr< T >::release().
|
virtual |
Creates and object given a keyword list and prefix.
| kwl | The keyword list. |
| prefix | the keyword list prefix. |
Implements ossimObjectFactory.
Definition at line 121 of file ossimH5ReaderFactory.cpp.
References open().
|
virtual |
Method to add supported extension to the list, like "hdf".
| extensionList | The list to add to. |
Implements ossimImageHandlerFactoryBase.
Definition at line 134 of file ossimH5ReaderFactory.cpp.
References ossimImageHandlerFactoryBase::UniqueList< T >::push_back().
|
virtual |
Adds ossimH5Reader to the typeList.
| typeList | List to add to. |
Implements ossimObjectFactory.
Definition at line 128 of file ossimH5ReaderFactory.cpp.
|
protected |
Method to weed out extensions that this plugin knows it does not support.
This is to avoid a costly open on say a tiff or jpeg that is not handled by this plugin.
Definition at line 142 of file ossimH5ReaderFactory.cpp.
References ossimString::downcase(), and ossimFilename::ext().
|
static |
static method to return instance (the only one) of this class.
Definition at line 36 of file ossimH5ReaderFactory.cpp.
References ossimH5ReaderFactory(), and theInstance.
Referenced by ossimSharedLibraryFinalize(), and ossimSharedLibraryInitialize().
|
virtual |
open that takes a file name.
| file | The file to open. |
| openOverview | If true image handler will attempt to open overview. default = true |
Implements ossimImageHandlerFactoryBase.
Definition at line 45 of file ossimH5ReaderFactory.cpp.
Referenced by createObject().
|
virtual |
open that takes a keyword list and prefix.
| kwl | The keyword list. |
| prefix | the keyword list prefix. |
Implements ossimImageHandlerFactoryBase.
Definition at line 82 of file ossimH5ReaderFactory.cpp.
|
protected |
|
staticprotected |
static instance of this class
Definition at line 106 of file ossimH5ReaderFactory.h.
Referenced by instance(), and ~ossimH5ReaderFactory().
1.8.14