/usr/include/openbabel-2.0/openbabel/obconversion.h is in libopenbabel-dev 2.3.2+dfsg-3build1.
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 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 | /**********************************************************************
obconversion.h - Handle file conversions. Declaration of OBFormat, OBConversion
Copyright (C) 2004-2009 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_CONV_H
#define OB_CONV_H
#include <openbabel/babelconfig.h>
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#include <map>
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include <openbabel/dlhandler.h>
#include <openbabel/oberror.h>
#include <openbabel/format.h>
#include <openbabel/lineend.h>
// These macros are used in DLL builds. If they have not
// been set in babelconfig.h, define them as nothing.
#ifndef OBCONV
#define OBCONV
#endif
#ifndef OBDLL
#define OBDLL
#endif
//using namespace std;
namespace OpenBabel {
// Needed to preserve deprecated API
typedef OBPlugin::PluginIterator Formatpos;
OBERROR extern OBMessageHandler obErrorLog;
//*************************************************
/// @brief Class to convert from one format to another.
// Class introduction in obconversion.cpp
class OBCONV OBConversion
{
/// @nosubgrouping
public:
/// @name Construction
//@{
OBConversion(std::istream* is=NULL, std::ostream* os=NULL);
/// @brief Copy constructor
OBConversion(const OBConversion& o);
virtual ~OBConversion();
//@}
/// @name Collection of formats
//@{
/// @brief Called once by each format class
static int RegisterFormat(const char* ID, OBFormat* pFormat, const char* MIME = NULL);
/// @brief Searches registered formats
static OBFormat* FindFormat(const char* ID);
/// @brief Searches registered formats
/// \since version 2.3
static OBFormat* FindFormat(const std::string ID);
/// @brief Searches registered formats for an ID the same as the file extension
static OBFormat* FormatFromExt(const char* filename);
/// @brief Searches registered formats for an ID the same as the file extension
/// \since version 2.3
static OBFormat* FormatFromExt(const std::string filename);
/// @brief Searches registered formats for a MIME the same as the chemical MIME type passed
static OBFormat* FormatFromMIME(const char* MIME);
///Deprecated!.Repeatedly called to recover available Formats
static bool GetNextFormat(Formatpos& itr, const char*& str,OBFormat*& pFormat);
//@}
/// @name Information
//@{
static const char* Description(); //generic conversion options
//@}
/// @name Parameter get and set
//@{
std::istream* GetInStream() const {return pInStream;};
std::ostream* GetOutStream() const {return pOutStream;};
void SetInStream(std::istream* pIn)
{
if (pInStream && NeedToFreeInStream) {
delete pInStream; NeedToFreeInStream = false;
}
pInStream=pIn;
CheckedForGzip = false; // haven't tried to gzip decode this stream
};
void SetOutStream(std::ostream* pOut)
{
if (pOutStream && NeedToFreeOutStream) {
delete pOutStream; NeedToFreeOutStream = false;
}
pOutStream=pOut;
};
/// Sets the formats from their ids, e g CML
bool SetInAndOutFormats(const char* inID, const char* outID);
bool SetInAndOutFormats(OBFormat* pIn, OBFormat* pOut);
/// Sets the input format from an id e.g. CML
bool SetInFormat(const char* inID);
bool SetInFormat(OBFormat* pIn);
/// Sets the output format from an id e.g. CML
bool SetOutFormat(const char* outID);
bool SetOutFormat(OBFormat* pOut);
OBFormat* GetInFormat() const{return pInFormat;};
OBFormat* GetOutFormat() const{return pOutFormat;};
std::string GetInFilename() const{return InFilename;};
///Get the position in the input stream of the object being read
std::streampos GetInPos()const{return wInpos;};
///Get the length in the input stream of the object being read
size_t GetInLen()const{return wInlen;};
/// \return a default title which is the filename
const char* GetTitle() const;
///@brief Extension method: deleted in ~OBConversion()
OBConversion* GetAuxConv() const {return pAuxConv;};
void SetAuxConv(OBConversion* pConv) {pAuxConv=pConv;};
//@}
/** @name Option handling
Three types of Option provide information and control instructions to the
conversion process, INOPTIONS, OUTOPTIONS, GENOPTIONS, and are stored in each
OBConversion object in separate maps. Each option has an id and an optional
text string. They are set individually by AddOption() or (rarely) collectively
in SetOptions(). Options cannot be altered but can be replaced with AddOption()
and deleted with RemoveOption(), which, however, should be used in an op derived
from OBOp (because of iterator invalidation).
If the "Convert" interface is used, the GENOPTIONS are acted upon in the
OBBase::DoTransformations() functions (currently only OBMol has one). This
happens after the object has been input but before it has been output.
All the options are available to input and output formats, etc. via the IsOption()
function, and the interpretation of any text string needs to be done subsequently.
In the commandline interface, options with single character ids are are indicated
like -s, and those with multiple character ids like --gen3D. An option may have
one or more parameters which appear, space separated, in the option's text string.
With babel, unless the option is at the end of the command, it is necessary for
the number of its parameters to be exactly that specified in RegisterOptionParam().
The default is 0, but if it is more, and babel is likely to be used, this function
should be called in the constructor of a format or op.
With obabel (or the GUI), it is not necessary to call RegisterOptionParam().
New GENOPTIONS can be defined (as plugins) using the class OBOp.
It is customary for a format or op to document any INOPTIONS or OUTPTIONS it
uses in its Description() function. As well as providing documentation during
use, this is also parsed by the GUI to construct its checkboxes,etc., so it is
advisable to give new Descriptions the same form as existing ones.
Some conversion options, such as -f, -l, -m, are unlikely to be used in
programming, but are listed in OBConversion::Description(). The built-in
GENOPTIONS for OBMol objects are listed in OBMol::ClassDescription() which
is in transform.cpp and also in this documentation under AddOption().
*/
//@{
///@brief Three types of options set on the the command line by -a? , -x? , or -?
enum Option_type { INOPTIONS, OUTOPTIONS, GENOPTIONS, ALL };
///@brief Determine whether an option is set. \return NULL if option not and a pointer to the associated text if it is
const char* IsOption(const char* opt,Option_type opttyp=OUTOPTIONS);
///@brief Access the map with option name as key and any associated text as value
const std::map<std::string,std::string>* GetOptions(Option_type opttyp)
{ return &OptionsArray[opttyp];};
///@brief Set an option of specified type, with optional text
void AddOption(const char* opt, Option_type opttyp=OUTOPTIONS, const char* txt=NULL);
bool RemoveOption(const char* opt, Option_type optype);
///@brief Set several single character options of specified type from string like ab"btext"c"ctext"
void SetOptions(const char* options, Option_type opttyp);
///@brief For example -h takes 0 parameters; -f takes 1. Call in a format constructor.
static void RegisterOptionParam(std::string name, OBFormat* pFormat,
int numberParams=0, Option_type typ=OUTOPTIONS);
/// \return the number of parameters registered for the option, or 0 if not found
static int GetOptionParams(std::string name, Option_type typ);
//@}
///@brief Copies the options (by default of all types) from one OBConversion Object to another.
void CopyOptions(OBConversion* pSourceConv, Option_type typ=ALL);
/// @name Supported file format
//@{
// @brief Set and return the list of supported input format
std::vector<std::string> GetSupportedInputFormat();
// @brief Set and return the list of supported output format
std::vector<std::string> GetSupportedOutputFormat();
//@}
/// @name Conversion
//@{
/// @brief Conversion for single input and output stream
int Convert(std::istream* is, std::ostream* os);
/// @brief Conversion with existing streams
int Convert();
/// @brief Conversion with multiple input/output files:
/// makes input and output streams, and carries out normal, batch, aggregation, and splitting conversion.
int FullConvert(std::vector<std::string>& FileList,
std::string& OutputFileName, std::vector<std::string>& OutputFileList);
//@}
/// @name Conversion loop control
//@{
int AddChemObject(OBBase* pOb);///< @brief Adds to internal array during input
OBBase* GetChemObject(); ///< @brief Retrieve from internal array during output
bool IsLast();///< @brief True if no more objects to be output
bool IsFirstInput();///< @brief True if the first input object is being processed
void SetFirstInput(bool b=true);///< @brief Setwhether or not is the first input
int GetOutputIndex() const ;///< @brief Retrieves number of ChemObjects that have been actually output
void SetOutputIndex(int indx);///< @brief Sets output index (maybe to control whether seen as first object)
void SetMoreFilesToCome();///<@brief Used with multiple input files. Off by default.
void SetOneObjectOnly(bool b=true);///< @brief Used with multiple input files. Off by default.
void SetLast(bool b){SetOneObjectOnly(b);}///< @brief Synonym for SetOneObjectOnly()
bool IsLastFile(){ return !MoreFilesToCome;}///< @brief True if no more files to be read
/// @brief Number of objects read and processed
/// Incremented after options are processed, so 0 for first object. Returns -1 if Convert interface not used.
int GetCount()const { return Count; }
//@}
/// @name Convenience functions
//@{
///The default format is set in a single OBFormat class (generally it is OBMol)
static OBFormat* GetDefaultFormat(){return OBFormat::FindType(NULL);};
/// @brief Outputs an object of a class derived from OBBase.
/// Part of "API" interface.
/// The output stream can be specified and the change is retained in the OBConversion instance
bool Write(OBBase* pOb, std::ostream* pout=NULL);
/// @brief Outputs an object of a class derived from OBBase as a string
/// Part of "API" interface.
/// The output stream is temporarily changed to the string and then restored
/// This method is primarily intended for scripting languages without "stream" classes
/// The optional "trimWhitespace" parameter allows trailing whitespace to be removed
/// (e.g., in a SMILES string or InChI, etc.)
std::string WriteString(OBBase* pOb, bool trimWhitespace = false);
/// @brief Outputs an object of a class derived from OBBase as a file (with the supplied path)
/// Part of "API" interface.
/// The output stream is changed to the supplied file and the change is retained in the
/// OBConversion instance.
/// This method is primarily intended for scripting languages without "stream" classes
bool WriteFile(OBBase* pOb, std::string filePath);
/// @brief Manually closes and deletes the output stream
/// The file is closed anyway when in the OBConversion destructor or when WriteFile
/// is called again.
/// \since version 2.1
void CloseOutFile();
/// @brief Reads an object of a class derived from OBBase into pOb.
/// Part of "API" interface.
/// The input stream can be specified and the change is retained in the OBConversion instance
/// \return false and pOb=NULL on error
bool Read(OBBase* pOb, std::istream* pin=NULL);
/// Part of "API" interface.
/// The input stream can be specified and the change is retained in the OBConversion instance
/// \return NULL on error
// OBBase* ReadObject(std::istream* pin=NULL);
/// @brief Reads an object of a class derived from OBBase into pOb from the supplied string
/// Part of "API" interface.
/// \return false and pOb=NULL on error
/// This method is primarily intended for scripting languages without "stream" classes
bool ReadString(OBBase* pOb, std::string input);
/// @brief Reads an object of a class derived from OBBase into pOb from the file specified
/// Part of "API" interface.
/// The output stream is changed to the supplied file and the change is retained in the
/// OBConversion instance. For multi-molecule files, the remaining molecules
/// can be read by repeatedly calling the Read() method.
/// \return false and pOb=NULL on error
/// This method is primarily intended for scripting languages without "stream" classes
bool ReadFile(OBBase* pOb, std::string filePath);
/// Part of the "Convert" interface.
/// Open the files and update the streams in the OBConversion object.
/// This method is primarily intended for scripting languages without "stream" classes
/// and will usually followed by a call to Convert().
/// \return false if unsucessful.
bool OpenInAndOutFiles(std::string infilepath, std::string outfilepath);
/// @brief Sends a message like "2 molecules converted" to clog
/// The type of object is taken from the TargetClassDescription
/// of the specified class (or the output format if not specified)and
/// is appropriately singular or plural.
void ReportNumberConverted(int count, OBFormat* pFormat=NULL);
/// \return the number of objects in the inputstream,
/// or -1 if error or if SkipObjects for the input format is not implemented
/// Adjusts for the value of -f and -l options (first and last objects).
int NumInputObjects();
protected:
///Replaces * in BaseName by InFile without extension and path
static std::string BatchFileName(std::string& BaseName, std::string& InFile);
///Replaces * in BaseName by Count
static std::string IncrementedFileName(std::string& BaseName, const int Count);
///Checks for misunderstandings when using the -m option
static bool CheckForUnintendedBatch(const std::string& infile, const std::string& outfile);
///Adds a filtering rdbuffer to handle line endings if not already installed and not a binary or xml format.
void InstallStreamFilter();
//@}
protected:
bool SetStartAndEnd();
// static FMapType& FormatsMap();///<contains ID and pointer to all OBFormat classes
// static FMapType& FormatsMIMEMap();///<contains MIME and pointer to all OBFormat classes
typedef std::map<std::string,int> OPAMapType;
static OPAMapType& OptionParamArray(Option_type typ);
static int LoadFormatFiles();
bool OpenAndSetFormat(bool SetFormat, std::ifstream* is, std::stringstream* ss=NULL);
std::string InFilename;
std::istream* pInStream;
std::ostream* pOutStream;
static OBFormat* pDefaultFormat;
OBFormat* pInFormat;
OBFormat* pOutFormat;
std::map<std::string,std::string> OptionsArray[3];
int Index;
unsigned int StartNumber;
unsigned int EndNumber;
int Count;
bool m_IsFirstInput;
bool m_IsLast;
bool MoreFilesToCome;
bool OneObjectOnly;
bool ReadyToInput;
bool CheckedForGzip; ///< input stream is gzip-encoded
bool NeedToFreeInStream;
bool NeedToFreeOutStream;
typedef FilteringInputStreambuf< LineEndingExtractor > LErdbuf;
LErdbuf* pLineEndBuf;
static int FormatFilesLoaded;
OBBase* pOb1;
std::streampos wInpos; ///<position in the input stream of the object being written
std::streampos rInpos; ///<position in the input stream of the object being read
size_t wInlen; ///<length in the input stream of the object being written
size_t rInlen; ///<length in the input stream of the object being read
OBConversion* pAuxConv;///<Way to extend OBConversion
std::vector<std::string> SupportedInputFormat; ///< list of supported input format
std::vector<std::string> SupportedOutputFormat; ///< list of supported output format
};
} //namespace OpenBabel
#endif //OB_CONV_H
//! \file
//! \brief Handle file conversions. Declaration of OBFormat, OBConversion.
|