All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.teiid.modeshape.sequencer.ddl.DdlParser Maven / Gradle / Ivy

/*
 * JBoss, Home of Professional Open Source.
 * See the COPYRIGHT.txt file distributed with this work for information
 * regarding copyright ownership.  Some portions may be licensed
 * to Red Hat, Inc. under one or more contributor license agreements.
 *
 * This library 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.
 *
 * This library 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 library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301 USA.
 */
package org.teiid.modeshape.sequencer.ddl;

import org.modeshape.common.text.ParsingException;
import org.teiid.modeshape.sequencer.ddl.node.AstNode;

/**
 * Interface for parsing DDL files.
 */
public interface DdlParser {

    /**
     * Determine this parser's score for the given DDL string. This method is called to determine how well this parser handles the
     * supplied DDL, and is often called before the {@link #parse(String, AstNode, Object)} method.
     * 
     * @param ddl the input string to parse; may not be null
     * @param fileName the name of the DDL content, which may be used to improve the score; may be null if not known
     * @param scorer the scorer that should be used to record the score; may not be null
     * @return an object that will be passed to the {@link #parse(String, AstNode,Object)} method
     * @throws ParsingException if there is an error parsing the supplied DDL content
     */
    public Object score( String ddl,
                         String fileName,
                         DdlParserScorer scorer ) throws ParsingException;

    /**
     * Parses a DDL string, adding child {@link AstNode}s and properties to the supplied root. This method instantiates the
     * tokenizer, calls a method to allow subclasses to register keywords and statement start phrases with the tokenizer and
     * finally performs the tokenizing (i.e. tokens.start()) before calling the actual parse method.
     * 
     * @param ddl the input string to parse; may not be null
     * @param rootNode the top level {@link AstNode}; may not be null
     * @param scoreReturnObject the object returned from {@link #score(String, String, DdlParserScorer)} for the same DDL content;
     *        may be null if the {@link #score(String, String, DdlParserScorer)} method was not called
     * @throws ParsingException if there is an error parsing the supplied DDL content
     */
    public void parse( String ddl,
                       AstNode rootNode,
                       Object scoreReturnObject ) throws ParsingException;

    /**
     * Get the identifier for this parser.
     * 
     * @return the parser's identifier; never null
     */
    public String getId();

    /**
     * Allows parsers to post process the {@link AstNode} tree given the supplied root. Initial use-case would be to allow a
     * second pass through the tree to resolve any table references (FK's) that were defined out of order in the DDL
     * 
     * @param rootNode the top level {@link AstNode}; may not be null
     */
    public void postProcess( AstNode rootNode );

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy