// // Copyright (C) 2001-2021 Greg Landrum and other RDKit contributors // // @@ All Rights Reserved @@ // This file is part of the RDKit. // The contents are covered by the terms of the BSD license // which is included in the file license.txt, found at the root // of the RDKit source tree. // #include #ifndef RD_SMILESPARSE_H #define RD_SMILESPARSE_H #include #include #include #include #include namespace RDKit { struct RDKIT_SMILESPARSE_EXPORT SmilesParserParams { int debugParse = 0; /**< enable debugging in the SMILES parser*/ bool sanitize = true; /**< sanitize the molecule after building it */ std::map *replacements = nullptr; /**< allows SMILES "macros" */ bool allowCXSMILES = true; /**< recognize and parse CXSMILES*/ bool strictCXSMILES = true; /**< throw an exception if the CXSMILES parsing fails */ bool parseName = true; /**< parse (and set) the molecule name as well */ bool removeHs = true; /**< remove Hs after constructing the molecule */ bool useLegacyStereo = true; /**< use the legacy stereochemistry perception code */ bool skipCleanup = false; /**< skip the final cleanup stage (for internal use) */ }; RDKIT_SMILESPARSE_EXPORT RWMol *SmilesToMol(const std::string &smi, const SmilesParserParams ¶ms); RDKIT_SMILESPARSE_EXPORT Atom *SmilesToAtom(const std::string &smi); RDKIT_SMILESPARSE_EXPORT Bond *SmilesToBond(const std::string &smi); //! Construct a molecule from a SMILES string /*! \param smi the SMILES to convert \param debugParse toggles verbose debugging information from the parser \param sanitize toggles H removal and sanitization of the molecule \param replacements a string->string map of replacement strings. See below for more information about replacements. \return a pointer to the new molecule; the caller is responsible for free'ing this. The optional replacements map can be used to do string substitution of abbreviations in the input SMILES. The set of substitutions is repeatedly looped through until the string no longer changes. It is the responsibility of the caller to make sure that substitutions results in legal and sensible SMILES. Examples of substitutions: \code CC{Q}C with {"{Q}":"OCCO"} -> CCOCCOC C{A}C{Q}C with {"{Q}":"OCCO", "{A}":"C1(CC1)"} -> CC1(CC1)COCCOC C{A}C{Q}C with {"{Q}":"{X}CC{X}", "{A}":"C1CC1", "{X}":"N"} -> CC1CC1CNCCNC \endcode */ inline RWMol *SmilesToMol( const std::string &smi, int debugParse = 0, bool sanitize = true, std::map *replacements = nullptr) { SmilesParserParams params; params.debugParse = debugParse; params.replacements = replacements; if (sanitize) { params.sanitize = true; params.removeHs = true; } else { params.sanitize = false; params.removeHs = false; } return SmilesToMol(smi, params); }; struct RDKIT_SMILESPARSE_EXPORT SmartsParserParams { int debugParse = 0; /**< enable debugging in the SMARTS parser*/ std::map *replacements = nullptr; /**< allows SMARTS "macros" */ bool allowCXSMILES = true; /**< recognize and parse CXSMILES extensions */ bool strictCXSMILES = true; /**< throw an exception if the CXSMILES parsing fails */ bool parseName = true; /**< parse (and set) the molecule name as well */ bool mergeHs = true; /**< toggles merging H atoms in the SMARTS into neighboring atoms*/ bool skipCleanup = false; /**< skip the final cleanup stage (for internal use) */ }; RDKIT_SMILESPARSE_EXPORT RWMol *SmartsToMol(const std::string &sma, const SmartsParserParams &ps); //! Construct a molecule from a SMARTS string /*! \param sma the SMARTS to convert \param debugParse toggles verbose debugging information from the parser \param mergeHs toggles merging H atoms in the SMARTS into neighboring atoms \param replacements a string->string map of replacement strings. \see SmilesToMol for more information about replacements \return a pointer to the new molecule; the caller is responsible for free'ing this. */ inline RWMol *SmartsToMol( const std::string &sma, int debugParse = 0, bool mergeHs = false, std::map *replacements = nullptr) { SmartsParserParams ps; ps.debugParse = debugParse; ps.mergeHs = mergeHs; ps.replacements = replacements; return SmartsToMol(sma, ps); }; RDKIT_SMILESPARSE_EXPORT Atom *SmartsToAtom(const std::string &sma); RDKIT_SMILESPARSE_EXPORT Bond *SmartsToBond(const std::string &sma); class RDKIT_SMILESPARSE_EXPORT SmilesParseException : public std::exception { public: SmilesParseException(const char *msg) : _msg(msg) {} SmilesParseException(const std::string msg) : _msg(msg) {} const char *what() const noexcept override { return _msg.c_str(); } ~SmilesParseException() noexcept override = default; private: std::string _msg; }; inline std::unique_ptr operator"" _smiles(const char *text, size_t len) { std::string smi(text, len); RWMol *ptr = nullptr; try { ptr = SmilesToMol(smi); } catch (const RDKit::MolSanitizeException &) { ptr = nullptr; } return std::unique_ptr(ptr); } inline std::unique_ptr operator"" _smarts(const char *text, size_t len) { std::string smi(text, len); // no need for exception handling here: SmartsToMol() doesn't do // sanitization RWMol *ptr = SmartsToMol(smi); return std::unique_ptr(ptr); } } // namespace RDKit #endif