com.axibase.tsd.driver.jdbc.content.ContentMetadata Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of atsd-jdbc Show documentation
Show all versions of atsd-jdbc Show documentation
JDBC driver for SQL API using
/*
* Copyright 2016 Axibase Corporation or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* https://www.axibase.com/atsd/axibase-apache-2.0.pdf
*
* or in the "license" file accompanying this file. This file 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.axibase.tsd.driver.jdbc.content;
import com.axibase.tsd.driver.jdbc.enums.AtsdType;
import com.axibase.tsd.driver.jdbc.ext.AtsdException;
import com.axibase.tsd.driver.jdbc.ext.AtsdJsonException;
import com.axibase.tsd.driver.jdbc.ext.AtsdMetaResultSets;
import com.axibase.tsd.driver.jdbc.logging.LoggingFacade;
import com.axibase.tsd.driver.jdbc.util.EnumUtil;
import com.axibase.tsd.driver.jdbc.util.JsonMappingUtil;
import lombok.Getter;
import org.apache.calcite.avatica.AvaticaParameter;
import org.apache.calcite.avatica.ColumnMetaData;
import org.apache.calcite.avatica.Meta.CursorFactory;
import org.apache.calcite.avatica.Meta.MetaResultSet;
import org.apache.calcite.avatica.Meta.Signature;
import org.apache.calcite.avatica.Meta.StatementType;
import org.apache.calcite.avatica.com.fasterxml.jackson.core.JsonParser;
import org.apache.calcite.avatica.com.fasterxml.jackson.core.JsonToken;
import org.apache.commons.lang3.StringUtils;
import java.io.*;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import static com.axibase.tsd.driver.jdbc.DriverConstants.*;
@SuppressWarnings("unchecked")
@Getter
public class ContentMetadata {
private static final LoggingFacade logger = LoggingFacade.getLogger(ContentMetadata.class);
private final Signature sign;
private final List list;
private final List metadataList;
public ContentMetadata(String scheme, String sql, String catalog, String connectionId, int statementId, boolean assignColumnNames, boolean odbcCompatible)
throws AtsdException, IOException {
metadataList = StringUtils.isNotEmpty(scheme) ? buildMetadataList(scheme, catalog, assignColumnNames, odbcCompatible)
: Collections.emptyList();
sign = new Signature(metadataList, sql, Collections.emptyList(), null, CursorFactory.LIST,
StatementType.SELECT);
list = Collections.unmodifiableList(
Collections.singletonList(MetaResultSet.create(connectionId, statementId, false, sign, null)));
}
public static List buildMetadataList(InputStream jsonInputStream, String catalog, boolean assignColumnNames, boolean odbcCompatible)
throws IOException, AtsdException {
return buildMetadataList(new InputStreamReader(jsonInputStream), catalog, assignColumnNames, odbcCompatible);
}
public static List buildMetadataList(String json, String catalog, boolean assignColumnNames, boolean odbcCompatible)
throws IOException, AtsdException {
return buildMetadataList(new StringReader(json), catalog, assignColumnNames, odbcCompatible);
}
private static List buildMetadataList(Reader jsonReader, String catalog, boolean assignColumnNames, boolean odbcCompatible)
throws IOException, AtsdException {
final Map jsonObject = getJsonScheme(jsonReader);
if (jsonObject == null) {
throw new AtsdException("Wrong metadata content");
}
final Map publisher = (Map) jsonObject.get(PUBLISHER_SECTION);
if (publisher == null) {
throw new AtsdJsonException("Wrong metadata publisher", jsonObject);
}
final String schema = null;
final Map tableSchema = (Map) jsonObject.get(TABLE_SCHEMA_SECTION);
if (tableSchema == null) {
throw new AtsdJsonException("Wrong table schema", jsonObject);
}
final List
© 2015 - 2024 Weber Informatics LLC | Privacy Policy