/usr/include/openbabel-2.0/openbabel/op.h is in libopenbabel-dev 2.3.2+dfsg-2.2build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | /**********************************************************************
op.h - plugin options or operations
Copyright (C) 2007 by Chris Morley
This file is part of the Open Babel project.
For more information, see <http://openbabel.org/>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation version 2 of the License.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
***********************************************************************/
#ifndef OB_OP_H
#define OB_OP_H
#include <openbabel/babelconfig.h>
#include <string>
#include <map>
#include <openbabel/plugin.h>
#include <openbabel/base.h>
namespace OpenBabel
{
class OBConversion; //used only as a pointer
// Class introduction below
class OBAPI OBOp : public OBPlugin
{
MAKE_PLUGIN(OBOp);
public:
typedef const std::map<std::string, std::string> OpMap ;
///Provides the name of this kind of plugin. Use -L "ops" to list from commandline.
virtual const char* TypeID(){ return "ops"; }
///Required function that does the work. Normally return true, unless object is not to be output.
//NOTE: the parameters were changed in r3532
virtual bool Do(OBBase* pOb, const char* OptionText=NULL, OpMap* pOptions=NULL, OBConversion* pConv=NULL)=0;
/// \return true if this op is designed to work with the class of pOb, e.g. OBMol
virtual bool WorksWith(OBBase* pOb)const=0;
/// Do something with an array of objects. Used a a callback routine in OpSort, etc.
virtual bool ProcessVec(std::vector<OBBase*>& /* vec */){ return false; }
/// \return string describing options, for display with -H and to make checkboxes in GUI
static std::string OpOptions(OBBase* pOb)
{
std::string s;
OBPlugin::PluginIterator itr;
for(itr=OBPlugin::Begin("ops");itr!=OBPlugin::End("ops");++itr)
{
OBOp* pOp = dynamic_cast<OBOp*>(itr->second);
//ignore ops with IDs that begin with '_' or have "not displayed in GUI" in their first line of description
if(*(itr->first)=='_'
|| OBPlugin::FirstLine(pOp->Description()).find("not displayed in GUI")!=std::string::npos)
continue;
if(pOp && pOp->WorksWith(pOb))
{
s += "--";
s += itr->first; //ID
s += ' ';
s += OBPlugin::FirstLine(pOp->Description()) + '\n';
}
}
s += '\n';
return s;
}
///Call Do() of all the OBOps whose ID is a key in the map.
///Called from DoTransformations(). The map has general options like -x or --multicharoption
///The key is the option name and the value, if any, is text which follows the option name.
/// In some cases, there may be several parameters, space separated)
/// \return false indicating object should not be output, if any Do() returns false
static bool DoOps(OBBase* pOb, OpMap* pOptions, OBConversion* pConv)
{
OpMap::const_iterator itr;
for(itr=pOptions->begin();itr!=pOptions->end();++itr)
{
OBOp* pOp = FindType(itr->first.c_str());
if(pOp)
if(!pOp->Do(pOb, itr->second.c_str(), pOptions, pConv))
return false; //Op has decided molecule should not be output
}
return true;
}
};
/** \class OBOp op.h <openbabel/op.h>
\brief Operations to modify molecules before output
\since version 2.2
Classes derived from OBOp implement options for the babel program (for both
its commandline and GUI interfaces). It is intended for options that carry out some
modification on the molecule(or reaction) after it has been input, but before
it is output. An example is the --center option implemented in the OpCenter class
in ops.cpp, which is a duplicate of the built in -c option for centering coordinates.
The advantage of plugin classes is that no existing code has to be modified
when a new class is added. You can list those that are present by
babel -L ops
or from a menu item in the GUI.
Any OBOp derived class has to have a constructor, a function returning a short description,
and a Do() function which does the work. It also needs a WorksWith() function
which is always the same when operating on OBMol objects. (It is not made a default
to reducecode dependencies.) A single global instance of the class needs to be
instantiated to define the ID, by which the class is subsequently accessed.
OBOp works by two of its static functions being called from code in transform.cpp:
- OpOptions(OBBase* pOb, OpMap* pOptions) returns a string describing each of the
derivated classes relevant to objects of the class of the OBBase parameter,
for use in the help text and to set checkboxes in the GUI;
- DoOps(OBBase* pOb) applies each option whose ID is listed in the Opmap parameter
to the object (ususally an OBMol) in the OBBase parameter.
Options which need parameters are passed these (space delimited) in the text parameter
of the Do() function. They can also access other general options specified on the
command line by examining the the OpMap parameter.
To use an OBOp class from the API it is necessary to use an extra step in case it isn't
present. So to apply the OBOp class with ID gen3D to your mol
\code
OBOp* pOp = OBOp::FindType("gen3D");
if(!pOp)
...report error
pOp->Do(mol);
\endcode
*/
}//namespace
#endif
//! \file op.h
//! \brief Base plugin class for operations on molecules
|