Package net.mindengine.galen.specs.reader.page

Source Code of net.mindengine.galen.specs.reader.page.StateDoingConditionalBlocks

/*******************************************************************************
* Copyright 2014 Ivan Shubin http://mindengine.net
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package net.mindengine.galen.specs.reader.page;

import java.io.IOException;
import java.util.LinkedList;
import java.util.Properties;

import net.mindengine.galen.parser.SyntaxException;
import net.mindengine.galen.specs.page.ConditionalBlock;
import net.mindengine.galen.specs.page.ConditionalBlockStatement;
import net.mindengine.galen.specs.page.PageSection;
import net.mindengine.galen.specs.reader.Place;

public class StateDoingConditionalBlocks extends State {
   
    private ConditionalBlock conditionalBlock;
    private StateDoingSection currentSectionState;

    public StateDoingSection getCurrentSectionState() {
        return currentSectionState;
    }

    private enum STATE {
        STATEMENT, BODY, OTHERWISE
    }
   
    private STATE state = STATE.STATEMENT;
    private String contextPath;
    private PageSpecReader pageSpecReader;
   
   
   
    public StateDoingConditionalBlocks(Properties properties, boolean inverted, String contextPath, PageSpecReader pageSpecReader) {
        setProperties(properties);
        conditionalBlock = new ConditionalBlock();
        conditionalBlock.setStatements(new LinkedList<ConditionalBlockStatement>());
        this.setPageSpecReader(pageSpecReader);
        this.contextPath = contextPath;
        startNewStatement(inverted);
       
    }

    @Override
    public void process(String line, Place place) throws IOException {
        currentSectionState.process(line, place);
    }

    public void startNewStatement(boolean inverted) {
        if (state != STATE.STATEMENT) {
            throw new SyntaxException("Wrong place for this statement");
        }
       
        ConditionalBlockStatement currentStatement = new ConditionalBlockStatement();
        currentStatement.setInverted(inverted);
        conditionalBlock.getStatements().add(currentStatement);
       
        PageSection currentSection = new PageSection();
        currentSectionState = new StateDoingSection(getProperties(), currentSection, getContextPath(), getPageSpecReader());
       
        currentStatement.setObjects(currentSection.getObjects());
    }

    public void startBody() {
        if (state != STATE.STATEMENT) {
            throw new SyntaxException("Wrong place for this statement");
        }
       
        PageSection currentSection = new PageSection();
        currentSectionState = new StateDoingSection(getProperties(), currentSection, getContextPath(), getPageSpecReader());
       
        conditionalBlock.setBodyObjects(currentSection.getObjects());
        state = STATE.BODY;
    }

    public void startOtherwise() {
        if (state != STATE.BODY) {
            throw new SyntaxException("Wrong place for this statement");
        }
       
        PageSection currentSection = new PageSection();
        currentSectionState = new StateDoingSection(getProperties(), currentSection, contextPath, getPageSpecReader());
        state = STATE.BODY;
       
        conditionalBlock.setOtherwiseObjects(currentSection.getObjects());
    }

    public ConditionalBlock build() {
        if (state == STATE.STATEMENT) {
            throw new SyntaxException("There is no body defined for this conditional block");
        }
        return conditionalBlock;
    }

    public String getContextPath() {
        return contextPath;
    }

    public void setContextPath(String contextPath) {
        this.contextPath = contextPath;
    }

    public PageSpecReader getPageSpecReader() {
        return pageSpecReader;
    }

    public void setPageSpecReader(PageSpecReader pageSpecReader) {
        this.pageSpecReader = pageSpecReader;
    }

}
TOP

Related Classes of net.mindengine.galen.specs.reader.page.StateDoingConditionalBlocks

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.