org.helm.notation2.parser.connectionsection.ConnectionsDetailsParser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of helm2-helmnotationparser Show documentation
Show all versions of helm2-helmnotationparser Show documentation
Module to parse HELM Notation in the format 1 and 2.
The newest version!
/**
* *****************************************************************************
* Copyright C 2015, The Pistoia Alliance
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*****************************************************************************
*/
package org.helm.notation2.parser.connectionsection;
import java.io.IOException;
import org.helm.notation2.parser.InlineAnnotationsParser;
import org.helm.notation2.parser.State;
import org.helm.notation2.parser.StateMachineParser;
import org.helm.notation2.parser.exceptionparser.ConnectionSectionException;
import org.helm.notation2.parser.exceptionparser.NotationException;
import org.helm.notation2.parser.groupingsection.GroupingParser;
import org.helm.notation2.parser.notation.connection.ConnectionNotation;
import org.jdom2.JDOMException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* ConnectionsDetailsParser class to parse the details about the connection
*
* @author hecht
*/
public class ConnectionsDetailsParser implements State {
private StateMachineParser _parser;
private static final Logger LOG = LoggerFactory.getLogger(BetweenInlineConnectionParser.class);
private String details = "";
/**
* Constructs with the state machine parser
*
* @param pParser current parser
*/
public ConnectionsDetailsParser(StateMachineParser pParser) {
_parser = pParser;
}
/**
* {@inheritDoc}
*/
@Override
public void doAction(char cha) throws ConnectionSectionException,
NotationException{
/* a new connection is starting */
if (cha == '|') {
if (_parser.checkDetailsConnections(details)) {
LOG.info("A new connection is starting:");
ConnectionNotation current =
_parser.notationContainer.getCurrentConnection();
_parser.notationContainer.changeConnectionNotation(new ConnectionNotation(
current.getSourceId(),
current.getTargetId(), details));
_parser.setState(new ConnectionsParser(_parser));
} else {
LOG.error("Details about the connection are not corret: " + details);
throw new ConnectionSectionException("Details about the connection are not correct: " + details);
}
} /* connection section is finished */ else if (cha == '$') {
if (_parser.checkDetailsConnections(details)) {
LOG.info("Connection section is finished:");
ConnectionNotation current =
_parser.notationContainer.getCurrentConnection();
_parser.notationContainer.changeConnectionNotation(new ConnectionNotation(
current.getSourceId(),
current.getTargetId(), details));
LOG.info("Transition to group section");
_parser.setState(new GroupingParser(_parser));
} else {
throw new ConnectionSectionException("Details about the connection are not correct: " + details);
}
} /* start of an annotation */ else if (cha == '\"') {
if (_parser.checkDetailsConnections(details)) {
LOG.info("Add annotation to connection:");
ConnectionNotation current =
_parser.notationContainer.getCurrentConnection();
_parser.notationContainer.changeConnectionNotation(new ConnectionNotation(
current.getSourceId(),
current.getTargetId(), details));
_parser.setState(new InlineAnnotationsParser(_parser, 2));
} else {
LOG.error("Details about the connection are not corret: " + details);
throw new ConnectionSectionException("Details about the connection are not correct: " + details);
}
} /* add characters to connection description */ else {
details += cha;
}
}
}