/* * 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.ignite.internal.jdbc; import java.sql.Array; import java.sql.Blob; import java.sql.CallableStatement; import java.sql.Clob; import java.sql.Connection; import java.sql.DatabaseMetaData; import java.sql.NClob; import java.sql.PreparedStatement; import java.sql.SQLClientInfoException; import java.sql.SQLException; import java.sql.SQLFeatureNotSupportedException; import java.sql.SQLWarning; import java.sql.SQLXML; import java.sql.Savepoint; import java.sql.Statement; import java.sql.Struct; import java.util.Collections; import java.util.Map; import java.util.Properties; import java.util.UUID; import java.util.concurrent.Executor; import org.apache.ignite.internal.client.GridClient; import org.apache.ignite.internal.client.GridClientConfiguration; import org.apache.ignite.internal.client.GridClientDisconnectedException; import org.apache.ignite.internal.client.GridClientException; import org.apache.ignite.internal.client.GridClientFactory; import org.apache.ignite.internal.client.GridClientFutureTimeoutException; import org.apache.ignite.internal.util.typedef.F; import org.apache.ignite.plugin.security.SecurityCredentials; import org.apache.ignite.plugin.security.SecurityCredentialsBasicProvider; import static java.sql.ResultSet.CONCUR_READ_ONLY; import static java.sql.ResultSet.HOLD_CURSORS_OVER_COMMIT; import static java.sql.ResultSet.TYPE_FORWARD_ONLY; import static java.util.concurrent.TimeUnit.SECONDS; import static org.apache.ignite.IgniteJdbcDriver.PROP_CACHE; import static org.apache.ignite.IgniteJdbcDriver.PROP_HOST; import static org.apache.ignite.IgniteJdbcDriver.PROP_NODE_ID; import static org.apache.ignite.IgniteJdbcDriver.PROP_PORT; /** * JDBC connection implementation. * * @deprecated Using Ignite client node based JDBC driver is preferable. * See documentation of {@link org.apache.ignite.IgniteJdbcDriver} for details. */ @Deprecated public class JdbcConnection implements Connection { /** Validation task name. */ private static final String VALID_TASK_NAME = "org.apache.ignite.internal.processors.cache.query.jdbc.GridCacheQueryJdbcValidationTask"; /** Ignite client. */ private final GridClient client; /** Cache name. */ private String cacheName; /** Closed flag. */ private boolean closed; /** URL. */ private String url; /** Node ID. */ private UUID nodeId; /** Timeout. */ private int timeout; /** * Creates new connection. * * @param url Connection URL. * @param props Additional properties. * @throws SQLException In case Ignite client failed to start. */ public JdbcConnection(String url, Properties props) throws SQLException { assert url != null; assert props != null; this.url = url; cacheName = props.getProperty(PROP_CACHE); String nodeIdProp = props.getProperty(PROP_NODE_ID); if (nodeIdProp != null) nodeId = UUID.fromString(nodeIdProp); try { GridClientConfiguration cfg = new GridClientConfiguration(props); cfg.setServers(Collections.singleton(props.getProperty(PROP_HOST) + ":" + props.getProperty(PROP_PORT))); String user = props.getProperty("user"); String passwd = props.getProperty("password"); if (!F.isEmpty(user)) { SecurityCredentials creds = new SecurityCredentials(user, passwd); cfg.setSecurityCredentialsProvider(new SecurityCredentialsBasicProvider(creds)); } // Disable all fetching and caching for metadata. cfg.setEnableMetricsCache(false); cfg.setEnableAttributesCache(false); cfg.setAutoFetchMetrics(false); cfg.setAutoFetchAttributes(false); client = GridClientFactory.start(cfg); } catch (GridClientException e) { throw new SQLException("Failed to start Ignite client.", e); } if (!isValid(2)) throw new SQLException("Client is invalid. Probably cache name is wrong."); } /** {@inheritDoc} */ @Override public Statement createStatement() throws SQLException { return createStatement(TYPE_FORWARD_ONLY, CONCUR_READ_ONLY, HOLD_CURSORS_OVER_COMMIT); } /** {@inheritDoc} */ @Override public PreparedStatement prepareStatement(String sql) throws SQLException { ensureNotClosed(); return prepareStatement(sql, TYPE_FORWARD_ONLY, CONCUR_READ_ONLY, HOLD_CURSORS_OVER_COMMIT); } /** {@inheritDoc} */ @Override public CallableStatement prepareCall(String sql) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Callable functions are not supported."); } /** {@inheritDoc} */ @Override public String nativeSQL(String sql) throws SQLException { ensureNotClosed(); return sql; } /** {@inheritDoc} */ @Override public void setAutoCommit(boolean autoCommit) throws SQLException { ensureNotClosed(); if (!autoCommit) throw new SQLFeatureNotSupportedException("Transactions are not supported."); } /** {@inheritDoc} */ @Override public boolean getAutoCommit() throws SQLException { ensureNotClosed(); return true; } /** {@inheritDoc} */ @Override public void commit() throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Transactions are not supported."); } /** {@inheritDoc} */ @Override public void rollback() throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Transactions are not supported."); } /** {@inheritDoc} */ @Override public void close() throws SQLException { if (closed) return; closed = true; GridClientFactory.stop(client.id(), false); } /** {@inheritDoc} */ @Override public boolean isClosed() throws SQLException { return closed; } /** {@inheritDoc} */ @Override public DatabaseMetaData getMetaData() throws SQLException { ensureNotClosed(); return new JdbcDatabaseMetadata(this); } /** {@inheritDoc} */ @Override public void setReadOnly(boolean readOnly) throws SQLException { ensureNotClosed(); if (!readOnly) throw new SQLFeatureNotSupportedException("Updates are not supported."); } /** {@inheritDoc} */ @Override public boolean isReadOnly() throws SQLException { ensureNotClosed(); return true; } /** {@inheritDoc} */ @Override public void setCatalog(String catalog) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Catalogs are not supported."); } /** {@inheritDoc} */ @Override public String getCatalog() throws SQLException { ensureNotClosed(); return null; } /** {@inheritDoc} */ @Override public void setTransactionIsolation(int level) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Transactions are not supported."); } /** {@inheritDoc} */ @Override public int getTransactionIsolation() throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Transactions are not supported."); } /** {@inheritDoc} */ @Override public SQLWarning getWarnings() throws SQLException { ensureNotClosed(); return null; } /** {@inheritDoc} */ @Override public void clearWarnings() throws SQLException { ensureNotClosed(); } /** {@inheritDoc} */ @Override public Statement createStatement(int resSetType, int resSetConcurrency) throws SQLException { return createStatement(resSetType, resSetConcurrency, HOLD_CURSORS_OVER_COMMIT); } /** {@inheritDoc} */ @Override public PreparedStatement prepareStatement(String sql, int resSetType, int resSetConcurrency) throws SQLException { ensureNotClosed(); return prepareStatement(sql, resSetType, resSetConcurrency, HOLD_CURSORS_OVER_COMMIT); } /** {@inheritDoc} */ @Override public CallableStatement prepareCall(String sql, int resSetType, int resSetConcurrency) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Callable functions are not supported."); } /** {@inheritDoc} */ @Override public Map<String, Class<?>> getTypeMap() throws SQLException { throw new SQLFeatureNotSupportedException("Types mapping is not supported."); } /** {@inheritDoc} */ @Override public void setTypeMap(Map<String, Class<?>> map) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Types mapping is not supported."); } /** {@inheritDoc} */ @Override public void setHoldability(int holdability) throws SQLException { ensureNotClosed(); if (holdability != HOLD_CURSORS_OVER_COMMIT) throw new SQLFeatureNotSupportedException("Invalid holdability (transactions are not supported)."); } /** {@inheritDoc} */ @Override public int getHoldability() throws SQLException { ensureNotClosed(); return HOLD_CURSORS_OVER_COMMIT; } /** {@inheritDoc} */ @Override public Savepoint setSavepoint() throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Transactions are not supported."); } /** {@inheritDoc} */ @Override public Savepoint setSavepoint(String name) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Transactions are not supported."); } /** {@inheritDoc} */ @Override public void rollback(Savepoint savepoint) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Transactions are not supported."); } /** {@inheritDoc} */ @Override public void releaseSavepoint(Savepoint savepoint) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Transactions are not supported."); } /** {@inheritDoc} */ @Override public Statement createStatement(int resSetType, int resSetConcurrency, int resSetHoldability) throws SQLException { ensureNotClosed(); if (resSetType != TYPE_FORWARD_ONLY) throw new SQLFeatureNotSupportedException("Invalid result set type (only forward is supported.)"); if (resSetConcurrency != CONCUR_READ_ONLY) throw new SQLFeatureNotSupportedException("Invalid concurrency (updates are not supported)."); if (resSetHoldability != HOLD_CURSORS_OVER_COMMIT) throw new SQLFeatureNotSupportedException("Invalid holdability (transactions are not supported)."); JdbcStatement stmt = new JdbcStatement(this); if (timeout > 0) stmt.timeout(timeout); return stmt; } /** {@inheritDoc} */ @Override public PreparedStatement prepareStatement(String sql, int resSetType, int resSetConcurrency, int resSetHoldability) throws SQLException { ensureNotClosed(); if (resSetType != TYPE_FORWARD_ONLY) throw new SQLFeatureNotSupportedException("Invalid result set type (only forward is supported.)"); if (resSetConcurrency != CONCUR_READ_ONLY) throw new SQLFeatureNotSupportedException("Invalid concurrency (updates are not supported)."); if (resSetHoldability != HOLD_CURSORS_OVER_COMMIT) throw new SQLFeatureNotSupportedException("Invalid holdability (transactions are not supported)."); JdbcPreparedStatement stmt = new JdbcPreparedStatement(this, sql); if (timeout > 0) stmt.timeout(timeout); return stmt; } /** {@inheritDoc} */ @Override public CallableStatement prepareCall(String sql, int resSetType, int resSetConcurrency, int resSetHoldability) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Callable functions are not supported."); } /** {@inheritDoc} */ @Override public PreparedStatement prepareStatement(String sql, int autoGeneratedKeys) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Updates are not supported."); } /** {@inheritDoc} */ @Override public PreparedStatement prepareStatement(String sql, int[] colIndexes) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Updates are not supported."); } /** {@inheritDoc} */ @Override public PreparedStatement prepareStatement(String sql, String[] colNames) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("Updates are not supported."); } /** {@inheritDoc} */ @Override public Clob createClob() throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("SQL-specific types are not supported."); } /** {@inheritDoc} */ @Override public Blob createBlob() throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("SQL-specific types are not supported."); } /** {@inheritDoc} */ @Override public NClob createNClob() throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("SQL-specific types are not supported."); } /** {@inheritDoc} */ @Override public SQLXML createSQLXML() throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("SQL-specific types are not supported."); } /** {@inheritDoc} */ @Override public boolean isValid(int timeout) throws SQLException { ensureNotClosed(); if (timeout < 0) throw new SQLException("Invalid timeout: " + timeout); try { return client.compute().<Boolean>executeAsync(VALID_TASK_NAME, cacheName).get(timeout, SECONDS); } catch (GridClientDisconnectedException | GridClientFutureTimeoutException e) { throw new SQLException("Failed to establish connection.", e); } catch (GridClientException ignored) { return false; } } /** {@inheritDoc} */ @Override public void setClientInfo(String name, String val) throws SQLClientInfoException { throw new UnsupportedOperationException("Client info is not supported."); } /** {@inheritDoc} */ @Override public void setClientInfo(Properties props) throws SQLClientInfoException { throw new UnsupportedOperationException("Client info is not supported."); } /** {@inheritDoc} */ @Override public String getClientInfo(String name) throws SQLException { ensureNotClosed(); return null; } /** {@inheritDoc} */ @Override public Properties getClientInfo() throws SQLException { ensureNotClosed(); return new Properties(); } /** {@inheritDoc} */ @Override public Array createArrayOf(String typeName, Object[] elements) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("SQL-specific types are not supported."); } /** {@inheritDoc} */ @Override public Struct createStruct(String typeName, Object[] attrs) throws SQLException { ensureNotClosed(); throw new SQLFeatureNotSupportedException("SQL-specific types are not supported."); } /** {@inheritDoc} */ @Override public <T> T unwrap(Class<T> iface) throws SQLException { if (!isWrapperFor(iface)) throw new SQLException("Connection is not a wrapper for " + iface.getName()); return (T)this; } /** {@inheritDoc} */ @Override public boolean isWrapperFor(Class<?> iface) throws SQLException { return iface != null && iface == Connection.class; } /** {@inheritDoc} */ @Override public void setSchema(String schema) throws SQLException { cacheName = schema; } /** {@inheritDoc} */ @Override public String getSchema() throws SQLException { return cacheName; } /** {@inheritDoc} */ @Override public void abort(Executor executor) throws SQLException { close(); } /** {@inheritDoc} */ @Override public void setNetworkTimeout(Executor executor, int ms) throws SQLException { if (ms < 0) throw new IllegalArgumentException("Timeout is below zero: " + ms); timeout = ms; } /** {@inheritDoc} */ @Override public int getNetworkTimeout() throws SQLException { return timeout; } /** * @return Ignite client. */ GridClient client() { return client; } /** * @return Cache name. */ String cacheName() { return cacheName; } /** * @return URL. */ String url() { return url; } /** * @return Node ID. */ UUID nodeId() { return nodeId; } /** * Ensures that connection is not closed. * * @throws SQLException If connection is closed. */ private void ensureNotClosed() throws SQLException { if (closed) throw new SQLException("Connection is closed."); } /** * @return Internal statement. * @throws SQLException In case of error. */ JdbcStatement createStatement0() throws SQLException { return (JdbcStatement)createStatement(); } }