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

com.hazelcast.org.apache.calcite.rel.metadata.RelMetadataQueryBase Maven / Gradle / Ivy

There is a newer version: 5.5.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 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 com.hazelcast.org.apache.calcite.rel.metadata;

import com.hazelcast.org.apache.calcite.rel.RelNode;

import com.hazelcast.com.google.common.collect.HashBasedTable;
import com.hazelcast.com.google.common.collect.Table;

import com.hazelcast.org.checkerframework.checker.nullness.qual.Nullable;

import java.lang.reflect.Proxy;
import java.util.Map;
import java.util.function.Supplier;

import static com.hazelcast.org.apache.calcite.linq4j.Nullness.castNonNull;

import static java.util.Objects.requireNonNull;

/**
 * Base class for the RelMetadataQuery that uses the metadata handler class
 * generated by the Janino.
 *
 * 

To add a new implementation to this interface, follow * these steps: * *

    *
  1. Extends {@link RelMetadataQuery} (name it MyRelMetadataQuery for example) * to reuse the Calcite builtin metadata query interfaces. In this class, define all the * extended Handlers for your metadata and implement the metadata query interfaces. *
  2. Write your customized provider class RelMdXyz. Follow * the pattern from an existing class such as {@link RelMdColumnOrigins}, * overloading on all of the logical relational expressions to which the query * applies. *
  3. Add a {@code SOURCE} static member to each of your provider class, similar to * {@link RelMdColumnOrigins#SOURCE}. *
  4. Extends {@link DefaultRelMetadataProvider} (name it MyRelMetadataProvider for example) * and supplement the "SOURCE"s into the builtin list * (This is not required, use {@link ChainedRelMetadataProvider} to chain your customized * "SOURCE"s with default ones also works). *
  5. Set {@code MyRelMetadataProvider} into the cluster instance. *
  6. Use * {@link com.hazelcast.org.apache.calcite.plan.RelOptCluster#setMetadataQuerySupplier(Supplier)} * to set the metadata query {@link Supplier} into the cluster instance. This {@link Supplier} * should return a fresh new instance. *
  7. Use the cluster instance to create * {@link com.hazelcast.org.apache.calcite.sql2rel.SqlToRelConverter}.
  8. *
  9. Query your metadata within {@link com.hazelcast.org.apache.calcite.plan.RelOptRuleCall} with the * interfaces you defined in {@code MyRelMetadataQuery}. *
*/ public class RelMetadataQueryBase { //~ Instance fields -------------------------------------------------------- /** Set of active metadata queries, and cache of previous results. */ public final Table map = HashBasedTable.create(); private final @Nullable MetadataHandlerProvider metadataHandlerProvider; @Deprecated // to be removed before 2.0 public final @Nullable JaninoRelMetadataProvider metadataProvider; //~ Static fields/initializers --------------------------------------------- public static final ThreadLocal<@Nullable JaninoRelMetadataProvider> THREAD_PROVIDERS = new ThreadLocal<>(); //~ Constructors ----------------------------------------------------------- @Deprecated // to be removed before 2.0 protected RelMetadataQueryBase(@Nullable JaninoRelMetadataProvider metadataProvider) { this((MetadataHandlerProvider) metadataProvider); } @SuppressWarnings("deprecation") protected RelMetadataQueryBase(@Nullable MetadataHandlerProvider provider) { this.metadataHandlerProvider = provider; this.metadataProvider = provider instanceof JaninoRelMetadataProvider ? (JaninoRelMetadataProvider) provider : null; } @Deprecated protected static H initialHandler(Class handlerClass) { return handlerClass.cast( Proxy.newProxyInstance(RelMetadataQuery.class.getClassLoader(), new Class[] {handlerClass}, (proxy, method, args) -> { final RelNode r = requireNonNull((RelNode) args[0], "(RelNode) args[0]"); throw new JaninoRelMetadataProvider.NoHandler(r.getClass()); })); } //~ Methods ---------------------------------------------------------------- /** Re-generates the handler for a given kind of metadata, adding support for * {@code class_} if it is not already present. */ @Deprecated // to be removed before 2.0 protected > H revise(Class class_, MetadataDef def) { return (H) revise(def.handlerClass); } /** Re-generates the handler for a given kind of metadata, adding support for * {@code class_} if it is not already present. */ protected > H revise(Class def) { return getMetadataHandlerProvider().revise(def); } private MetadataHandlerProvider getMetadataHandlerProvider() { requireNonNull(metadataHandlerProvider, "metadataHandlerProvider"); return castNonNull(metadataHandlerProvider); } /** * Provide a handler for the requested metadata class. * @param handlerClass The handler interface expected * @param The metadata type the handler relates to. * @return The handler implementation. */ protected > MH handler(Class handlerClass) { return getMetadataHandlerProvider().handler(handlerClass); } /** * Removes cached metadata values for specified RelNode. * * @param rel RelNode whose cached metadata should be removed * @return true if cache for the provided RelNode was not empty */ public boolean clearCache(RelNode rel) { Map row = map.row(rel); if (row.isEmpty()) { return false; } row.clear(); return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy