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

com.hazelcast.org.codehaus.janino.TokenStream Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version

/*
 * Janino - An embedded Java[TM] com.hazelcast.com.iler
 *
 * Copyright (c) 2016 Arno Unkrig. All rights reserved.
 * Copyright (c) 2015-2016 TIBCO Software Inc. All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification, are permitted provided that the
 * following conditions are met:
 *
 *    1. Redistributions of source code must retain the above copyright notice, this list of conditions and the
 *       following disclaimer.
 *    2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the
 *       following disclaimer in the documentation and/or other materials provided with the distribution.
 *    3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote
 *       products derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

package com.hazelcast.org.codehaus.janino;

import java.io.IOException;

import com.hazelcast.org.codehaus.com.hazelcast.com.ons.com.hazelcast.com.iler.CompileException;
import com.hazelcast.org.codehaus.com.hazelcast.com.ons.com.hazelcast.com.iler.WarningHandler;
import com.hazelcast.org.codehaus.com.hazelcast.com.ons.nullanalysis.Nullable;

/**
 * An interface that allows for peeking and consuming a stream of {@link Token}s.
 */
public
interface TokenStream {

    /**
     * @return The next token, but does not consume it
     */
    Token
    peek() throws CompileException, IOException;

    /**
     * @return Whether the value of the next token equals suspected; does not consume the next token
     */
    boolean
    peek(String suspected) throws CompileException, IOException;

    /**
     * Checks whether the value of the next token equals any of the suspected; does not consume the next
     * token.
     *
     * @return The index of the first of the suspected that equals the value of the next token, or -1 if the
     *         value of the next token equals none of the suspected
     */
    int
    peek(String... suspected) throws CompileException, IOException;

    /**
     * @return Whether the type of the next token is suspected
     */
    boolean
    peek(TokenType suspected) throws CompileException, IOException;

    /**
     * Checks whether the type of the next token is any of the suspected; does not consume the next token.
     *
     * @return The index of the first of the suspected types that is the next token's type, or -1 if the type
     *         of the next token is none of the suspected types
     */
    int
    peek(TokenType... suspected) throws CompileException, IOException;

    /**
     * @return The next-but-one token, but consumes neither the next nor the next-but-one token
     */
    Token
    peekNextButOne() throws CompileException, IOException;

    /**
     * @return Whether the value of the next-but-one token equals the suspected; consumes neither the next
     *         nor the next-but-one token
     */
    boolean
    peekNextButOne(String suspected) throws CompileException, IOException;

    /**
     * @return The next token, which it also consumes, or {@code null} iff the scanner is at end-of-input
     */
    Token
    read() throws CompileException, IOException;

    /**
     * Verifies that the value of the next token equals expected, and consumes the token.
     *
     * @throws CompileException The value of the next token does not equal expected (this includes the case
     *                          that  the scanner is at end-of-input)
     */
    void
    read(String expected) throws CompileException, IOException;

    /**
     * Verifies that the value of the next token equals one of the expected, and consumes the token.
     *
     * @return                  The index of the consumed token within expected
     * @throws CompileException The value of the next token does not equal any of the expected (this includes
     *                          the case where the scanner is at end-of-input)
     */
    int
    read(String... expected) throws CompileException, IOException;

    /**
     * Verifies that the type of the next token is the expected, and consumes the token.
     *
     * @return                  The value of the next token; an {@link String#intern() interned} String iff the token
     *                          represents an identifier, {@code true}, {@code false}, {@code null}, or an operator
     * @throws CompileException The next token's type is not the expected
     */
    String
    read(TokenType expected) throws CompileException, IOException;

    /**
     * Verifies that the type of the next token is one of the expected, and consumes the token.
     *
     * @return                  The index of the first of the expected types that is the next token's type;
     *                          -1 if the type of the next token is none of the expected
     * @throws CompileException The next token's type is none of the expected
     */
    int
    read(TokenType... expected) throws CompileException, IOException;

    /**
     * Checks whether the value of the next token equals the suspected; if so, consumes the token.
     */
    boolean
    peekRead(String suspected) throws CompileException, IOException;

    /**
     * Checks whether the value of the next token is one of the suspected; if so, consumes the token.
     *
     * @return The index of the first of the suspected that equals the next token's value; -1 iff the next
     *         token's value equals none of the suspected
     */
    int
    peekRead(String... suspected) throws CompileException, IOException;

    /**
     * Checks whether the type of the next token is the suspected; if so, consumes the token.
     *
     * @return Whether the type of the next token is the suspected
     */
    boolean
    peekRead(TokenType suspected) throws CompileException, IOException;

    /**
     * Checks whether the type of the next token is one of the suspected; if so, consumes the token.
     *
     * @return The index of the elements that is the next token's type, or -1 iff the type of next token is none of
     *         the suspected
     */
    int
    peekRead(TokenType... suspected) throws CompileException, IOException;

    /**
     * By default, warnings are discarded, but an application my install a {@link WarningHandler}.
     * 

* Notice that there is no {@code Parser.setErrorHandler()} method, but parse errors always throw a {@link * CompileException}. The reason being is that there is no reasonable way to recover from parse errors and * continue parsing, so there is no need to install a custom parse error handler. *

* * @param optionalWarningHandler {@code null} to indicate that no warnings be issued */ void setWarningHandler(@Nullable WarningHandler optionalWarningHandler); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy