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

org.apache.calcite.adapter.splunk.SplunkDriver Maven / Gradle / Ivy

There is a newer version: 1.37.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 org.apache.calcite.adapter.splunk;

import org.apache.calcite.adapter.splunk.search.SearchResultListener;
import org.apache.calcite.adapter.splunk.search.SplunkConnection;
import org.apache.calcite.adapter.splunk.search.SplunkConnectionImpl;
import org.apache.calcite.avatica.DriverVersion;
import org.apache.calcite.jdbc.CalciteConnection;
import org.apache.calcite.linq4j.Enumerator;
import org.apache.calcite.schema.SchemaPlus;

import java.net.URL;
import java.sql.Connection;
import java.sql.SQLException;
import java.util.List;
import java.util.Map;
import java.util.Properties;

/**
 * JDBC driver for Splunk.
 *
 * 

It accepts connect strings that start with "jdbc:splunk:".

*/ public class SplunkDriver extends org.apache.calcite.jdbc.Driver { protected SplunkDriver() { super(); } static { new SplunkDriver().register(); } protected String getConnectStringPrefix() { return "jdbc:splunk:"; } protected DriverVersion createDriverVersion() { return new SplunkDriverVersion(); } @Override public Connection connect(String url, Properties info) throws SQLException { Connection connection = super.connect(url, info); CalciteConnection calciteConnection = (CalciteConnection) connection; SplunkConnection splunkConnection; try { String url1 = info.getProperty("url"); if (url1 == null) { throw new IllegalArgumentException( "Must specify 'url' property"); } if (url1.equals("mock")) { splunkConnection = new MockSplunkConnection(); } else { String user = info.getProperty("user"); if (user == null) { throw new IllegalArgumentException( "Must specify 'user' property"); } String password = info.getProperty("password"); if (password == null) { throw new IllegalArgumentException( "Must specify 'password' property"); } URL url2 = new URL(url1); splunkConnection = new SplunkConnectionImpl(url2, user, password); } } catch (Exception e) { throw new SQLException("Cannot connect", e); } final SchemaPlus rootSchema = calciteConnection.getRootSchema(); rootSchema.add("splunk", new SplunkSchema(splunkConnection)); return connection; } /** Connection that looks up responses from a static map. */ private static class MockSplunkConnection implements SplunkConnection { public Enumerator getSearchResultEnumerator(String search, Map otherArgs, List fieldList) { throw null; } public void getSearchResults(String search, Map otherArgs, List fieldList, SearchResultListener srl) { throw new UnsupportedOperationException(); } } /** Connection that records requests and responses. */ private static class WrappingSplunkConnection implements SplunkConnection { private final SplunkConnection connection; public WrappingSplunkConnection(SplunkConnection connection) { this.connection = connection; } public void getSearchResults(String search, Map otherArgs, List fieldList, SearchResultListener srl) { System.out.println("search='" + search + "', otherArgs=" + otherArgs + ", fieldList='" + fieldList); } public Enumerator getSearchResultEnumerator(String search, Map otherArgs, List fieldList) { throw new UnsupportedOperationException(); } } } // End SplunkDriver.java