org.apache.calcite.config.CalciteConnectionConfigImpl 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.config;
import org.apache.calcite.avatica.ConnectionConfigImpl;
import org.apache.calcite.avatica.util.Casing;
import org.apache.calcite.avatica.util.Quoting;
import org.apache.calcite.model.JsonSchema;
import org.apache.calcite.prepare.CalciteCatalogReader;
import org.apache.calcite.runtime.GeoFunctions;
import org.apache.calcite.sql.SqlOperatorTable;
import org.apache.calcite.sql.fun.OracleSqlOperatorTable;
import org.apache.calcite.sql.fun.SqlStdOperatorTable;
import org.apache.calcite.sql.util.ChainedSqlOperatorTable;
import org.apache.calcite.sql.validate.SqlConformance;
import org.apache.calcite.sql.validate.SqlConformanceEnum;
import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.Properties;
/** Implementation of {@link CalciteConnectionConfig}. */
public class CalciteConnectionConfigImpl extends ConnectionConfigImpl
implements CalciteConnectionConfig {
public CalciteConnectionConfigImpl(Properties properties) {
super(properties);
}
/** Returns a copy of this configuration with one property changed. */
public CalciteConnectionConfigImpl set(CalciteConnectionProperty property,
String value) {
final Properties properties1 = new Properties(properties);
properties1.setProperty(property.camelName(), value);
return new CalciteConnectionConfigImpl(properties1);
}
public boolean approximateDistinctCount() {
return CalciteConnectionProperty.APPROXIMATE_DISTINCT_COUNT.wrap(properties)
.getBoolean();
}
public boolean approximateTopN() {
return CalciteConnectionProperty.APPROXIMATE_TOP_N.wrap(properties)
.getBoolean();
}
public boolean approximateDecimal() {
return CalciteConnectionProperty.APPROXIMATE_DECIMAL.wrap(properties)
.getBoolean();
}
@Override public boolean nullEqualToEmpty() {
return CalciteConnectionProperty.NULL_EQUAL_TO_EMPTY.wrap(properties).getBoolean();
}
public boolean autoTemp() {
return CalciteConnectionProperty.AUTO_TEMP.wrap(properties).getBoolean();
}
public boolean materializationsEnabled() {
return CalciteConnectionProperty.MATERIALIZATIONS_ENABLED.wrap(properties)
.getBoolean();
}
public boolean createMaterializations() {
return CalciteConnectionProperty.CREATE_MATERIALIZATIONS.wrap(properties)
.getBoolean();
}
public NullCollation defaultNullCollation() {
return CalciteConnectionProperty.DEFAULT_NULL_COLLATION.wrap(properties)
.getEnum(NullCollation.class, NullCollation.HIGH);
}
public T fun(Class operatorTableClass, T defaultOperatorTable) {
final String fun =
CalciteConnectionProperty.FUN.wrap(properties).getString();
if (fun == null || fun.equals("") || fun.equals("standard")) {
return defaultOperatorTable;
}
final Collection tables = new LinkedHashSet<>();
for (String s : fun.split(",")) {
operatorTable(s, tables);
}
tables.add(SqlStdOperatorTable.instance());
return operatorTableClass.cast(
ChainedSqlOperatorTable.of(
tables.toArray(new SqlOperatorTable[0])));
}
private static void operatorTable(String s,
Collection tables) {
switch (s) {
case "standard":
tables.add(SqlStdOperatorTable.instance());
return;
case "oracle":
tables.add(OracleSqlOperatorTable.instance());
return;
case "spatial":
tables.add(
CalciteCatalogReader.operatorTable(GeoFunctions.class.getName()));
return;
default:
throw new IllegalArgumentException("Unknown operator table: " + s);
}
}
public String model() {
return CalciteConnectionProperty.MODEL.wrap(properties).getString();
}
public Lex lex() {
return CalciteConnectionProperty.LEX.wrap(properties).getEnum(Lex.class);
}
public Quoting quoting() {
return CalciteConnectionProperty.QUOTING.wrap(properties)
.getEnum(Quoting.class, lex().quoting);
}
public Casing unquotedCasing() {
return CalciteConnectionProperty.UNQUOTED_CASING.wrap(properties)
.getEnum(Casing.class, lex().unquotedCasing);
}
public Casing quotedCasing() {
return CalciteConnectionProperty.QUOTED_CASING.wrap(properties)
.getEnum(Casing.class, lex().quotedCasing);
}
public boolean caseSensitive() {
return CalciteConnectionProperty.CASE_SENSITIVE.wrap(properties)
.getBoolean(lex().caseSensitive);
}
public T parserFactory(Class parserFactoryClass,
T defaultParserFactory) {
return CalciteConnectionProperty.PARSER_FACTORY.wrap(properties)
.getPlugin(parserFactoryClass, defaultParserFactory);
}
public T schemaFactory(Class schemaFactoryClass,
T defaultSchemaFactory) {
return CalciteConnectionProperty.SCHEMA_FACTORY.wrap(properties)
.getPlugin(schemaFactoryClass, defaultSchemaFactory);
}
public JsonSchema.Type schemaType() {
return CalciteConnectionProperty.SCHEMA_TYPE.wrap(properties)
.getEnum(JsonSchema.Type.class);
}
public boolean spark() {
return CalciteConnectionProperty.SPARK.wrap(properties).getBoolean();
}
public boolean forceDecorrelate() {
return CalciteConnectionProperty.FORCE_DECORRELATE.wrap(properties)
.getBoolean();
}
public T typeSystem(Class typeSystemClass, T defaultTypeSystem) {
return CalciteConnectionProperty.TYPE_SYSTEM.wrap(properties)
.getPlugin(typeSystemClass, defaultTypeSystem);
}
public SqlConformance conformance() {
return CalciteConnectionProperty.CONFORMANCE.wrap(properties)
.getEnum(SqlConformanceEnum.class);
}
public boolean typeCoercion() {
return CalciteConnectionProperty.TYPE_COERCION.wrap(properties)
.getBoolean();
}
}
// End CalciteConnectionConfigImpl.java
© 2015 - 2024 Weber Informatics LLC | Privacy Policy