org.apache.calcite.runtime.Hook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of calcite-core Show documentation
Show all versions of calcite-core Show documentation
Core Calcite APIs and engine.
/*
* 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 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 org.apache.calcite.runtime;
import org.apache.calcite.util.Holder;
import java.util.ArrayList;
import java.util.List;
import java.util.concurrent.CopyOnWriteArrayList;
import java.util.function.Consumer;
import java.util.function.Function;
/**
* Collection of hooks that can be set by observers and are executed at various
* parts of the query preparation process.
*
* For testing and debugging rather than for end-users.
*/
public enum Hook {
/** Called to get the current time. Use this to return a predictable time
* in tests. */
CURRENT_TIME,
/** Called to get stdin, stdout, stderr.
* Use this to re-assign streams in tests. */
STANDARD_STREAMS,
/** Returns a boolean value, whether RelBuilder should simplify expressions.
* Default true. */
REL_BUILDER_SIMPLIFY,
/** Returns a boolean value, whether RelBuilder should simplify filters with the conditions
* of always false. Default true. */
REL_BUILDER_FALSE_FILTER_SIMPLIFY,
/** Returns a long value, which is the maximum size of the global {@code KEY2TYPE_CACHE} in
* {@link org.apache.calcite.rel.type.RelDataTypeFactoryImpl}.
* Default -1L, means unlimited size.
*
* Note: Since {@code KEY2TYPE_CACHE} is a static global cache, this hook will only works when
* setting its value BEFORE any instance of
* {@link org.apache.calcite.rel.type.RelDataTypeFactoryImpl} is created or accessed. */
REL_DATA_TYPE_CACHE_SIZE,
/** Returns a boolean value, whether the return convention should be
* {@link org.apache.calcite.interpreter.BindableConvention}.
* Default false. */
ENABLE_BINDABLE,
/** Called with the SQL string and parse tree, in an array. */
PARSE_TREE,
/** Converts a SQL string to a
* {@link org.apache.calcite.jdbc.CalcitePrepare.Query} object. This hook is
* an opportunity to execute a {@link org.apache.calcite.rel.RelNode} query
* plan in the JDBC driver rather than the usual SQL string. */
STRING_TO_QUERY,
/** Called with the generated Java plan, just before it is compiled by
* Janino. */
JAVA_PLAN,
/** Called with the output of sql-to-rel-converter. */
CONVERTED,
/** Called with the created planner. */
PLANNER,
/** Called after de-correlation and field trimming, but before
* optimization. */
TRIMMED,
/** Called by the planner after substituting a materialization. */
SUB,
/** Called when a constant expression is being reduced. */
EXPRESSION_REDUCER,
/** Called to create a Program to optimize the statement. */
PROGRAM,
/** Called when materialization is created. */
CREATE_MATERIALIZATION,
/** Called with a query that has been generated to send to a back-end system.
* The query might be a SQL string (for the JDBC adapter), a list of Mongo
* pipeline expressions (for the MongoDB adapter), et cetera. */
QUERY_PLAN;
private final List> handlers =
new CopyOnWriteArrayList<>();
private final ThreadLocal>> threadHandlers =
ThreadLocal.withInitial(ArrayList::new);
/** Adds a handler for this Hook.
*
* Returns a {@link Hook.Closeable} so that you can use the following
* try-finally pattern to prevent leaks:
*
*
* final Hook.Closeable closeable = Hook.FOO.add(HANDLER);
* try {
* ...
* } finally {
* closeable.close();
* }
*
*/
public Closeable add(final Consumer handler) {
//noinspection unchecked
handlers.add((Consumer