#include <openbabel/obmolecformat.h>
|
static bool | ReadChemObjectImpl (OBConversion *pConv, OBFormat *) |
|
static bool | WriteChemObjectImpl (OBConversion *pConv, OBFormat *) |
|
static bool | DoOutputOptions (OBBase *pOb, OBConversion *pConv) |
|
static bool | ReadNameIndex (NameIndexType &index, const std::string &datafilename, OBFormat *pInFormat) |
|
static OBFormat * | FormatFromMIME (const char *MIME) |
|
static OBPlugin * | GetPlugin (const char *Type, const char *ID) |
|
static bool | ListAsVector (const char *PluginID, const char *param, std::vector< std::string > &vlist) |
|
static void | List (const char *PluginID, const char *param=NULL, std::ostream *os=&std::cout) |
|
static std::string | ListAsString (const char *PluginID, const char *param=NULL) |
|
static std::string | FirstLine (const char *txt) |
|
static PluginIterator | Begin (const char *PluginID) |
|
static PluginIterator | End (const char *PluginID) |
|
static void | LoadAllPlugins () |
|
|
static bool | DeferMolOutput (OBMol *pmol, OBConversion *pConv, OBFormat *pF) |
|
static bool | OutputDeferredMols (OBConversion *pConv) |
|
static bool | DeleteDeferredMols () |
|
static OBMol * | MakeCombinedMolecule (OBMol *pFirst, OBMol *pSecond) |
|
An OBFormat convenience subclass for conversion to/from OBMol data.
This class is not intended for direct use outside of Open Babel, unless you're writing a new format converting to or from an OBMol molecule. (e.g., see http://openbabel.org/wiki/HowTo:Add_A_New_File_Format).
An OBFormat which converts to and/or from OBMol can derive from this class to save duplicating the ReadChemObject() and/or WriteChemObject() methods. Derive directly from OBFormat if the object converted is not OBMol or if interaction with the framework is required during the execution of ReadMolecule() or WriteMolecule(), as for example in CMLFormat
◆ NameIndexType
◆ OBMoleculeFormat()
◆ ReadChemObjectImpl()
◆ WriteChemObjectImpl()
◆ ReadChemObject()
The "Convert" interface for reading a new molecule.
Reimplemented from OBFormat.
◆ WriteChemObject()
The "Convert" interface for writing a new molecule.
Reimplemented from OBFormat.
◆ DoOutputOptions()
Applies output options to molecule. Returns false to terminate output.
◆ DeferMolOutput()
Defer output of a molecule until later, so it can be combined with others
- Returns
- Success, or false if no molecule was read.
Instead of sending molecules for output via AddChemObject(), they are saved in here in OBMoleculeFormat or discarded. By default they are saved only if they are in the first input file. Parts of subsequent molecules, such as chemical structure, coordinates and OBGenericData can replace the parts in molecules with the same title that have already been stored, subject to a set of rules. After all input files have been read, the stored molecules (possibly now having augmented properties) are sent to the output format.
Is a static function with *this as parameter so that it can be called from other format classes like XMLMoleculeFormat which are not derived from OBMoleculeFormat.
◆ OutputDeferredMols()
Write out all molecules queued with DeferMolOutput.
◆ DeleteDeferredMols()
bool DeleteDeferredMols |
( |
| ) |
|
|
static |
Delete the list of queued molecules from DeferMolOutput.
◆ MakeCombinedMolecule()
- Returns
- the OBMol which combines
pFirst
and pSecond
(i.e.)
Makes a new OBMol on the heap by combining two molecules according to the rule below. If both have OBGenericData of the same type, or OBPairData with the same attribute, the version from pFirst is used. Returns a pointer to a new OBMol which will need deleting by the calling program (probably by being sent to an output format). If the molecules cannot be regarded as being the same structure a NULL pointer is returned and an error message logged.
pFirst and pSecond and the objects they point to are not changed. (const modifiers difficult because class OBMol not designed appropriately)
Combining molecules: rules for each of the three parts Title: Use the title of pFirst unless it has none, when use that of pSecond. Warning if neither molecule has a title.
Structure
- a structure with atoms replaces one with no atoms
- a structure with bonds replaces one with no bonds, provided the formula is the same, else an error.
- structures with atoms and bonds are compared by InChI; error if not the same.
- a structure with 3D coordinates replaces one with 2D coordinates
- a structure with 2D coordinates replace one with 0D coordinates
OBGenericData OBPairData
◆ ReadNameIndex()
Attempts to read the index file datafilename.obindx successively from the following directories:
- the current directory
- that in the environment variable BABEL_DATADIR or in the macro BABEL_DATADIR if the environment variable is not set
- in a subdirectory of the BABEL_DATADIR directory with the version of OpenBabel as its name An index of type NameIndexType is then constructed. NameIndexType is defined in obmolecformat.h and may be a std::tr1::unordered_map (a hash_map) or std::map. In any case it is searched by
NameIndexType::iterator itr = index.find(molecule_name);
if(itr!=index.end())
unsigned pos_in_datafile = itr->second;
pos_in_datafile is used as a parameter in seekg() to read from the datafile
If no index is found, it is constructed from the datafile by reading all of it using the format pInFormat, and written to the directory containing the datafile. This means that this function can be used without worrying whether there is an index. It will be slow to execute the first time, but subsequent uses get the speed benefit of indexed access to the datafile.
The serialization and de-serialization of the NameIndexType is entirely in this routine and could possibly be improved. Currently re-hashing is done every time the index is read.
◆ GetType()
const std::type_info& GetType |
( |
| ) |
|
|
inlinevirtual |
- Returns
- the type of data converted by this format (here, OBMol)
Reimplemented from OBFormat.
◆ TypeID()
Redefined by each plugin type: "formats", "fingerprints", etc.
Reimplemented from OBPlugin.
◆ ReadMolecule()
◆ WriteMolecule()
◆ Description()
virtual const char* Description |
( |
| ) |
|
|
pure virtualinherited |
Information on this format. Printed out in response to -Hxxx option where xxx id the id of the format.
Must be provided by each format class. Can include a list of command line Options. These may be used to construction check boxes, radio buttons etc for GUI interface.
Reimplemented from OBPlugin.
Referenced by OBConversion::GetNextFormat(), and OBConversion::RegisterOptionParam().
◆ TargetClassDescription()
const char * TargetClassDescription |
( |
| ) |
|
|
virtualinherited |
◆ SpecificationURL()
virtual const char* SpecificationURL |
( |
| ) |
|
|
inlinevirtualinherited |
Web address where the format is defined.
◆ GetMIMEType()
virtual const char* GetMIMEType |
( |
| ) |
|
|
inlinevirtualinherited |
Chemical MIME type associated with this file type (if any)
◆ Flags()
virtual unsigned int Flags |
( |
| ) |
|
|
inlinevirtualinherited |
◆ SkipObjects()
◆ MakeNewInstance()
- Returns
- a pointer to a new instance of the format, or NULL if fails. Normally a single global instance is used but this may cause problems if there are member variables and the format is used in more than one place in the program.
◆ RegisterFormat()
int RegisterFormat |
( |
const char * |
ID, |
|
|
const char * |
MIME = NULL |
|
) |
| |
|
inherited |
◆ Display()
bool Display |
( |
std::string & |
txt, |
|
|
const char * |
param, |
|
|
const char * |
ID = NULL |
|
) |
| |
|
virtualinherited |
Provides a description in txt of the format specified by itr. If param starts with "in", "read", "out" or "write" only the appropriate formats are output. The others return false. If param contains "verbose", the whole description is output.
Reimplemented from OBPlugin.
◆ FormatFromMIME()
OBFormat * FormatFromMIME |
( |
const char * |
MIME | ) |
|
|
staticinherited |
The documentation for this class was generated from the following files: