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

com.hazelcast.org.apache.calcite.sql.parser.SqlParseException Maven / Gradle / Ivy

There is a newer version: 5.4.0
Show newest version
/*
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.
 * The ASF licenses this file to you under the Apache License, Version 2.0
 * (the "License"); you may not use this file except in com.hazelcast.com.liance with
 * the License.  You may obtain a copy of the License at
 *
 * http://www.apache.com.hazelcast.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 com.hazelcast.org.apache.calcite.sql.parser;

import com.hazelcast.org.apache.calcite.util.CalciteParserException;

import java.util.Collection;
import java.util.Collections;
import java.util.Set;
import java.util.TreeSet;

/**
 * SqlParseException defines a checked exception corresponding to
 * {@link SqlParser}.
 */
public class SqlParseException extends Exception
    implements CalciteParserException {
  //~ Instance fields --------------------------------------------------------

  private final SqlParserPos pos;
  private final int[][] expectedTokenSequences;
  private final String[] tokenImages;

  /**
   * The original exception thrown by the generated parser. Unfortunately,
   * each generated parser throws exceptions of a different class. So, we keep
   * the exception for forensic purposes, but don't print it publicly.
   *
   * 

Also, make it transient, because it is a ParseException generated by * JavaCC and contains a non-serializable Token. */ private final transient Throwable parserException; //~ Constructors ----------------------------------------------------------- /** * Creates a SqlParseException. * * @param message Message * @param pos Position * @param expectedTokenSequences Token sequences * @param tokenImages Token images * @param parserException Parser exception */ public SqlParseException( String message, SqlParserPos pos, int[][] expectedTokenSequences, String[] tokenImages, Throwable parserException) { // Cause must be null because the exception generated by JavaCC // contains a Token and is therefore not serializable (even though it // implements the Serializable interface). This is serious: one // non-serializable object poisons the entire chain, so the stack // cannot be transmitted over Java RMI. super(message, null); this.pos = pos; this.expectedTokenSequences = expectedTokenSequences; this.tokenImages = tokenImages; this.parserException = parserException; } //~ Methods ---------------------------------------------------------------- /** * Returns the position where this error occurred. * * @return parser position */ public SqlParserPos getPos() { return pos; } /** * Returns a list of the token names which could have legally occurred at * this point. * *

If some of the alternatives contain multiple tokens, returns the last * token of only these longest sequences. (This occurs when the parser is * maintaining more than the usual lookup.) For instance, if the possible * tokens are * *

*
   * {"IN"}
   * {"BETWEEN"}
   * {"LIKE"}
   * {"=", "<IDENTIFIER>"}
   * {"=", "USER"}
   * 
*
* *

returns * *

*
   * "<IDENTIFIER>"
   * "USER"
   * 
*
* * @return list of token names which could have occurred at this point */ public Collection getExpectedTokenNames() { if (expectedTokenSequences == null) { return Collections.emptyList(); } int maxLength = 0; for (int[] expectedTokenSequence : expectedTokenSequences) { maxLength = Math.max(expectedTokenSequence.length, maxLength); } final Set set = new TreeSet<>(); for (int[] expectedTokenSequence : expectedTokenSequences) { if (expectedTokenSequence.length == maxLength) { set.add( tokenImages[ expectedTokenSequence[ expectedTokenSequence.length - 1]]); } } return set; } /** * Returns the token images. * * @return token images */ public String[] getTokenImages() { return tokenImages; } /** * Returns the expected token sequences. * * @return expected token sequences */ public int[][] getExpectedTokenSequences() { return expectedTokenSequences; } // override Exception public Throwable getCause() { return parserException; } /** * Per {@link java.io.Serializable} API, provides a replacement object to be * written during serialization. * *

SqlParseException is serializable but is not available on the client. * This implementation converts this SqlParseException into a vanilla * {@link RuntimeException} with the same message. */ private Object writeReplace() { return new RuntimeException( getClass().getName() + ": " + getMessage()); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy