com.pivotal.gemfirexd.internal.client.am.Cursor Maven / Gradle / Ivy
Show all versions of snappydata-store-client Show documentation
/*
Derby - Class com.pivotal.gemfirexd.internal.client.am.Cursor
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.
*/
/*
* Changes for GemFireXD distributed data platform (some marked by "GemStone changes")
*
* Portions Copyright (c) 2010-2015 Pivotal Software, Inc. 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. See accompanying
* LICENSE file.
*/
package com.pivotal.gemfirexd.internal.client.am;
// GemStone changes BEGIN
import com.gemstone.gemfire.internal.shared.ClientSharedData;
import com.gemstone.gemfire.internal.shared.ClientSharedUtils;
import com.pivotal.gemfirexd.internal.iapi.reference.JDBC40Translation;
import java.io.IOException;
import java.io.InputStream;
import java.io.ObjectStreamClass;
// GemStone changes END
import com.pivotal.gemfirexd.internal.shared.common.reference.SQLState;
import java.nio.charset.Charset;
import java.sql.SQLException;
import java.io.BufferedInputStream;
import java.io.BufferedReader;
import java.io.ByteArrayInputStream;
import java.io.ObjectInputStream;
import java.io.UnsupportedEncodingException;
// When we calculate column offsets make sure we calculate the correct offsets for double byte charactr5er data
// length from server is number of chars, not bytes
// Direct byte-level converters are called directly by this class, cross converters are deferred to the CrossConverters class.
public abstract class Cursor {
protected Agent agent_;
//-----------------------------varchar representations------------------------
public final static int STRING = 0;
public final static int VARIABLE_STRING = 2; // uses a 2-byte length indicator
public final static int VARIABLE_SHORT_STRING = 1; // aka Pascal L; uses a 1-byte length indicator
public final static int NULL_TERMINATED_STRING = 3;
public final static int BYTES = 4;
public final static int VARIABLE_BYTES = 5;
public final static int VARIABLE_SHORT_BYTES = 6;
public final static int NULL_TERMINATED_BYTES = 7;
public final static int SBCS_CLOB = 8;
public final static int MBCS_CLOB = 9;
public final static int DBCS_CLOB = 10;
//-----------------------------internal state---------------------------------
//-------------Structures for holding and scrolling the data -----------------
public byte[] dataBuffer_;
public java.io.ByteArrayOutputStream dataBufferStream_;
public int position_; // This is the read head
public int lastValidBytePosition_;
public boolean hasLobs_; // is there at least one LOB column?
// Current row positioning
protected int currentRowPosition_;
private int nextRowPosition_;
// Let's new up a 2-dimensional array based on fetch-size and reuse so that
protected int[] columnDataPosition_;
// This is the actual, computed lengths of varchar fields, not the max length from query descriptor or DA
protected int[] columnDataComputedLength_;
// populate this for
// All the data is in the buffers, but user may not have necessarily stepped to the last row yet.
// This flag indicates that the server has returned all the rows, and is positioned
// after last, for both scrollable and forward-only cursors.
// For singleton cursors, this memeber will be set to true as soon as next is called.
private boolean allRowsReceivedFromServer_;
// Total number of rows read so far.
// This should never exceed this.statement.maxRows
int rowsRead_;
// Maximum column size limit in bytes.
int maxFieldSize_ = 0;
// Row positioning for all cached rows
// For scrollable result sets, these lists hold the offsets into the cached rowset buffer for each row of data.
protected java.util.ArrayList columnDataPositionCache_ = new java.util.ArrayList();
protected java.util.ArrayList columnDataLengthCache_ = new java.util.ArrayList();
protected java.util.ArrayList columnDataIsNullCache_ = new java.util.ArrayList();
public java.util.ArrayList isUpdateDeleteHoleCache_ = new java.util.ArrayList();
public boolean isUpdateDeleteHole_;
// State to keep track of when a row has been updated,
// cf. corresponding set and get accessors. Only implemented for
// scrollable updatable insensitive result sets for now.
private boolean isRowUpdated_;
// GemStone changes BEGIN
final static public Charset ISO_8859_1 = Charset.forName("ISO-8859-1");
final static public java.lang.Boolean ROW_IS_NULL = Boolean.TRUE;
final static public java.lang.Boolean ROW_IS_NOT_NULL = Boolean.FALSE;
/* (original code)
final static public java.lang.Boolean ROW_IS_NULL = new Boolean(true);
final static public java.lang.Boolean ROW_IS_NOT_NULL = new Boolean(false);
*/
// GemStone changes END
java.util.Calendar recyclableCalendar_ = null;
// For the net, this data comes from the query descriptor.
public int[] jdbcTypes_;
public int columns_;
public boolean[] nullable_;
public String[] charsetName_;
public boolean[] isNull_;
public int[] fdocaLength_; // this is the max length for
//----------------------------------------------------------------------------
public int[] ccsid_;
char[] charBuffer_;
// GemStone changes BEGIN
// cached so that can be checked for validity in case of failover
protected final CallableLocatorProcedures locatorProcs_;
// GemStone changes END
//---------------------constructors/finalizer---------------------------------
public Cursor(Agent agent) {
agent_ = agent;
isRowUpdated_ = false;
dataBufferStream_ = new java.io.ByteArrayOutputStream();
// GemStone changes BEGIN
this.locatorProcs_ = agent.connection_.locatorProcedureCall();
// GemStone changes END
}
public Cursor(Agent agent, byte[] dataBuffer) {
this(agent);
dataBuffer_ = dataBuffer;
setAllRowsReceivedFromServer(false);
}
public void setNumberOfColumns(int numberOfColumns) {
columnDataPosition_ = new int[numberOfColumns];
columnDataComputedLength_ = new int[numberOfColumns];
columns_ = numberOfColumns;
nullable_ = new boolean[numberOfColumns];
charsetName_ = new String[numberOfColumns];
ccsid_ = new int[numberOfColumns];
isNull_ = new boolean[numberOfColumns];
jdbcTypes_ = new int[numberOfColumns];
}
/**
* Makes the next row the current row. Returns true if the current
* row position is a valid row position.
*
* @param allowServerFetch if false, don't fetch more data from
* the server even if more data is needed
* @return true
if current row position is valid
* @exception SqlException if an error occurs
*/
protected boolean stepNext(boolean allowServerFetch) throws SqlException {
// local variable usd to hold the returned value from calculateColumnOffsetsForRow()
boolean rowPositionIsValid = true;
// reset lob data
// clears out Cursor.lobs_ calculated for the current row when cursor is moved.
clearLobData_();
// mark the start of a new row.
makeNextRowPositionCurrent();
// Moving out of the hole, set isUpdateDeleteHole to false
isUpdateDeleteHole_ = false;
isRowUpdated_ = false;
// Drive the CNTQRY outside of calculateColumnOffsetsForRow() if the dataBuffer_
// contains no data since it has no abilities to handle replies other than
// the QRYDTA, i.e. ENDQRYRM when the result set contains no more rows.
while (!dataBufferHasUnprocessedData()) {
if (allRowsReceivedFromServer_) {
return false;
}
getMoreData_();
}
// The parameter passed in here is used as an index into the cached rowset for
// scrollable cursors, for the arrays to be reused. It is not used for forward-only
// cursors, so just pass in 0.
rowPositionIsValid = calculateColumnOffsetsForRow_(0, allowServerFetch);
markNextRowPosition();
return rowPositionIsValid;
}
/**
* Makes the next row the current row. Returns true if the current
* row position is a valid row position.
*
* @return true
if current row position is valid
* @exception SqlException if an error occurs
*/
public boolean next() throws SqlException {
return stepNext(true);
}
//--------------------------reseting cursor state-----------------------------
/**
* Set the value of value of allRowsReceivedFromServer_.
*
* @param b a boolean
value indicating whether all
* rows are received from the server
*/
public void setAllRowsReceivedFromServer(boolean b) {
allRowsReceivedFromServer_ = b;
}
/**
* Return true
if all rows are received from the
* server.
*
* @return true
if all rows are received from the
* server.
*/
public final boolean allRowsReceivedFromServer() {
return allRowsReceivedFromServer_;
}
public final boolean currentRowPositionIsEqualToNextRowPosition() {
return (currentRowPosition_ == nextRowPosition_);
}
// reset the beginning and ending position in the data buffer to 0
// reset the currentRowPosition and nextRowPosition to 0
// reset lastRowReached and sqlcode100Received to false
// clear the column data offsets cache
public final void resetDataBuffer() {
position_ = 0;
lastValidBytePosition_ = 0;
currentRowPosition_ = 0;
nextRowPosition_ = 0;
setAllRowsReceivedFromServer(false);
dataBufferStream_.reset();
}
public final boolean dataBufferHasUnprocessedData() {
return (lastValidBytePosition_ - position_) > 0;
}
/**
* Calculate the column offsets for a row.
*
* @param row row index
* @param allowServerFetch if true, allow fetching more data from
* server
* @return true
if the current row position is a
* valid row position.
* @exception SqlException
* @exception DisconnectException
*/
protected abstract boolean
calculateColumnOffsetsForRow_(int row, boolean allowServerFetch)
throws SqlException, DisconnectException;
protected abstract void clearLobData_();
protected abstract void getMoreData_() throws SqlException;
// Associate a new underlying COM or SQLDA output data buffer for this converter.
public final void setBuffer(byte[] dataBuffer) {
dataBuffer_ = dataBuffer;
}
public final void setIsUpdataDeleteHole(int row, boolean isRowNull) {
isUpdateDeleteHole_ = isRowNull;
Boolean nullIndicator = (isUpdateDeleteHole_ == true) ? ROW_IS_NULL : ROW_IS_NOT_NULL;
if (isUpdateDeleteHoleCache_.size() == row) {
isUpdateDeleteHoleCache_.add(nullIndicator);
} else {
isUpdateDeleteHoleCache_.set(row, nullIndicator);
}
}
/**
* Keep track of updated status for this row.
*
* @param isRowUpdated true if row has been updated
*
* @see Cursor#getIsRowUpdated
*/
public final void setIsRowUpdated(boolean isRowUpdated) {
isRowUpdated_ = isRowUpdated;
}
/**
* Get updated status for this row.
* Minion of ResultSet#rowUpdated.
*
* @see Cursor#setIsRowUpdated
*/
public final boolean getIsRowUpdated() {
return isRowUpdated_;
}
/**
* Get deleted status for this row.
* Minion of ResultSet#rowDeleted.
*
* @see Cursor#setIsUpdataDeleteHole
*/
public final boolean getIsUpdateDeleteHole() {
return isUpdateDeleteHole_;
}
//---------------------------cursor positioning-------------------------------
final int getPosition() {
return position_;
}
final void setPosition(int newPosition) {
position_ = newPosition;
}
public final void markCurrentRowPosition() {
currentRowPosition_ = position_;
}
public final void markNextRowPosition() {
nextRowPosition_ = position_;
}
public final void makeNextRowPositionCurrent() {
currentRowPosition_ = nextRowPosition_;
}
final void repositionCursorToCurrentRow() {
position_ = currentRowPosition_;
}
final void repositionCursorToNextRow() {
position_ = nextRowPosition_;
}
public final byte[] getDataBuffer() {
return dataBuffer_;
}
public final int getDataBufferLength() {
return dataBuffer_.length;
}
public final int getLastValidBytePosition() {
return lastValidBytePosition_;
}
// This tracks the total number of rows read into the client side buffer for
// this result set, irregardless of scrolling.
// Per jdbc semantics, this should never exceed statement.maxRows.
// This event should be generated in the materialized cursor's implementation
// of calculateColumnOffsetsForRow().
public final void incrementRowsReadEvent() {
rowsRead_++;
}
//------- the following getters are called on known column types -------------
// Direct conversions only, cross conversions are handled by another set of getters.
// Build a Java short from a 2-byte signed binary representation.
private final short get_SMALLINT(int column) {
return com.pivotal.gemfirexd.internal.client.am.SignedBinary.getShort(dataBuffer_,
columnDataPosition_[column - 1]);
}
// Build a Java int from a 4-byte signed binary representation.
protected final int get_INTEGER(int column) {
return com.pivotal.gemfirexd.internal.client.am.SignedBinary.getInt(dataBuffer_,
columnDataPosition_[column - 1]);
}
// Build a Java long from an 8-byte signed binary representation.
private final long get_BIGINT(int column) {
return com.pivotal.gemfirexd.internal.client.am.SignedBinary.getLong(dataBuffer_,
columnDataPosition_[column - 1]);
}
// Build a Java float from a 4-byte floating point representation.
private final float get_FLOAT(int column) {
return com.pivotal.gemfirexd.internal.client.am.FloatingPoint.getFloat(dataBuffer_,
columnDataPosition_[column - 1]);
}
// Build a Java double from an 8-byte floating point representation.
private final double get_DOUBLE(int column) {
return com.pivotal.gemfirexd.internal.client.am.FloatingPoint.getDouble(dataBuffer_,
columnDataPosition_[column - 1]);
}
// Build a java.math.BigDecimal from a fixed point decimal byte representation.
private final java.math.BigDecimal get_DECIMAL(int column) throws SqlException {
try {
return com.pivotal.gemfirexd.internal.client.am.Decimal.getBigDecimal(dataBuffer_,
columnDataPosition_[column - 1],
getColumnPrecision(column - 1),
getColumnScale(column - 1));
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"DECIMAL", "java.math.BigDecimal",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
// Build a Java double from a fixed point decimal byte representation.
private final double getDoubleFromDECIMAL(int column) throws SqlException {
try {
return com.pivotal.gemfirexd.internal.client.am.Decimal.getDouble(dataBuffer_,
columnDataPosition_[column - 1],
getColumnPrecision(column - 1),
getColumnScale(column - 1));
} catch (java.lang.IllegalArgumentException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.LANG_OUTSIDE_RANGE_FOR_DATATYPE),
"double", getColumnLabel(column) /* GemStoneAddition */, e);
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"DECIMAL", "double",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
// Build a Java long from a fixed point decimal byte representation.
private final long getLongFromDECIMAL(int column) throws SqlException {
try {
return com.pivotal.gemfirexd.internal.client.am.Decimal.getLong(dataBuffer_,
columnDataPosition_[column - 1],
getColumnPrecision(column - 1),
getColumnScale(column - 1));
} catch (java.lang.IllegalArgumentException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.LANG_OUTSIDE_RANGE_FOR_DATATYPE),
"long", getColumnLabel(column) /* GemStoneAddition */, e);
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"DECIMAL", "long",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
// Build a Java String from a database VARCHAR or LONGVARCHAR field.
//
// Depending on the ccsid, length is the number of chars or number of bytes.
// For 2-byte character ccsids, length is the number of characters,
// for all other cases length is the number of bytes.
// The length does not include the null terminator.
private final String getVARCHAR(int column) throws SqlException {
String tempString = null;
try {
if (ccsid_[column - 1] == 1200) {
return getStringWithoutConvert(columnDataPosition_[column - 1] + 2, columnDataComputedLength_[column - 1] - 2);
}
// check for null encoding is needed because the net layer
// will no longer throw an exception if the server didn't specify
// a mixed or double byte ccsid (ccsid = 0). this check for null in the
// cursor is only required for types which can have mixed or double
// byte ccsids.
if (charsetName_[column - 1] == null) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId(SQLState.CHARACTER_CONVERTER_NOT_AVAILABLE));
}
tempString = new String(dataBuffer_,
columnDataPosition_[column - 1] + 2,
columnDataComputedLength_[column - 1] - 2,
charsetName_[column - 1]);
return (maxFieldSize_ == 0) ? tempString :
tempString.substring(0, java.lang.Math.min(maxFieldSize_, tempString.length()));
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"VARCHAR", "String",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
// Build a Java String from a database CHAR field.
private final String getCHAR(int column) throws SqlException {
String tempString = null;
if (ccsid_[column - 1] == 1200) {
return getStringWithoutConvert(columnDataPosition_[column - 1], columnDataComputedLength_[column - 1]);
}
try {
// check for null encoding is needed because the net layer
// will no longer throw an exception if the server didn't specify
// a mixed or double byte ccsid (ccsid = 0). this check for null in the
// cursor is only required for types which can have mixed or double
// byte ccsids.
if (charsetName_[column - 1] == null) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId(SQLState.CHARACTER_CONVERTER_NOT_AVAILABLE));
}
tempString = new String(dataBuffer_,
columnDataPosition_[column - 1],
columnDataComputedLength_[column - 1],
charsetName_[column - 1]);
return (maxFieldSize_ == 0) ? tempString :
tempString.substring(0, java.lang.Math.min(maxFieldSize_, tempString.length()));
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"CHAR", "String",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
// Build a JDBC Date object from the DERBY ISO DATE field.
private final java.sql.Date getDATE(int column) throws SqlException {
try {
return com.pivotal.gemfirexd.internal.client.am.DateTime.dateBytesToDate(dataBuffer_,
columnDataPosition_[column - 1],
getRecyclableCalendar(),
charsetName_[column - 1]);
}catch (UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId(SQLState.UNSUPPORTED_ENCODING),
"DATE", "java.sql.Date",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
// Build a JDBC Time object from the DERBY ISO TIME field.
private final java.sql.Time getTIME(int column) throws SqlException {
try {
return com.pivotal.gemfirexd.internal.client.am.DateTime.timeBytesToTime(dataBuffer_,
columnDataPosition_[column - 1],
getRecyclableCalendar(),
charsetName_[column - 1]);
} catch (UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId(SQLState.UNSUPPORTED_ENCODING),
"TIME", "java.sql.Time",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
// Build a JDBC Timestamp object from the DERBY ISO TIMESTAMP field.
private final java.sql.Timestamp getTIMESTAMP(int column) throws SqlException {
try {
return com.pivotal.gemfirexd.internal.client.am.DateTime.timestampBytesToTimestamp(
dataBuffer_,
columnDataPosition_[column - 1],
getRecyclableCalendar(),
charsetName_[column - 1]);
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId(SQLState.UNSUPPORTED_ENCODING),
"TIMESTAMP", "java.sql.Timestamp",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
// Build a JDBC Timestamp object from the DERBY ISO DATE field.
private final java.sql.Timestamp getTimestampFromDATE(int column) throws SqlException {
try {
return com.pivotal.gemfirexd.internal.client.am.DateTime.dateBytesToTimestamp(dataBuffer_,
columnDataPosition_[column - 1],
getRecyclableCalendar(),
charsetName_[column -1]);
} catch (UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId(SQLState.UNSUPPORTED_ENCODING),
"DATE", "java.sql.Timestamp",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
// Build a JDBC Timestamp object from the DERBY ISO TIME field.
private final java.sql.Timestamp getTimestampFromTIME(int column) throws SqlException {
try {
return com.pivotal.gemfirexd.internal.client.am.DateTime.timeBytesToTimestamp(dataBuffer_,
columnDataPosition_[column - 1],
getRecyclableCalendar(),
charsetName_[column -1]);
} catch (UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId(SQLState.UNSUPPORTED_ENCODING),
"TIME", "java.sql.Timestamp",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
// Build a JDBC Date object from the DERBY ISO TIMESTAMP field.
private final java.sql.Date getDateFromTIMESTAMP(int column) throws SqlException {
try {
return com.pivotal.gemfirexd.internal.client.am.DateTime.timestampBytesToDate(dataBuffer_,
columnDataPosition_[column - 1],
getRecyclableCalendar(),
charsetName_[column -1]);
} catch (UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId(SQLState.UNSUPPORTED_ENCODING),
"TIMESTAMP", "java.sql.Date",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
// Build a JDBC Time object from the DERBY ISO TIMESTAMP field.
private final java.sql.Time getTimeFromTIMESTAMP(int column) throws SqlException {
try {
return com.pivotal.gemfirexd.internal.client.am.DateTime.timestampBytesToTime(dataBuffer_,
columnDataPosition_[column - 1],
getRecyclableCalendar(),
charsetName_[column -1]);
} catch (UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId(SQLState.UNSUPPORTED_ENCODING),
"TIMESTAMP", "java.sql.Time",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
private final String getStringFromDATE(int column) throws SqlException {
return getDATE(column).toString();
}
// Build a string object from the DERBY byte TIME representation.
private final String getStringFromTIME(int column) throws SqlException {
return getTIME(column).toString();
}
// Build a string object from the DERBY byte TIMESTAMP representation.
private final String getStringFromTIMESTAMP(int column) throws SqlException {
return getTIMESTAMP(column).toString();
}
// Extract bytes from a database java.sql.Types.BINARY field.
// This is the DERBY type CHAR(n) FOR BIT DATA.
private final byte[] get_CHAR_FOR_BIT_DATA(int column) throws SqlException {
// There is no limit to the size of a column if maxFieldSize is zero.
// Otherwise, use the smaller of maxFieldSize and the actual column length.
int columnLength = (maxFieldSize_ == 0) ? columnDataComputedLength_[column - 1] :
java.lang.Math.min(maxFieldSize_, columnDataComputedLength_[column - 1]);
byte[] bytes = new byte[columnLength];
System.arraycopy(dataBuffer_, columnDataPosition_[column - 1], bytes, 0, columnLength);
return bytes;
}
// Extract bytes from a database java.sql.Types.VARBINARY or LONGVARBINARY field.
// This includes the DERBY types:
// VARCHAR(n) FOR BIT DATA
// LONG VARCHAR(n) FOR BIT DATA
private final byte[] get_VARCHAR_FOR_BIT_DATA(int column) throws SqlException {
byte[] bytes;
int columnLength = 0;
columnLength = (maxFieldSize_ == 0) ? columnDataComputedLength_[column - 1] - 2 :
java.lang.Math.min(maxFieldSize_, columnDataComputedLength_[column - 1] - 2);
bytes = new byte[columnLength];
System.arraycopy(dataBuffer_, columnDataPosition_[column - 1] + 2, bytes, 0, bytes.length);
return bytes;
}
// Deserialize a UDT from a database java.sql.Types.JAVA_OBJECT field.
// This is used for user defined types.
private final Object get_UDT(int column) throws SqlException {
byte[] bytes;
int columnLength = 0;
columnLength = (maxFieldSize_ == 0) ? columnDataComputedLength_[column - 1] - 2 :
java.lang.Math.min(maxFieldSize_, columnDataComputedLength_[column - 1] - 2);
bytes = new byte[columnLength];
System.arraycopy(dataBuffer_, columnDataPosition_[column - 1] + 2, bytes, 0, bytes.length);
try {
ByteArrayInputStream bais = new ByteArrayInputStream( bytes );
// GemStone changes BEGIN
ObjectInputStream ois = new ClientSharedUtils
.ThreadContextObjectInputStream(bais);
/* (original code)
ObjectInputStream ois = new ObjectInputStream( bais );
*/
// GemStone changes END
return ois.readObject();
}
catch (Exception e)
{
throw new SqlException
(
agent_.logWriter_,
new ClientMessageId (SQLState.NET_MARSHALLING_UDT_ERROR),
e.getMessage(),
e
);
}
}
// GemStone changes BEGIN
protected abstract String getColumnLabel(int column) throws SqlException;
private final byte[] get_UDT_bytes(int column) throws SqlException {
final Object o = get_UDT(column);
if (o == null) {
return null;
}
if (o instanceof byte[]) {
return (byte[])o;
}
else {
throw getUDTTypeConversionException(column, o, "byte[]");
}
}
private final byte[] get_UDT_bytes(int column, Charset charset)
throws SqlException {
final Object o = get_UDT(column);
if (o == null) {
return null;
}
if (o instanceof byte[]) {
return (byte[])o;
}
else if (o instanceof String) {
// try {
return ((String)o).getBytes(charset);
/*
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_, new ClientMessageId(
SQLState.UNSUPPORTED_ENCODING), "UDT with java type "
+ o.getClass().getName(), charset,
getColumnLabel(column) /* GemStoneAddition *, e);
}
*/
}
else {
throw getUDTTypeConversionException(column, o, "String");
}
}
private final SqlException getUDTTypeConversionException(int column,
Object o, String convertType) {
return new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column - 1] + " java type "
+ o.getClass().getName(), convertType);
}
// GemStone changes END
/**
* Instantiate an instance of Calendar that can be re-used for getting
* Time, Timestamp, and Date values from this cursor. Assumption is
* that all users of the returned Calendar object will clear it as
* appropriate before using it.
*/
private java.util.Calendar getRecyclableCalendar()
{
if (recyclableCalendar_ == null)
recyclableCalendar_ = ClientSharedData.getDefaultCalendar();
return recyclableCalendar_;
}
/**
* Returns a reference to the locator procedures.
*
* These procedures are used to operate on large objects referenced on the
* server by locators.
*
* @return The locator procedures object.
*/
CallableLocatorProcedures getLocatorProcedures() {
// GemStone changes BEGIN
return this.locatorProcs_;
/* (original code)
return agent_.connection_.locatorProcedureCall();
*/
// GemStone changes END
}
/**
* Returns the locator for the specified LOB column, or {@link
* Lob#INVALID_LOCATOR} if the LOB was not sent as a locator. The server
* may send the LOB value instead of a locator if it is running an old
* version which doesn't support locators, or if the database it accesses
* is soft upgraded from a version that doesn't have the necessary
* stored procedures for locator support.
*
* Note that this method cannot be invoked on a LOB column that is NULL.
*
* @param column 1-based column index
* @return A positive integer locator if valid, {@link Lob#INVALID_LOCATOR}
* otherwise.
*/
protected abstract int locator(int column);
/**
* Returns a {@code Blob} object.
*
* @param column 1-based column index
* @param agent associated agent
* @param toBePublished whether the Blob will be published to the user
* @return A {@linkplain java.sql.Blob Blob} object.
* @throws SqlException if getting the {@code Blob} fails
*/
public abstract Blob getBlobColumn_(int column, Agent agent,
boolean toBePublished)
throws SqlException;
/**
* Returns a {@code Clob} object.
*
* @param column 1-based column index
* @param agent associated agent
* @param toBePublished whether the Clob will be published to the user
* @return A {@linkplain java.sql.Clob Clob} object.
* @throws SqlException if getting the {@code Clob} fails
*/
public abstract Clob getClobColumn_(int column, Agent agent,
boolean toBePublished)
throws SqlException;
// get the raw clob bytes, without translation. dataOffset must be int[1]
abstract public byte[] getClobBytes_(int column, int[] dataOffset /*output*/) throws SqlException;
//------- the following getters perform any necessary cross-conversion _------
final boolean getBoolean(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.SMALLINT:
return agent_.crossConverters_.getBooleanFromShort(get_SMALLINT(column));
case java.sql.Types.INTEGER:
return agent_.crossConverters_.getBooleanFromInt(get_INTEGER(column));
case java.sql.Types.BIGINT:
return agent_.crossConverters_.getBooleanFromLong(get_BIGINT(column));
case java.sql.Types.REAL:
return agent_.crossConverters_.getBooleanFromFloat(get_FLOAT(column));
case java.sql.Types.DOUBLE:
return agent_.crossConverters_.getBooleanFromDouble(get_DOUBLE(column));
case java.sql.Types.DECIMAL:
// For performance we don't materialize the BigDecimal, but convert directly from decimal bytes to a long.
return agent_.crossConverters_.getBooleanFromLong(getLongFromDECIMAL(column));
case java.sql.Types.CHAR:
return agent_.crossConverters_.getBooleanFromString(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return agent_.crossConverters_.getBooleanFromString(getVARCHAR(column));
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof Boolean) {
return ((Boolean)o).booleanValue();
}
throw getUDTTypeConversionException(column, o, "boolean");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "boolean");
}
}
final byte getByte(int column) throws SqlException {
// This needs to be changed to use jdbcTypes[]
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.SMALLINT:
return agent_.crossConverters_.getByteFromShort(get_SMALLINT(column));
case java.sql.Types.INTEGER:
return agent_.crossConverters_.getByteFromInt(get_INTEGER(column));
case java.sql.Types.BIGINT:
return agent_.crossConverters_.getByteFromLong(get_BIGINT(column));
case java.sql.Types.REAL:
return agent_.crossConverters_.getByteFromFloat(get_FLOAT(column));
case java.sql.Types.DOUBLE:
return agent_.crossConverters_.getByteFromDouble(get_DOUBLE(column));
case java.sql.Types.DECIMAL:
// For performance we don't materialize the BigDecimal, but convert directly from decimal bytes to a long.
return agent_.crossConverters_.getByteFromLong(getLongFromDECIMAL(column));
case java.sql.Types.CHAR:
return agent_.crossConverters_.getByteFromString(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return agent_.crossConverters_.getByteFromString(getVARCHAR(column));
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof Number) {
return ((Number)o).byteValue();
}
throw getUDTTypeConversionException(column, o, "byte");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "byte");
}
}
final short getShort(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.SMALLINT:
return get_SMALLINT(column);
case java.sql.Types.INTEGER:
return agent_.crossConverters_.getShortFromInt(get_INTEGER(column));
case java.sql.Types.BIGINT:
return agent_.crossConverters_.getShortFromLong(get_BIGINT(column));
case java.sql.Types.REAL:
return agent_.crossConverters_.getShortFromFloat(get_FLOAT(column));
case java.sql.Types.DOUBLE:
return agent_.crossConverters_.getShortFromDouble(get_DOUBLE(column));
case java.sql.Types.DECIMAL:
// For performance we don't materialize the BigDecimal, but convert directly from decimal bytes to a long.
return agent_.crossConverters_.getShortFromLong(getLongFromDECIMAL(column));
case java.sql.Types.CHAR:
return agent_.crossConverters_.getShortFromString(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return agent_.crossConverters_.getShortFromString(getVARCHAR(column));
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof Number) {
return ((Number)o).shortValue();
}
throw getUDTTypeConversionException(column, o, "short");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "short");
}
}
final int getInt(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.SMALLINT:
return (int) get_SMALLINT(column);
case java.sql.Types.INTEGER:
return get_INTEGER(column);
case java.sql.Types.BIGINT:
return agent_.crossConverters_.getIntFromLong(get_BIGINT(column));
case java.sql.Types.REAL:
return agent_.crossConverters_.getIntFromFloat(get_FLOAT(column));
case java.sql.Types.DOUBLE:
return agent_.crossConverters_.getIntFromDouble(get_DOUBLE(column));
case java.sql.Types.DECIMAL:
// For performance we don't materialize the BigDecimal, but convert directly from decimal bytes to a long.
return agent_.crossConverters_.getIntFromLong(getLongFromDECIMAL(column));
case java.sql.Types.CHAR:
return agent_.crossConverters_.getIntFromString(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return agent_.crossConverters_.getIntFromString(getVARCHAR(column));
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof Number) {
return ((Number)o).intValue();
}
throw getUDTTypeConversionException(column, o, "int");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "int");
}
}
final long getLong(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.SMALLINT:
return (long) get_SMALLINT(column);
case java.sql.Types.INTEGER:
return (long) get_INTEGER(column);
case java.sql.Types.BIGINT:
return get_BIGINT(column);
case java.sql.Types.REAL:
return agent_.crossConverters_.getLongFromFloat(get_FLOAT(column));
case java.sql.Types.DOUBLE:
return agent_.crossConverters_.getLongFromDouble(get_DOUBLE(column));
case java.sql.Types.DECIMAL:
// For performance we don't materialize the BigDecimal, but convert directly from decimal bytes to a long.
return getLongFromDECIMAL(column);
case java.sql.Types.CHAR:
return agent_.crossConverters_.getLongFromString(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return agent_.crossConverters_.getLongFromString(getVARCHAR(column));
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof Number) {
return ((Number)o).longValue();
}
throw getUDTTypeConversionException(column, o, "long");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "long");
}
}
final float getFloat(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.REAL:
return get_FLOAT(column);
case java.sql.Types.DOUBLE:
return agent_.crossConverters_.getFloatFromDouble(get_DOUBLE(column));
case java.sql.Types.DECIMAL:
// For performance we don't materialize the BigDecimal, but convert directly from decimal bytes to a long.
return agent_.crossConverters_.getFloatFromDouble(getDoubleFromDECIMAL(column));
case java.sql.Types.SMALLINT:
return (float) get_SMALLINT(column);
case java.sql.Types.INTEGER:
return (float) get_INTEGER(column);
case java.sql.Types.BIGINT:
return (float) get_BIGINT(column);
case java.sql.Types.CHAR:
return agent_.crossConverters_.getFloatFromString(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return agent_.crossConverters_.getFloatFromString(getVARCHAR(column));
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof Number) {
return ((Number)o).floatValue();
}
throw getUDTTypeConversionException(column, o, "float");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "float");
}
}
final double getDouble(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.REAL:
double d = (double) get_FLOAT(column);
return d;
//return (double) get_FLOAT (column);
case java.sql.Types.DOUBLE:
return get_DOUBLE(column);
case java.sql.Types.DECIMAL:
// For performance we don't materialize the BigDecimal, but convert directly from decimal bytes to a long.
return getDoubleFromDECIMAL(column);
case java.sql.Types.SMALLINT:
return (double) get_SMALLINT(column);
case java.sql.Types.INTEGER:
return (double) get_INTEGER(column);
case java.sql.Types.BIGINT:
return (double) get_BIGINT(column);
case java.sql.Types.CHAR:
return agent_.crossConverters_.getDoubleFromString(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return agent_.crossConverters_.getDoubleFromString(getVARCHAR(column));
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof Number) {
return ((Number)o).doubleValue();
}
throw getUDTTypeConversionException(column, o, "double");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "double");
}
}
final java.math.BigDecimal getBigDecimal(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.DECIMAL:
return get_DECIMAL(column);
case java.sql.Types.REAL:
// Can't use the following commented out line because it changes precision of the result.
//return new java.math.BigDecimal (get_FLOAT (column));
float f = get_FLOAT(column);
return new java.math.BigDecimal(String.valueOf(f));
case java.sql.Types.DOUBLE:
// Can't use the following commented out line because it changes precision of the result.
return new java.math.BigDecimal(String.valueOf(get_DOUBLE(column)));
case java.sql.Types.SMALLINT:
return java.math.BigDecimal.valueOf(get_SMALLINT(column));
case java.sql.Types.INTEGER:
return java.math.BigDecimal.valueOf(get_INTEGER(column));
case java.sql.Types.BIGINT:
return java.math.BigDecimal.valueOf(get_BIGINT(column));
case java.sql.Types.CHAR:
return agent_.crossConverters_.getBigDecimalFromString(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return agent_.crossConverters_.getBigDecimalFromString(getVARCHAR(column));
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof java.math.BigDecimal) {
return (java.math.BigDecimal)o;
}
else if (o instanceof String) {
return new java.math.BigDecimal(((String)o).trim());
}
else if (o instanceof Number) {
return java.math.BigDecimal.valueOf(((Number)o).longValue());
}
throw getUDTTypeConversionException(column, o,
"java.math.BigDecimal");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "java.math.BigDecimal");
}
}
final java.sql.Date getDate(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.DATE:
return getDATE(column);
case java.sql.Types.TIMESTAMP:
return getDateFromTIMESTAMP(column);
case java.sql.Types.CHAR:
return agent_.crossConverters_.getDateFromString(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return agent_.crossConverters_.getDateFromString(getVARCHAR(column));
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof java.sql.Date) {
return (java.sql.Date)o;
}
else if (o instanceof java.sql.Timestamp) {
return new java.sql.Date(((java.sql.Timestamp)o).getTime());
}
throw getUDTTypeConversionException(column, o, "java.sql.Date");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "java.sql.Date");
}
}
final java.sql.Time getTime(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.TIME:
return getTIME(column);
case java.sql.Types.TIMESTAMP:
return getTimeFromTIMESTAMP(column);
case java.sql.Types.CHAR:
return agent_.crossConverters_.getTimeFromString(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return agent_.crossConverters_.getTimeFromString(getVARCHAR(column));
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof java.sql.Time) {
return (java.sql.Time)o;
}
else if (o instanceof java.sql.Timestamp) {
return new java.sql.Time(((java.sql.Timestamp)o).getTime());
}
throw getUDTTypeConversionException(column, o, "java.sql.Time");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "java.sql.Time");
}
}
final java.sql.Timestamp getTimestamp(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.TIMESTAMP:
return getTIMESTAMP(column);
case java.sql.Types.DATE:
return getTimestampFromDATE(column);
case java.sql.Types.TIME:
return getTimestampFromTIME(column);
case java.sql.Types.CHAR:
return agent_.crossConverters_.getTimestampFromString(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return agent_.crossConverters_.getTimestampFromString(getVARCHAR(column));
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof java.sql.Timestamp) {
return (java.sql.Timestamp)o;
}
else if (o instanceof java.sql.Date) {
return new java.sql.Timestamp(((java.sql.Date)o).getTime());
}
else if (o instanceof java.sql.Time) {
return new java.sql.Timestamp(((java.sql.Time)o).getTime());
}
throw getUDTTypeConversionException(column, o,
"java.sql.Timestamp");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "java.sql.Timestamp");
}
}
final String getString(int column) throws SqlException {
try {
String tempString = null;
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.CHAR:
return getCHAR(column);
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return getVARCHAR(column);
case java.sql.Types.SMALLINT:
return String.valueOf(get_SMALLINT(column));
case java.sql.Types.INTEGER:
return String.valueOf(get_INTEGER(column));
case java.sql.Types.BIGINT:
return String.valueOf(get_BIGINT(column));
case java.sql.Types.REAL:
return String.valueOf(get_FLOAT(column));
case java.sql.Types.DOUBLE:
return String.valueOf(get_DOUBLE(column));
case java.sql.Types.DECIMAL:
// We could get better performance here if we didn't materialize the BigDecimal,
// but converted directly from decimal bytes to a string.
return String.valueOf(get_DECIMAL(column));
case java.sql.Types.DATE:
return getStringFromDATE(column);
case java.sql.Types.TIME:
return getStringFromTIME(column);
case java.sql.Types.TIMESTAMP:
return getStringFromTIMESTAMP(column);
case Types.BINARY:
tempString =
agent_.crossConverters_.getStringFromBytes(get_CHAR_FOR_BIT_DATA(column));
return (maxFieldSize_ == 0) ? tempString :
tempString.substring(0, java.lang.Math.min(maxFieldSize_, tempString.length()));
case java.sql.Types.VARBINARY:
case java.sql.Types.LONGVARBINARY:
tempString =
agent_.crossConverters_.getStringFromBytes(get_VARCHAR_FOR_BIT_DATA(column));
return (maxFieldSize_ == 0) ? tempString :
tempString.substring(0, java.lang.Math.min(maxFieldSize_, tempString.length()));
case java.sql.Types.JAVA_OBJECT:
Object obj = get_UDT( column );
if ( obj == null ) { return null; }
else { return obj.toString(); }
case java.sql.Types.BLOB:
Blob b = getBlobColumn_(column, agent_, false);
tempString = agent_.crossConverters_.
getStringFromBytes(b.getBytes(1, (int) b.length()));
return tempString;
case java.sql.Types.CLOB:
case JDBC40Translation.JSON:
Clob c = getClobColumn_(column, agent_, false);
tempString = c.getSubString(1, (int) c.length());
return tempString;
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "String");
}
} catch ( SQLException se ) {
throw new SqlException(se);
}
}
final byte[] getBytes(int column) throws SqlException {
try {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.BINARY:
return get_CHAR_FOR_BIT_DATA(column);
case java.sql.Types.VARBINARY:
case java.sql.Types.LONGVARBINARY:
return get_VARCHAR_FOR_BIT_DATA(column);
case java.sql.Types.BLOB:
Blob b = getBlobColumn_(column, agent_, false);
byte[] bytes = b.getBytes(1, (int) b.length());
return bytes;
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
return get_UDT_bytes(column);
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "byte[]");
}
} catch ( SQLException se ) {
throw new SqlException(se);
}
}
public final java.io.InputStream getBinaryStream(int column)
throws SqlException
{
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.BINARY:
return new java.io.ByteArrayInputStream(get_CHAR_FOR_BIT_DATA(column));
case java.sql.Types.VARBINARY:
case java.sql.Types.LONGVARBINARY:
return new java.io.ByteArrayInputStream(get_VARCHAR_FOR_BIT_DATA(column));
case java.sql.Types.BLOB:
Blob b = getBlobColumn_(column, agent_, false);
if (b.isLocator()) {
BlobLocatorInputStream is
= new BlobLocatorInputStream(agent_.connection_, b);
return new BufferedInputStream(is);
} else {
return b.getBinaryStreamX();
}
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
return new java.io.ByteArrayInputStream(get_UDT_bytes(column));
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "java.io.InputStream");
}
}
public final java.io.InputStream getAsciiStream(int column)
throws SqlException
{
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.CLOB:
case JDBC40Translation.JSON:
Clob c = getClobColumn_(column, agent_, false);
if (c.isLocator()) {
ClobLocatorInputStream is
= new ClobLocatorInputStream(agent_.connection_, c);
return new BufferedInputStream(is);
} else {
return c.getAsciiStreamX();
}
case java.sql.Types.CHAR:
// try {
return new java.io.ByteArrayInputStream(getCHAR(column).getBytes(ISO_8859_1));
/*
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"CHAR", "java.io.InputStream",
getColumnLabel(column) /* GemStoneAddition *, e);
}
*/
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
// try {
return new java.io.ByteArrayInputStream(getVARCHAR(column).getBytes(ISO_8859_1));
/*
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"VARCHAR/LONGVARCHAR", "java.io.InputStream",
getColumnLabel(column) /* GemStoneAddition *, e);
}
*/
case java.sql.Types.BINARY:
return new java.io.ByteArrayInputStream(get_CHAR_FOR_BIT_DATA(column));
case java.sql.Types.VARBINARY:
case java.sql.Types.LONGVARBINARY:
return new java.io.ByteArrayInputStream(get_VARCHAR_FOR_BIT_DATA(column));
case java.sql.Types.BLOB:
return getBinaryStream(column);
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
return new java.io.ByteArrayInputStream(get_UDT_bytes(column, ISO_8859_1));
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "java.io.InputStream");
}
}
public final java.io.InputStream getUnicodeStream(int column) throws SqlException {
try {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.CLOB:
case JDBC40Translation.JSON:
{
Clob c = getClobColumn_(column, agent_, false);
String s = c.getSubString(1L, (int) c.length());
// try {
return new java.io.ByteArrayInputStream(s.getBytes(ClientSharedData.UTF8));
/*
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"CLOB", "UnicodeStream",
getColumnLabel(column) /* GemStoneAddition *, e);
}
*/
}
case java.sql.Types.CHAR:
{
// try {
return new java.io.ByteArrayInputStream(getCHAR(column).getBytes(ClientSharedData.UTF8));
/*
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"CHAR", "UnicodeStream",
getColumnLabel(column) /* GemStoneAddition *, e);
}
*/
}
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
// try {
return new java.io.ByteArrayInputStream(getVARCHAR(column).getBytes(ClientSharedData.UTF8));
/*
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"VARCHAR/LONGVARCHAR", "UnicodeStream",
getColumnLabel(column) /* GemStoneAddition *, e);
}
*/
case java.sql.Types.BINARY:
return new java.io.ByteArrayInputStream(get_CHAR_FOR_BIT_DATA(column));
case java.sql.Types.VARBINARY:
case java.sql.Types.LONGVARBINARY:
return new java.io.ByteArrayInputStream(get_VARCHAR_FOR_BIT_DATA(column));
case java.sql.Types.BLOB:
return getBinaryStream(column);
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
return new java.io.ByteArrayInputStream(get_UDT_bytes(column, ClientSharedData.UTF8));
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "UnicodeStream");
}
} catch ( SQLException se ) {
throw new SqlException(se);
}
}
public final java.io.Reader getCharacterStream(int column)
throws SqlException
{
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.CLOB:
case JDBC40Translation.JSON:
Clob c = getClobColumn_(column, agent_, false);
if (c.isLocator()) {
ClobLocatorReader reader
= new ClobLocatorReader(agent_.connection_, c);
return new BufferedReader(reader);
} else {
return c.getCharacterStreamX();
}
case java.sql.Types.CHAR:
return new java.io.StringReader(getCHAR(column));
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return new java.io.StringReader(getVARCHAR(column));
case java.sql.Types.BINARY:
try {
return new java.io.InputStreamReader(new java.io.ByteArrayInputStream(get_CHAR_FOR_BIT_DATA(column)), "UTF-16BE");
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"BINARY", "java.io.Reader",
getColumnLabel(column) /* GemStoneAddition */, e);
}
case java.sql.Types.VARBINARY:
case java.sql.Types.LONGVARBINARY:
try {
return new java.io.InputStreamReader(new java.io.ByteArrayInputStream(get_VARCHAR_FOR_BIT_DATA(column)), "UTF-16BE");
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"VARBINARY/LONGVARBINARY", "java.io.Reader",
getColumnLabel(column) /* GemStoneAddition */, e);
}
case java.sql.Types.BLOB:
try {
return new java.io.InputStreamReader(getBinaryStream(column),
"UTF-16BE");
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.UNSUPPORTED_ENCODING),
"BLOB", "java.io.Reader",
getColumnLabel(column) /* GemStoneAddition */, e);
}
// GemStone changes BEGIN
case java.sql.Types.JAVA_OBJECT:
final Object o = get_UDT(column);
if (o instanceof String) {
return new java.io.StringReader((String)o);
}
else if (o instanceof byte[]) {
try {
return new java.io.InputStreamReader(
new java.io.ByteArrayInputStream((byte[])o), "UTF-16BE");
} catch (java.io.UnsupportedEncodingException e) {
throw new SqlException(agent_.logWriter_, new ClientMessageId(
SQLState.UNSUPPORTED_ENCODING), "UDT with java type "
+ o.getClass().getName(), "java.io.Reader",
getColumnLabel(column) /* GemStoneAddition */, e);
}
}
throw getUDTTypeConversionException(column, o, "java.io.Reader");
// GemStone changes END
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "java.io.Reader");
}
}
public final java.sql.Blob getBlob(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case Types.BLOB:
return getBlobColumn_(column, agent_, true);
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "java.sql.Blob");
}
}
public final java.sql.Clob getClob(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case Types.CLOB:
return getClobColumn_(column, agent_, true);
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "java.sql.Clob");
}
}
public final java.sql.Array getArray(int column) throws SqlException {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.NOT_IMPLEMENTED),
"getArray(int)");
}
public final java.sql.Ref getRef(int column) throws SqlException {
throw new SqlException(agent_.logWriter_,
new ClientMessageId (SQLState.NOT_IMPLEMENTED), "getRef(int)");
}
public final Object getObject(int column) throws SqlException {
switch (jdbcTypes_[column - 1]) {
case java.sql.Types.SMALLINT:
// GemStone changes BEGIN
return (int)get_SMALLINT(column); // See Table 4 in JDBC 1 spec (pg. 932 in jdbc book)
case java.sql.Types.INTEGER:
return get_INTEGER(column);
case java.sql.Types.BIGINT:
return get_BIGINT(column);
/* (original code)
return new Integer(get_SMALLINT(column)); // See Table 4 in JDBC 1 spec (pg. 932 in jdbc book)
case java.sql.Types.INTEGER:
return new Integer(get_INTEGER(column));
case java.sql.Types.BIGINT:
return new Long(get_BIGINT(column));
*/
// GemStone changes END
case java.sql.Types.REAL:
return get_FLOAT(column);
case java.sql.Types.DOUBLE:
return get_DOUBLE(column);
case java.sql.Types.DECIMAL:
return get_DECIMAL(column);
case java.sql.Types.DATE:
return getDATE(column);
case java.sql.Types.TIME:
return getTIME(column);
case java.sql.Types.TIMESTAMP:
return getTIMESTAMP(column);
case java.sql.Types.CHAR:
return getCHAR(column);
case java.sql.Types.VARCHAR:
case java.sql.Types.LONGVARCHAR:
return getVARCHAR(column);
case Types.BINARY:
return get_CHAR_FOR_BIT_DATA(column);
case java.sql.Types.VARBINARY:
case java.sql.Types.LONGVARBINARY:
return get_VARCHAR_FOR_BIT_DATA(column);
case java.sql.Types.JAVA_OBJECT:
return get_UDT( column );
case java.sql.Types.BLOB:
return getBlobColumn_(column, agent_, true);
case java.sql.Types.CLOB:
case JDBC40Translation.JSON:
return getClobColumn_(column, agent_, true);
default:
throw new ColumnTypeConversionException(agent_.logWriter_,
"java.sql.Types " + jdbcTypes_[column -1], "Object");
}
}
public final void allocateCharBuffer() {
// compute the maximum char length
int maxCharLength = 0;
for (int i = 0; i < columns_; i++) {
switch (jdbcTypes_[i]) {
case Types.CHAR:
case Types.VARCHAR:
case Types.LONGVARCHAR:
if (fdocaLength_[i] > maxCharLength) {
maxCharLength = fdocaLength_[i];
}
}
}
// allocate char buffer to accomodate largest result column
charBuffer_ = new char[maxCharLength];
}
private final String getStringWithoutConvert(int position, int actualLength) throws SqlException {
int start = position;
int end = position + actualLength;
int charCount = 0;
while (start < end) {
charBuffer_[charCount++] = (char) (((dataBuffer_[start] & 0xff) << 8) | (dataBuffer_[start + 1] & 0xff));
start += 2;
}
return new String(charBuffer_, 0, charCount);
}
public void nullDataForGC() {
dataBuffer_ = null;
dataBufferStream_ = null;
columnDataPosition_ = null;
columnDataComputedLength_ = null;
columnDataPositionCache_ = null;
columnDataLengthCache_ = null;
columnDataIsNullCache_ = null;
jdbcTypes_ = null;
nullable_ = null;
charsetName_ = null;
this.ccsid_ = null;
isUpdateDeleteHoleCache_ = null;
isNull_ = null;
fdocaLength_ = null;
charBuffer_ = null;
}
private final int getColumnPrecision(int column) {
return ((fdocaLength_[column] >> 8) & 0xff);
}
private final int getColumnScale(int column) {
return (fdocaLength_[column] & 0xff);
}
// Only used by Sqlca.getMessage() when using a locale encoding
// to convert errror message text instead of relying on server encoding as usual.
final byte[] getBytesFromVARCHAR(int column) throws SqlException {
byte[] bytes;
bytes = new byte[columnDataComputedLength_[column - 1] - 2];
System.arraycopy(dataBuffer_, columnDataPosition_[column - 1] + 2, bytes, 0, bytes.length);
return bytes;
}
}