/* $Revision$ $Author$ $Date$ * * Copyright (C) 2003-2007 Egon Willighagen <egonw@users.sf.net> * * Contact: cdk-devel@lists.sourceforge.net * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License * as published by the Free Software Foundation; either version 2.1 * of the License, or (at your option) any later version. * All we ask is that proper credit is given for our work, which includes * - but is not limited to - adding the above copyright notice to the beginning * of your source code files, and to any copyright notice that you may distribute * with programs based on this work. * * 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. * */ package org.openscience.cdk.io.cml; import org.openscience.cdk.interfaces.IAtomContainer; import org.openscience.cdk.interfaces.IChemFile; import org.openscience.cdk.interfaces.IMolecule; import org.openscience.cdk.interfaces.IMoleculeSet; import org.xml.sax.Attributes; /** * @author Egon Willighagen <elw38@cam.ac.uk> * * @cdk.module io * @cdk.githash */ public class CMLReactionModule extends CMLCoreModule { private String objectType; public CMLReactionModule(IChemFile chemFile) { super(chemFile); } public CMLReactionModule(ICMLModule conv) { super(conv); logger.debug("New CML-Reaction Module!"); } public void startElement(CMLStack xpath, String uri, String local, String raw, Attributes atts) { if ("reaction".equals(local)) { // cdo.startObject("Reaction"); if (currentReactionSet == null) currentReactionSet = currentChemFile.getBuilder().newReactionSet(); currentReaction = currentChemFile.getBuilder().newReaction(); String id = atts.getValue("id"); if(id != null) currentReaction.setID(id); // cdo.setObjectProperty("Reaction", "id", id); } else if ("reactionList".equals(local)) { // cdo.startObject("ReactionSet"); currentReactionSet = currentChemFile.getBuilder().newReactionSet(); String id = atts.getValue("id"); if(id != null) currentReactionSet.setID(id); // cdo.setObjectProperty("reactionList", "id", id); } else if ("reactant".equals(local)) { // cdo.startObject("Reactant"); if (currentReaction == null) { if (currentReactionSet == null) currentReactionSet = currentChemFile.getBuilder().newReactionSet(); currentReaction = currentChemFile.getBuilder().newReaction(); } currentMolecule = currentChemFile.getBuilder().newMolecule(); objectType = "Reactant"; String id = atts.getValue("id"); if(id != null) currentMolecule.setID(id); else{ String ref = atts.getValue("ref"); if(ref != null)currentMolecule.setID(ref); } // cdo.setObjectProperty("Reactant", "id", id); } else if ("product".equals(local)) { // cdo.startObject("Product"); if (currentReaction == null) { if (currentReactionSet == null) currentReactionSet = currentChemFile.getBuilder().newReactionSet(); currentReaction = currentChemFile.getBuilder().newReaction(); } currentMolecule = currentChemFile.getBuilder().newMolecule(); objectType = "Product"; String id = atts.getValue("id"); if(id != null) currentMolecule.setID(id); else{ String ref = atts.getValue("ref"); if(ref != null) currentMolecule.setID(ref); } // cdo.setObjectProperty("Product", "id", id); } else if ("substance".equals(local)) { // cdo.startObject("Agent"); if (currentReaction == null) { if (currentReactionSet == null) currentReactionSet = currentChemFile.getBuilder().newReactionSet(); currentReaction = currentChemFile.getBuilder().newReaction(); } currentMolecule = currentChemFile.getBuilder().newMolecule(); objectType = "Agent"; String id = atts.getValue("id"); if(id != null) currentMolecule.setID(id); else{ String ref = atts.getValue("ref"); if(ref != null) currentMolecule.setID(ref); } // cdo.setObjectProperty("Agent", "id", id); } else if ("molecule".equals(local)) { // do nothing for now super.newMolecule(); String id = atts.getValue("id"); if(id != null) { // cdo.setObjectProperty(objectType, "id", id); currentMolecule.setID(id); }else{ String ref = atts.getValue("ref"); if(ref != null){ IAtomContainer atomC = getMoleculeFromID(currentMoleculeSet, ref); super.currentMolecule = atomC; // currentMolecule.setID(ref); } } } else { super.startElement(xpath, uri, local, raw, atts); } } public void endElement(CMLStack xpath, String uri, String local, String raw) { if ("reaction".equals(local)) { // cdo.endObject("Reaction"); currentReactionSet.addReaction(currentReaction); } else if ("reactionList".equals(local)) { // cdo.endObject("ReactionSet"); currentChemModel.setReactionSet(currentReactionSet); currentChemSequence.addChemModel(currentChemModel); /* FIXME: this should be when document is closed! */ } else if ("reactant".equals(local)) { // cdo.endObject("Reactant"); currentReaction.addReactant((IMolecule)currentMolecule); } else if ("product".equals(local)) { // cdo.endObject("Product"); currentReaction.addProduct((IMolecule)currentMolecule); } else if ("substance".equals(local)) { // cdo.endObject("Agent"); currentReaction.addAgent((IMolecule)currentMolecule); } else if ("molecule".equals(local)) { logger.debug("Storing Molecule"); //if the current molecule exists in the currentMoleculeSet means that is a reference in these. if(currentMoleculeSet.getMultiplier(currentMolecule) == -1) super.storeData(); // do nothing else but store atom/bond information } else { super.endElement(xpath, uri, local, raw); } } /** * Get the IMolecule contained in a IMoleculeSet object with a ID. * * @param molSet The IMoleculeSet * @param id The ID the look * @return The IMolecule with the ID */ private IAtomContainer getMoleculeFromID(IMoleculeSet molSet, String id){ for (IAtomContainer mol : molSet.molecules()) { if (mol.getID().equals(id)) return mol; } return null; } }