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
|
%{
// $Id$
//
// Copyright (C) 2001-2016 Randal Henne, Greg Landrum and Rational Discovery LLC
//
// @@ All Rights Reserved @@
//
#include <cstring>
#include <iostream>
#include <vector>
#include <list>
#include <GraphMol/RDKitBase.h>
#include <GraphMol/SmilesParse/SmilesParse.h>
#include <GraphMol/SmilesParse/SmilesParseOps.h>
#include <RDGeneral/RDLog.h>
#define YYDEBUG 1
#include "smiles.tab.hpp"
extern int yysmiles_lex(YYSTYPE *,void *,int &);
using namespace RDKit;
namespace {
void yyErrorCleanup(std::vector<RDKit::RWMol *> *molList){
for(std::vector<RDKit::RWMol *>::iterator iter=molList->begin();
iter != molList->end(); ++iter){
delete *iter;
}
molList->clear();
molList->resize(0);
}
}
void
yysmiles_error( const char *input,
std::vector<RDKit::RWMol *> *ms,
RDKit::Atom* &lastAtom,
RDKit::Bond* &lastBond,
std::list<unsigned int> *branchPoints,
void *scanner,int start_token, const char * msg )
{
yyErrorCleanup(ms);
throw RDKit::SmilesParseException(msg);
}
void
yysmiles_error( const char *input,
std::vector<RDKit::RWMol *> *ms,
std::list<unsigned int> *branchPoints,
void *scanner,int start_token, const char * msg )
{
yyErrorCleanup(ms);
throw RDKit::SmilesParseException(msg);
}
%}
%define api.pure full
%lex-param {yyscan_t *scanner}
%lex-param {int& start_token}
%parse-param {const char *input}
%parse-param {std::vector<RDKit::RWMol *> *molList}
%parse-param {RDKit::Atom* &lastAtom}
%parse-param {RDKit::Bond* &lastBond}
%parse-param {std::list<unsigned int> *branchPoints}
%parse-param {void *scanner}
%parse-param {int& start_token}
%code provides {
#define YY_DECL int yylex \
(YYSTYPE * yylval_param , yyscan_t yyscanner, int& start_token)
}
%union {
int moli;
RDKit::Atom * atom;
RDKit::Bond * bond;
int ival;
}
%token START_MOL START_ATOM START_BOND;
%token <atom> AROMATIC_ATOM_TOKEN ATOM_TOKEN ORGANIC_ATOM_TOKEN
%token <ival> NONZERO_DIGIT_TOKEN ZERO_TOKEN
%token GROUP_OPEN_TOKEN GROUP_CLOSE_TOKEN SEPARATOR_TOKEN LOOP_CONNECTOR_TOKEN
%token MINUS_TOKEN PLUS_TOKEN CHIRAL_MARKER_TOKEN CHI_CLASS_TOKEN CHI_CLASS_OH_TOKEN
%token H_TOKEN AT_TOKEN PERCENT_TOKEN COLON_TOKEN HASH_TOKEN
%token <bond> BOND_TOKEN
%type <moli> mol
%type <atom> atomd element chiral_element h_element charge_element simple_atom
%type <bond> bondd
%type <ival> nonzero_number number ring_number digit
%token ATOM_OPEN_TOKEN ATOM_CLOSE_TOKEN
%token EOS_TOKEN
%start meta_start
%%
meta_start: START_MOL mol {
// the molList has already been updated, no need to do anything
}
| START_ATOM atomd {
lastAtom = $2;
}
| START_BOND bondd {
lastBond = $2;
}
| meta_start error EOS_TOKEN{
yyclearin;
yyerrok;
yyErrorCleanup(molList);
YYABORT;
}
| meta_start EOS_TOKEN {
YYACCEPT;
}
| error EOS_TOKEN {
yyclearin;
yyerrok;
yyErrorCleanup(molList);
YYABORT;
}
;
/* --------------------------------------------------------------- */
// FIX: mol MINUS DIGIT
mol: atomd {
int sz = molList->size();
molList->resize( sz + 1);
(*molList)[ sz ] = new RWMol();
RDKit::RWMol *curMol = (*molList)[ sz ];
$1->setProp(RDKit::common_properties::_SmilesStart,1);
curMol->addAtom($1);
delete $1;
$$ = sz;
}
| mol atomd {
RWMol *mp = (*molList)[$$];
Atom *a1 = mp->getActiveAtom();
int atomIdx1=a1->getIdx();
int atomIdx2=mp->addAtom($2,true,true);
mp->addBond(atomIdx1,atomIdx2,
SmilesParseOps::GetUnspecifiedBondType(mp,a1,mp->getAtomWithIdx(atomIdx2)));
//delete $2;
}
| mol BOND_TOKEN atomd {
RWMol *mp = (*molList)[$$];
int atomIdx1 = mp->getActiveAtom()->getIdx();
int atomIdx2 = mp->addAtom($3,true,true);
if( $2->getBondType() == Bond::DATIVER ){
$2->setBeginAtomIdx(atomIdx1);
$2->setEndAtomIdx(atomIdx2);
$2->setBondType(Bond::DATIVE);
}else if ( $2->getBondType() == Bond::DATIVEL ){
$2->setBeginAtomIdx(atomIdx2);
$2->setEndAtomIdx(atomIdx1);
$2->setBondType(Bond::DATIVE);
} else {
$2->setBeginAtomIdx(atomIdx1);
$2->setEndAtomIdx(atomIdx2);
}
mp->addBond($2,true);
//delete $3;
}
| mol MINUS_TOKEN atomd {
RWMol *mp = (*molList)[$$];
int atomIdx1 = mp->getActiveAtom()->getIdx();
int atomIdx2 = mp->addAtom($3,true,true);
mp->addBond(atomIdx1,atomIdx2,Bond::SINGLE);
//delete $3;
}
| mol SEPARATOR_TOKEN atomd {
RWMol *mp = (*molList)[$$];
$3->setProp(RDKit::common_properties::_SmilesStart,1,true);
mp->addAtom($3,true,true);
}
| mol ring_number {
RWMol * mp = (*molList)[$$];
Atom *atom=mp->getActiveAtom();
mp->setAtomBookmark(atom,$2);
Bond *newB = mp->createPartialBond(atom->getIdx(),
Bond::UNSPECIFIED);
mp->setBondBookmark(newB,$2);
newB->setProp(RDKit::common_properties::_unspecifiedOrder,1);
SmilesParseOps::CheckRingClosureBranchStatus(atom,mp);
INT_VECT tmp;
atom->getPropIfPresent(RDKit::common_properties::_RingClosures,tmp);
tmp.push_back(-($2+1));
atom->setProp(RDKit::common_properties::_RingClosures,tmp);
}
| mol BOND_TOKEN ring_number {
RWMol * mp = (*molList)[$$];
Atom *atom=mp->getActiveAtom();
Bond *newB = mp->createPartialBond(atom->getIdx(),
$2->getBondType());
newB->setBondDir($2->getBondDir());
mp->setAtomBookmark(atom,$3);
mp->setBondBookmark(newB,$3);
SmilesParseOps::CheckRingClosureBranchStatus(atom,mp);
INT_VECT tmp;
atom->getPropIfPresent(RDKit::common_properties::_RingClosures,tmp);
tmp.push_back(-($3+1));
atom->setProp(RDKit::common_properties::_RingClosures,tmp);
delete $2;
}
| mol MINUS_TOKEN ring_number {
RWMol * mp = (*molList)[$$];
Atom *atom=mp->getActiveAtom();
Bond *newB = mp->createPartialBond(atom->getIdx(),
Bond::SINGLE);
mp->setAtomBookmark(atom,$3);
mp->setBondBookmark(newB,$3);
SmilesParseOps::CheckRingClosureBranchStatus(atom,mp);
INT_VECT tmp;
atom->getPropIfPresent(RDKit::common_properties::_RingClosures,tmp);
tmp.push_back(-($3+1));
atom->setProp(RDKit::common_properties::_RingClosures,tmp);
}
| mol GROUP_OPEN_TOKEN atomd {
RWMol *mp = (*molList)[$$];
Atom *a1 = mp->getActiveAtom();
int atomIdx1=a1->getIdx();
int atomIdx2=mp->addAtom($3,true,true);
mp->addBond(atomIdx1,atomIdx2,
SmilesParseOps::GetUnspecifiedBondType(mp,a1,mp->getAtomWithIdx(atomIdx2)));
//delete $3;
branchPoints->push_back(atomIdx1);
}
| mol GROUP_OPEN_TOKEN BOND_TOKEN atomd {
RWMol *mp = (*molList)[$$];
int atomIdx1 = mp->getActiveAtom()->getIdx();
int atomIdx2 = mp->addAtom($4,true,true);
if( $3->getBondType() == Bond::DATIVER ){
$3->setBeginAtomIdx(atomIdx1);
$3->setEndAtomIdx(atomIdx2);
$3->setBondType(Bond::DATIVE);
}else if ( $3->getBondType() == Bond::DATIVEL ){
$3->setBeginAtomIdx(atomIdx2);
$3->setEndAtomIdx(atomIdx1);
$3->setBondType(Bond::DATIVE);
} else {
$3->setBeginAtomIdx(atomIdx1);
$3->setEndAtomIdx(atomIdx2);
}
mp->addBond($3,true);
//delete $4;
branchPoints->push_back(atomIdx1);
}
| mol GROUP_OPEN_TOKEN MINUS_TOKEN atomd {
RWMol *mp = (*molList)[$$];
int atomIdx1 = mp->getActiveAtom()->getIdx();
int atomIdx2 = mp->addAtom($4,true,true);
mp->addBond(atomIdx1,atomIdx2,Bond::SINGLE);
//delete $4;
branchPoints->push_back(atomIdx1);
}
| mol GROUP_CLOSE_TOKEN {
if(branchPoints->empty()) yyerror(input,molList,branchPoints,scanner,start_token,"extra close parentheses");
RWMol *mp = (*molList)[$$];
mp->setActiveAtom(branchPoints->back());
branchPoints->pop_back();
}
;
/* --------------------------------------------------------------- */
bondd: BOND_TOKEN
| MINUS_TOKEN {
$$ = new Bond(Bond::SINGLE);
}
;
/* --------------------------------------------------------------- */
atomd: simple_atom
| ATOM_OPEN_TOKEN charge_element COLON_TOKEN number ATOM_CLOSE_TOKEN
{
$$ = $2;
$$->setNoImplicit(true);
$$->setProp(RDKit::common_properties::molAtomMapNumber,$4);
}
| ATOM_OPEN_TOKEN charge_element ATOM_CLOSE_TOKEN
{
$$ = $2;
$2->setNoImplicit(true);
}
;
/* --------------------------------------------------------------- */
charge_element: h_element
| h_element PLUS_TOKEN { $1->setFormalCharge(1); }
| h_element PLUS_TOKEN PLUS_TOKEN { $1->setFormalCharge(2); }
| h_element PLUS_TOKEN number { $1->setFormalCharge($3); }
| h_element MINUS_TOKEN { $1->setFormalCharge(-1); }
| h_element MINUS_TOKEN MINUS_TOKEN { $1->setFormalCharge(-2); }
| h_element MINUS_TOKEN number { $1->setFormalCharge(-$3); }
;
/* --------------------------------------------------------------- */
h_element: H_TOKEN { $$ = new Atom(1); }
| number H_TOKEN { $$ = new Atom(1); $$->setIsotope($1); }
| H_TOKEN H_TOKEN { $$ = new Atom(1); $$->setNumExplicitHs(1); }
| number H_TOKEN H_TOKEN { $$ = new Atom(1); $$->setIsotope($1); $$->setNumExplicitHs(1);}
| H_TOKEN H_TOKEN number { $$ = new Atom(1); $$->setNumExplicitHs($3); }
| number H_TOKEN H_TOKEN number { $$ = new Atom(1); $$->setIsotope($1); $$->setNumExplicitHs($4);}
| chiral_element
| chiral_element H_TOKEN { $$ = $1; $1->setNumExplicitHs(1);}
| chiral_element H_TOKEN number { $$ = $1; $1->setNumExplicitHs($3);}
;
/* --------------------------------------------------------------- */
chiral_element: element
| element AT_TOKEN { $1->setChiralTag(Atom::CHI_TETRAHEDRAL_CCW); }
| element AT_TOKEN AT_TOKEN { $1->setChiralTag(Atom::CHI_TETRAHEDRAL_CW); }
;
/* --------------------------------------------------------------- */
element: simple_atom
| number simple_atom { $2->setIsotope( $1 ); $$ = $2; }
| ATOM_TOKEN
| number ATOM_TOKEN { $2->setIsotope( $1 ); $$ = $2; }
| HASH_TOKEN number { $$ = new Atom($2); }
| number HASH_TOKEN number { $$ = new Atom($3); $$->setIsotope($1); }
;
/* --------------------------------------------------------------- */
simple_atom: ORGANIC_ATOM_TOKEN
| AROMATIC_ATOM_TOKEN
;
/* --------------------------------------------------------------- */
ring_number: digit
| PERCENT_TOKEN NONZERO_DIGIT_TOKEN digit { $$ = $2*10+$3; }
| PERCENT_TOKEN GROUP_OPEN_TOKEN digit GROUP_CLOSE_TOKEN { $$ = $3; }
| PERCENT_TOKEN GROUP_OPEN_TOKEN digit digit GROUP_CLOSE_TOKEN { $$ = $3*10+$4; }
| PERCENT_TOKEN GROUP_OPEN_TOKEN digit digit digit GROUP_CLOSE_TOKEN { $$ = $3*100+$4*10+$5; }
| PERCENT_TOKEN GROUP_OPEN_TOKEN digit digit digit digit GROUP_CLOSE_TOKEN { $$ = $3*1000+$4*100+$5*10+$6; }
| PERCENT_TOKEN GROUP_OPEN_TOKEN digit digit digit digit digit GROUP_CLOSE_TOKEN { $$ = $3*10000+$4*1000+$5*100+$6*10+$7; }
;
/* --------------------------------------------------------------- */
number: ZERO_TOKEN
| nonzero_number
;
/* --------------------------------------------------------------- */
nonzero_number: NONZERO_DIGIT_TOKEN
| nonzero_number digit { $$ = $1*10 + $2; }
;
digit: NONZERO_DIGIT_TOKEN
| ZERO_TOKEN
;
/*
chival: CHI_CLASS_TOKEN DIGIT_TOKEN
| AT_TOKEN
;
*/
%%
|