src.main.java.com.aceql.client.jdbc.http.AceQLHttpApi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aceql-http-client-sdk Show documentation
Show all versions of aceql-http-client-sdk Show documentation
The AceQL Java Client SDK allows to wrap the AceQL HTTP APIs and eliminate the tedious works of handling communications errors and parsing JSON results.
Android and Java Desktop application developers can access remote SQL databases and/or SQL databases in the cloud by simply including standard JDBC calls in their code, just like they would for a local database.
/*
* This file is part of AceQL Client SDK.
* AceQL Client SDK: Remote JDBC access over HTTP with AceQL HTTP.
* Copyright (C) 2020, KawanSoft SAS
* (http://www.kawansoft.com). 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.
* 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.aceql.client.jdbc.http;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.net.HttpURLConnection;
import java.net.PasswordAuthentication;
import java.net.Proxy;
import java.net.URL;
import java.net.URLConnection;
import java.sql.SQLException;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import java.util.UUID;
import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import org.apache.commons.io.IOUtils;
import org.kawanfw.sql.version.VersionValues;
import com.aceql.client.jdbc.AceQLException;
import com.aceql.client.jdbc.util.UserLoginStore;
import com.aceql.client.jdbc.util.json.SqlParameter;
import com.aceql.client.metadata.ResultSetMetaDataPolicy;
import com.aceql.client.metadata.dto.JdbcDatabaseMetaDataDto;
import com.aceql.client.metadata.dto.TableDto;
import com.aceql.client.metadata.dto.TableNamesDto;
/**
* @author Nicolas de Pomereu
*
* AceQL Rest wrapper for AceQL http/REST apis that take care of all
* http calls and operations.
*
* All Exceptions are trapped with a {#link AceQLException} that allows
* to retrieve the detail of the Exceptions
*/
public class AceQLHttpApi {
public static boolean DEBUG = false;
private boolean TRACE_ON = false;
// private values
private String serverUrl;
private String username;
private char[] password;
private String sessionId;
private String database;
private static int connectTimeout = 0;
private static int readTimeout = 0;
/** Always true and can not be changed */
private final boolean prettyPrinting = true;
private boolean gzipResult = true;
private String url = null;
/** If true, ResultSetMetaData will be downloaded along with ResultSet in Json result */
private boolean fillResultSetMetaData = true;
private ResultSetMetaDataPolicy resultSetMetaDataPolicy = ResultSetMetaDataPolicy.off;
private AtomicBoolean cancelled;
private AtomicInteger progress;
/* The HttpManager */
private HttpManager httpManager;
/**
* Sets the read timeout.
*
* @param readTimeout an int
that specifies the read timeout value,
* in milliseconds, to be used when an http connection is
* established to the remote server. See
* {@link URLConnection#setReadTimeout(int)}
*/
public static void setReadTimeout(int readTimeout) {
AceQLHttpApi.readTimeout = readTimeout;
}
/**
* Sets the connect timeout.
*
* @param connectTimeout Sets a specified timeout value, in milliseconds, to be
* used when opening a communications link to the remote
* server. If the timeout expires before the connection
* can be established, a java.net.SocketTimeoutException
* is raised. A timeout of zero is interpreted as an
* infinite timeout. See
* {@link URLConnection#setConnectTimeout(int)}
*/
public static void setConnectTimeout(int connectTimeout) {
AceQLHttpApi.connectTimeout = connectTimeout;
}
/**
* Login on the AceQL server and connect to a database
*
* @param serverUrl the url of the AceQL server. Example:
* http://localhost:9090/aceql
* @param database the server database to connect to.
* @param username the login
* @param password the password
* @param sessionId the session ID, if no password authentication
* @param proxy the proxy to use. null if none.
* @param passwordAuthentication the username and password holder to use for
* authenticated proxy. Null if no proxy or if
* proxy
* @throws AceQLException if any Exception occurs
*/
public AceQLHttpApi(String serverUrl, String database, String username, char[] password, String sessionId,
Proxy proxy, PasswordAuthentication passwordAuthentication) throws AceQLException {
try {
if (serverUrl == null) {
Objects.requireNonNull(serverUrl, "serverUrl can not be null!");
}
if (database == null) {
Objects.requireNonNull(database, "database can not be null!");
}
if (username == null) {
Objects.requireNonNull(username, "username can not be null!");
}
if (password == null && sessionId == null) {
throw new IllegalArgumentException("password and sessionId are both null!");
}
this.serverUrl = serverUrl;
this.username = username;
this.database = database;
this.password = password;
this.sessionId = sessionId;
httpManager = new HttpManager(proxy, passwordAuthentication, connectTimeout, readTimeout);
UserLoginStore userLoginStore = new UserLoginStore(serverUrl, username, database);
if (sessionId != null) {
userLoginStore.setSessionId(sessionId);
}
if (userLoginStore.isAlreadyLogged()) {
trace("Get a new connection with get_connection");
sessionId = userLoginStore.getSessionId();
String theUrl = serverUrl + "/session/" + sessionId + "/get_connection";
String result = httpManager.callWithGet(theUrl);
trace("result: " + result);
ResultAnalyzer resultAnalyzer = new ResultAnalyzer(result, httpManager.getHttpStatusCode(),
httpManager.getHttpStatusMessage());
if (!resultAnalyzer.isStatusOk()) {
throw new AceQLException(resultAnalyzer.getErrorMessage(), resultAnalyzer.getErrorType(), null,
resultAnalyzer.getStackTrace(), httpManager.getHttpStatusCode());
}
String connectionId = resultAnalyzer.getValue("connection_id");
trace("Ok. New Connection created: " + connectionId);
this.url = serverUrl + "/session/" + sessionId + "/connection/" + connectionId + "/";
} else {
String url = serverUrl + "/database/" + database + "/username/" + username + "/login";
Map parameters = new HashMap();
parameters.put("password", new String(password));
parameters.put("client_version", VersionValues.VERSION);
String result = httpManager.callWithPostReturnString(new URL(url), parameters);
trace("result: " + result);
ResultAnalyzer resultAnalyzer = new ResultAnalyzer(result, httpManager.getHttpStatusCode(),
httpManager.getHttpStatusMessage());
if (!resultAnalyzer.isStatusOk()) {
throw new AceQLException(resultAnalyzer.getErrorMessage(), resultAnalyzer.getErrorType(), null,
resultAnalyzer.getStackTrace(), httpManager.getHttpStatusCode());
}
trace("Ok. Connected! ");
sessionId = resultAnalyzer.getValue("session_id");
String connectionId = resultAnalyzer.getValue("connection_id");
trace("sessionId : " + sessionId);
trace("connectionId: " + connectionId);
this.url = serverUrl + "/session/" + sessionId + "/connection/" + connectionId + "/";
userLoginStore.setSessionId(sessionId);
}
} catch (AceQLException aceQlException) {
throw aceQlException;
} catch (Exception e) {
throw new AceQLException(e.getMessage(), 0, e, null, httpManager.getHttpStatusCode());
}
}
/**
* Returns {@code true} if the server will fill the {@code ResultSetMetaData} along with the {@code ResultSet} when a SELECT is done.
* @return {@code true} if the server will fill the {@code ResultSetMetaData} along with the {@code ResultSet} when a SELECT is done.
*/
public boolean isFillResultSetMetaData() {
return fillResultSetMetaData;
}
/**
* Sets fillResultSetMetaData. if {@code true}, the server will fill the {@code ResultSetMetaData} along with the {@code ResultSet} when a SELECT is done.
* @param fillResultSetMetaData the fillResultSetMetaData to set
*/
public void setFillResultSetMetaData(boolean fillResultSetMetaData) {
this.fillResultSetMetaData = fillResultSetMetaData;
}
/**
* Sets the {@code ResultSetMetaDataPolicy} to use.
* @param resultSetMetaDataPolicy the {@code ResultSetMetaDataPolicy} to use
*/
public void setResultSetMetaDataPolicy(ResultSetMetaDataPolicy resultSetMetaDataPolicy) {
this.resultSetMetaDataPolicy = resultSetMetaDataPolicy;
if (resultSetMetaDataPolicy.equals(ResultSetMetaDataPolicy.on)) {
this.fillResultSetMetaData = true;
}
else if (resultSetMetaDataPolicy.equals(ResultSetMetaDataPolicy.off)) {
this.fillResultSetMetaData = false;
}
}
/**
* Returns the {@code ResultSetMetaDataPolicy} in use.
* @return the {@code ResultSetMetaDataPolicy} in use.
*/
public ResultSetMetaDataPolicy getResultSetMetaDataPolicy() {
return resultSetMetaDataPolicy;
}
public void trace() {
if (TRACE_ON) {
System.out.println();
}
}
public void trace(String s) {
if (TRACE_ON) {
System.out.println(s);
}
}
private void callApiNoResult(String commandName, String commandOption) throws AceQLException {
try {
if (commandName == null) {
Objects.requireNonNull(commandName, "commandName cannot be null!");
}
String result = callWithGet(commandName, commandOption);
ResultAnalyzer resultAnalyzer = new ResultAnalyzer(result, httpManager.getHttpStatusCode(),
httpManager.getHttpStatusMessage());
if (!resultAnalyzer.isStatusOk()) {
throw new AceQLException(resultAnalyzer.getErrorMessage(), resultAnalyzer.getErrorType(), null,
resultAnalyzer.getStackTrace(), httpManager.getHttpStatusCode());
}
} catch (AceQLException aceQlException) {
throw aceQlException;
} catch (Exception e) {
throw new AceQLException(e.getMessage(), 0, e, null, httpManager.getHttpStatusCode());
}
}
private String callApiWithResult(String commandName, String commandOption) throws AceQLException {
try {
if (commandName == null) {
Objects.requireNonNull(commandName, "commandName cannot be null!");
}
String result = callWithGet(commandName, commandOption);
ResultAnalyzer resultAnalyzer = new ResultAnalyzer(result, httpManager.getHttpStatusCode(),
httpManager.getHttpStatusMessage());
if (!resultAnalyzer.isStatusOk()) {
throw new AceQLException(resultAnalyzer.getErrorMessage(), resultAnalyzer.getErrorType(), null,
resultAnalyzer.getStackTrace(), httpManager.getHttpStatusCode());
}
return resultAnalyzer.getResult();
} catch (AceQLException aceQlException) {
throw aceQlException;
} catch (Exception e) {
throw new AceQLException(e.getMessage(), 0, e, null, httpManager.getHttpStatusCode());
}
}
private String callWithGet(String action, String actionParameter) throws IOException {
String urlWithaction = url + action;
if (actionParameter != null && !actionParameter.isEmpty()) {
urlWithaction += "/" + actionParameter;
}
return httpManager.callWithGet(urlWithaction);
}
/*
* NO! Bad implementation: always call an URL private InputStream
* callWithPost(String action, Map parameters) throws
* MalformedURLException, IOException, ProtocolException,
* UnsupportedEncodingException {
*
* URL theUrl = new URL(url + action); return callWithPost(theUrl, parameters);
* }
*/
// ////////////////////////////////////////////////////
// PUBLIC METHODS //
// ///////////////////////////////////////////////////
@Override
public AceQLHttpApi clone() {
AceQLHttpApi aceQLHttpApi;
try {
aceQLHttpApi = new AceQLHttpApi(serverUrl, database, username, password, sessionId, httpManager.getProxy(),
httpManager.getPasswordAuthentication());
aceQLHttpApi.setGzipResult(gzipResult);
} catch (SQLException e) {
throw new IllegalStateException(e);
}
return aceQLHttpApi;
}
/**
* Says if trace is on
*
* @return true if trace is on
*/
public boolean isTraceOn() {
return TRACE_ON;
}
/**
* Sets the trace on/off
*
* @param TRACE_ON if true, trace will be on
*/
public void setTraceOn(boolean traceOn) {
TRACE_ON = traceOn;
}
/**
* Returns the cancelled value set by the progress indicator
*
* @return the cancelled value set by the progress indicator
*/
public AtomicBoolean getCancelled() {
return cancelled;
}
/**
* Sets the shareable canceled variable that will be used by the progress
* indicator to notify this instance that the user has cancelled the current
* blob/clob upload or download.
*
* @param cancelled the shareable canceled variable that will be used by the
* progress indicator to notify this instance that the end user
* has cancelled the current blob/clob upload or download
*
*/
public void setCancelled(AtomicBoolean cancelled) {
this.cancelled = cancelled;
}
/**
* Returns the sharable progress variable that will store blob/clob upload or
* download progress between 0 and 100
*
* @return the sharable progress variable that will store blob/clob upload or
* download progress between 0 and 100
*
*/
public AtomicInteger getProgress() {
return progress;
}
/**
* Sets the sharable progress variable that will store blob/clob upload or
* download progress between 0 and 100. Will be used by progress indicators to
* show the progress.
*
* @param progress the sharable progress variable
*/
public void setProgress(AtomicInteger progress) {
this.progress = progress;
}
/**
* Says the query result is returned compressed with the GZIP file format.
*
* @return the gzipResult
*/
public boolean isGzipResult() {
return gzipResult;
}
/**
* Defines if result sets are compressed before download. Defaults to true.
*
* @param gzipResult if true, sets are compressed before download
*/
public void setGzipResult(boolean gzipResult) {
this.gzipResult = gzipResult;
}
/**
* Calls /get_version API
*
* @throws AceQLException if any Exception occurs
*/
public String getServerVersion() throws AceQLException {
String result = callApiWithResult("get_version", null);
return result;
}
/**
* Gets the SDK version
*
* @throws AceQLException if any Exception occurs
*/
public String getClientVersion() {
return org.kawanfw.sql.version.Version.getVersion();
}
/**
* Calls /close API
*/
public void close() throws AceQLException {
callApiNoResult("close", null);
}
/**
* Calls /logout API
*
* @throws AceQLException if any Exception occurs
*/
public void logout() throws AceQLException {
UserLoginStore loginStore = new UserLoginStore(serverUrl, username, database);
loginStore.remove();
callApiNoResult("logout", null);
}
/**
* Calls /commit API
*
* @throws AceQLException if any Exception occurs
*/
public void commit() throws AceQLException {
callApiNoResult("commit", null);
}
/**
* Calls /rollback API
*
* @throws AceQLException if any Exception occurs
*/
public void rollback() throws AceQLException {
callApiNoResult("rollback", null);
}
/**
* Calls /set_transaction_isolation_level API
*
* @param level the isolation level
* @throws AceQLException if any Exception occurs
*/
public void setTransactionIsolation(String level) throws AceQLException {
callApiNoResult("set_transaction_isolation_level", level);
}
/**
* Calls /set_holdability API
*
* @param holdability the holdability
* @throws AceQLException if any Exception occurs
*/
public void setHoldability(String holdability) throws AceQLException {
callApiNoResult("set_holdability", holdability);
}
/**
* Calls /set_auto_commit API
*
* @param autoCommit true
to enable auto-commit mode;
* false
to disable it
* @throws AceQLException if any Exception occurs
*/
public void setAutoCommit(boolean autoCommit) throws AceQLException {
callApiNoResult("set_auto_commit", autoCommit + "");
}
/**
* Calls /get_auto_commit API
*
* @param autoCommit true
to enable auto-commit mode;
* false
to disable it
* @return the current state of this Connection
object's
* auto-commit mode
* @throws AceQLException if any Exception occurs
*/
public boolean getAutoCommit() throws AceQLException {
String result = callApiWithResult("get_auto_commit", null);
return Boolean.parseBoolean(result);
}
/**
* Calls /is_read_only API
*
* @return true
if this Connection
object is
* read-only; false
otherwise
* @throws AceQLException if any Exception occurs
*/
public boolean isReadOnly() throws AceQLException {
String result = callApiWithResult("is_read_only", null);
return Boolean.parseBoolean(result);
}
/**
* Calls /set_read_only API
*
* @param readOnly {@code true} enables read-only mode; {@code false} disables
* it
* @throws AceQLException if any Exception occurs
*/
public void setReadOnly(boolean readOnly) throws AceQLException {
callApiNoResult("set_read_only", readOnly + "");
}
/**
* Calls /get_holdability API
*
* @return the holdability, one of hold_cursors_over_commit
or
* close_cursors_at_commit
* @throws AceQLException if any Exception occurs
*/
public String getHoldability() throws AceQLException {
String result = callApiWithResult("get_holdability", null);
return result;
}
/**
* Calls /get_transaction_isolation_level API
*
* @return the current transaction isolation level, which will be one of the
* following constants: transaction_read_uncommitted
,
* transaction_read_committed
,
* transaction_repeatable_read
,
* transaction_serializable
, or
* transaction_none
.
* @throws AceQLException if any Exception occurs
*/
public String getTransactionIsolation() throws AceQLException {
String result = callApiWithResult("get_transaction_isolation_level", null);
return result;
}
/**
* Calls /get_catalog API
* @return
*/
public String getCatalog() throws AceQLException {
String result = callApiWithResult("get_catalog", null);
return result;
}
/**
* Calls /get_schema API
* @return
*/
public String getSchema() throws AceQLException {
String result = callApiWithResult("get_schema", null);
return result;
}
/**
* Calls /execute API
*
* @param sql an SQL INSERT
, UPDATE
or
* DELETE
statement or an SQL statement
* that returns nothing
* @param isPreparedStatement if true, the server will generate a prepared
* statement, else a simple statement
* @param statementParameters the statement parameters in JSON format. Maybe
* null for simple statement call.
* @param maxRows as set by Statement.setMaxRows(int)
* @return the input stream containing either an error, or the result set in
* JSON format. See user documentation.
* @throws AceQLException if any Exception occurs
*/
public InputStream execute(String sql, boolean isPreparedStatement, Map statementParameters, int maxRows) throws AceQLException {
try {
if (sql == null) {
Objects.requireNonNull(sql, "sql cannot be null!");
}
String action = "execute";
Map parametersMap = new HashMap();
parametersMap.put("sql", sql);
parametersMap.put("prepared_statement", "" + isPreparedStatement);
parametersMap.put("stored_procedure", "" + false);
parametersMap.put("gzip_result", "" + false); // Always false
parametersMap.put("fill_result_set_meta_data", "" + fillResultSetMetaData);
parametersMap.put("pretty_printing", "" + prettyPrinting);
parametersMap.put("max_rows", "" + maxRows);
// Add the statement parameters map
if (statementParameters != null) {
parametersMap.putAll(statementParameters);
}
trace("sql: " + sql);
trace("statement_parameters: " + statementParameters);
URL theUrl = new URL(url + action);
InputStream in = httpManager.callWithPost(theUrl, parametersMap);
return in;
} catch (Exception e) {
if (e instanceof AceQLException) {
throw (AceQLException) e;
} else {
throw new AceQLException(e.getMessage(), 0, e, null, httpManager.getHttpStatusCode());
}
}
}
/**
* Calls /execute_update API
*
* @param sql an SQL INSERT
, UPDATE
* or DELETE
statement or an SQL
* statement that returns nothing
* @param isPreparedStatement if true, the server will generate a prepared
* statement, else a simple statement
* @param isStoredProcedure TODO
* @param statementParameters the statement parameters in JSON format. Maybe
* null for simple statement call.
* @param callableOutParameters the map of OUT parameters
* @return either the row count for INSERT
, UPDATE
or
* DELETE
statements, or 0
for SQL statements
* that return nothing
* @throws AceQLException if any Exception occurs
*/
public int executeUpdate(String sql, boolean isPreparedStatement, boolean isStoredProcedure,
Map statementParameters, Map callableOutParameters)
throws AceQLException {
try {
if (sql == null) {
Objects.requireNonNull(sql, "sql cannot be null!");
}
String action = "execute_update";
// Call raw execute if non query/select stored procedure. (Dirty!! To be
// corrected.)
if (isStoredProcedure) {
action = "execute";
}
Map parametersMap = new HashMap();
parametersMap.put("sql", sql);
// parametersMap.put("prepared_statement", new Boolean(
// isPreparedStatement).toString());
parametersMap.put("prepared_statement", "" + isPreparedStatement);
parametersMap.put("stored_procedure", "" + isStoredProcedure);
trace("sql: " + sql);
trace("statement_parameters: " + statementParameters);
// Add the statement parameters map
if (statementParameters != null) {
parametersMap.putAll(statementParameters);
}
URL theUrl = new URL(url + action);
String result = httpManager.callWithPostReturnString(theUrl, parametersMap);
ResultAnalyzer resultAnalyzer = new ResultAnalyzer(result, httpManager.getHttpStatusCode(),
httpManager.getHttpStatusMessage());
if (!resultAnalyzer.isStatusOk()) {
throw new AceQLException(resultAnalyzer.getErrorMessage(), resultAnalyzer.getErrorType(), null,
resultAnalyzer.getStackTrace(), httpManager.getHttpStatusCode());
}
if (isStoredProcedure) {
updateOutParameters(resultAnalyzer, callableOutParameters);
}
int rowCount = resultAnalyzer.getIntvalue("row_count");
return rowCount;
} catch (AceQLException aceQlException) {
throw aceQlException;
} catch (Exception e) {
throw new AceQLException(e.getMessage(), 0, e, null, httpManager.getHttpStatusCode());
}
}
/**
* Calls /execute_query API
*
* @param sql an SQL INSERT
, UPDATE
or
* DELETE
statement or an SQL statement
* that returns nothing
* @param isPreparedStatement if true, the server will generate a prepared
* statement, else a simple statement
* @param isStoredProcedure true if the call is a stored procedure
* @param statementParameters the statement parameters in JSON format. Maybe
* null for simple statement call.
* @param maxRows as set by Statement.setMaxRows(int)
* @return the input stream containing either an error, or the result set in
* JSON format. See user documentation.
* @throws AceQLException if any Exception occurs
*/
public InputStream executeQuery(String sql, boolean isPreparedStatement, boolean isStoredProcedure,
Map statementParameters, int maxRows) throws AceQLException {
try {
if (sql == null) {
Objects.requireNonNull(sql, "sql cannot be null!");
}
String action = "execute_query";
Map parametersMap = new HashMap();
parametersMap.put("sql", sql);
parametersMap.put("prepared_statement", "" + isPreparedStatement);
parametersMap.put("stored_procedure", "" + isStoredProcedure);
parametersMap.put("gzip_result", "" + gzipResult);
parametersMap.put("fill_result_set_meta_data", "" + fillResultSetMetaData);
parametersMap.put("pretty_printing", "" + prettyPrinting);
parametersMap.put("max_rows", "" + maxRows);
// Add the statement parameters map
if (statementParameters != null) {
parametersMap.putAll(statementParameters);
}
trace("sql: " + sql);
trace("statement_parameters: " + statementParameters);
URL theUrl = new URL(url + action);
InputStream in = httpManager.callWithPost(theUrl, parametersMap);
return in;
} catch (Exception e) {
if (e instanceof AceQLException) {
throw (AceQLException) e;
} else {
throw new AceQLException(e.getMessage(), 0, e, null, httpManager.getHttpStatusCode());
}
}
}
/**
* Update the Map of callable OUT parameters using the result string in
* ResultAnalyzer
*
* @param resultAnalyzer the JSON container sent by the server afte the
* update
* @param callableOutParameters the OUT parameters to update after the execute.
* @throws AceQLException if server does not return awaited OUT parameters
*/
private static synchronized void updateOutParameters(ResultAnalyzer resultAnalyzer,
Map callableOutParameters) throws AceQLException {
// Immediate return in case no out parameters set by user
if (callableOutParameters == null || callableOutParameters.isEmpty()) {
return;
}
Map parametersOutPerIndexAfterExecute = resultAnalyzer.getParametersOutPerIndex();
// Immediate return in case no parameters. This can not happen if
// callableOutParameters is not empty
if (parametersOutPerIndexAfterExecute == null || parametersOutPerIndexAfterExecute.isEmpty()) {
throw new AceQLException("No stored procedure out parameters returned by AceQL Server", 4, null, null,
HttpURLConnection.HTTP_OK);
}
for (Integer key : callableOutParameters.keySet()) {
if (parametersOutPerIndexAfterExecute.containsKey(key)) {
SqlParameter sqlParameter = callableOutParameters.get(key);
SqlParameter sqlParameterNew = new SqlParameter(key, sqlParameter.getParameterType(),
parametersOutPerIndexAfterExecute.get(key));
// Put back new value
callableOutParameters.put(key, sqlParameterNew);
}
}
}
/**
* Calls /blob_upload API.
*
* @param blobId the Blob/Clob Id
* @param inputStream the local Blob/Clob local file input stream
* @throws AceQLException if any Exception occurs
*/
public void blobUpload(String blobId, InputStream inputStream, long totalLength) throws AceQLException {
try {
if (blobId == null) {
Objects.requireNonNull(blobId, "blobId cannot be null!");
}
if (inputStream == null) {
Objects.requireNonNull(inputStream, "inputStream cannot be null!");
}
URL theURL = new URL(url + "blob_upload");
trace("request : " + theURL);
HttpURLConnection conn = null;
if (httpManager.getProxy() == null) {
conn = (HttpURLConnection) theURL.openConnection();
} else {
conn = (HttpURLConnection) theURL.openConnection(httpManager.getProxy());
}
conn.setRequestProperty("Accept-Charset", "UTF-8");
conn.setRequestMethod("POST");
conn.setReadTimeout(readTimeout);
conn.setDoOutput(true);
final MultipartUtility http = new MultipartUtility(theURL, conn, connectTimeout, progress, cancelled,
totalLength);
Map parameters = new HashMap();
parameters.put("blob_id", blobId);
for (Map.Entry entry : parameters.entrySet()) {
// trace(entry.getKey() + "/" + entry.getValue());
http.addFormField(entry.getKey(), entry.getValue());
}
// Server needs a unique file name to store the blob
String fileName = UUID.randomUUID().toString() + ".blob";
http.addFilePart("file", inputStream, fileName);
http.finish();
conn = http.getConnection();
// Analyze the error after request execution
int httpStatusCode = conn.getResponseCode();
String httpStatusMessage = conn.getResponseMessage();
trace("blob_id : " + blobId);
trace("httpStatusCode : " + httpStatusCode);
trace("httpStatusMessage: " + httpStatusMessage);
InputStream inConn = null;
String result;
if (httpStatusCode == HttpURLConnection.HTTP_OK) {
inConn = conn.getInputStream();
} else {
inConn = conn.getErrorStream();
}
result = null;
if (inConn != null) {
ByteArrayOutputStream out = new ByteArrayOutputStream();
IOUtils.copy(inConn, out);
result = out.toString("UTF-8");
}
ResultAnalyzer resultAnalyzer = new ResultAnalyzer(result, httpStatusCode, httpStatusMessage);
if (!resultAnalyzer.isStatusOk()) {
throw new AceQLException(resultAnalyzer.getErrorMessage(), resultAnalyzer.getErrorType(), null,
resultAnalyzer.getStackTrace(), httpStatusCode);
}
} catch (Exception e) {
if (e instanceof AceQLException) {
throw (AceQLException) e;
} else {
throw new AceQLException(e.getMessage(), 0, e, null, httpManager.getHttpStatusCode());
}
}
}
/**
* Calls /get_blob_length API
*
* @param blobId the Blob/Clob Id
* @return the server Blob/Clob length
* @throws AceQLException if any Exception occurs
*/
public long getBlobLength(String blobId) throws AceQLException {
AceQLBlobApi aceQLBlobApi = new AceQLBlobApi(httpManager, url);
return aceQLBlobApi.getBlobLength(blobId);
}
/**
* Calls /blob_download API
*
* @param blobId the Blob/Clob Id
* @return the input stream containing either an error, or the result set in
* JSON format. See user documentation.
* @throws AceQLException if any Exception occurs
*/
public InputStream blobDownload(String blobId) throws AceQLException {
AceQLBlobApi aceQLBlobApi = new AceQLBlobApi(httpManager, url);
return aceQLBlobApi.blobDownload(blobId);
}
public InputStream dbSchemaDownload(String format, String tableName) throws AceQLException {
AceQLMetadataApi aceQLMetadataApi = new AceQLMetadataApi(httpManager, url);
return aceQLMetadataApi.dbSchemaDownload(format, tableName);
}
public JdbcDatabaseMetaDataDto getDbMetadata() throws AceQLException {
AceQLMetadataApi aceQLMetadataApi = new AceQLMetadataApi(httpManager, url);
return aceQLMetadataApi.getDbMetadata();
}
public TableNamesDto getTableNames(String tableType) throws AceQLException {
AceQLMetadataApi aceQLMetadataApi = new AceQLMetadataApi(httpManager, url);
return aceQLMetadataApi.getTableNames(tableType);
}
public TableDto getTable(String tableName) throws AceQLException {
AceQLMetadataApi aceQLMetadataApi = new AceQLMetadataApi(httpManager, url);
return aceQLMetadataApi.getTable(tableName);
}
public InputStream callDatabaseMetaDataMethod(String jsonDatabaseMetaDataMethodCallDTO) throws AceQLException {
AceQLMetadataApi aceQLMetadataApi = new AceQLMetadataApi(httpManager, url);
return aceQLMetadataApi.callDatabaseMetaDataMethod(jsonDatabaseMetaDataMethodCallDTO);
}
public int getHttpStatusCode() {
return httpManager.getHttpStatusCode();
}
/**
* @return the httpStatusMessage
*/
public String getHttpStatusMessage() {
return httpManager.getHttpStatusMessage();
}
public boolean isPrettyPrinting() {
return prettyPrinting;
}
}