com.aerospike.client.command.ReadCommand Maven / Gradle / Ivy
/*******************************************************************************
* Copyright 2012-2014 by Aerospike.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to
* deal in the Software without restriction, including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
* sell copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
* IN THE SOFTWARE.
******************************************************************************/
package com.aerospike.client.command;
import java.io.IOException;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Map;
import com.aerospike.client.AerospikeException;
import com.aerospike.client.Key;
import com.aerospike.client.Record;
import com.aerospike.client.ResultCode;
import com.aerospike.client.cluster.Cluster;
import com.aerospike.client.cluster.Connection;
import com.aerospike.client.policy.Policy;
public class ReadCommand extends SingleCommand {
private final Policy policy;
private final String[] binNames;
private Record record;
public ReadCommand(Cluster cluster, Policy policy, Key key, String[] binNames) {
super(cluster, key);
this.policy = (policy == null) ? new Policy() : policy;
this.binNames = binNames;
}
@Override
protected Policy getPolicy() {
return policy;
}
@Override
protected void writeBuffer() throws AerospikeException {
setRead(key, binNames);
}
protected void parseResult(Connection conn) throws AerospikeException, IOException {
// Read header.
conn.readFully(dataBuffer, MSG_TOTAL_HEADER_SIZE);
// A number of these are commented out because we just don't care enough to read
// that section of the header. If we do care, uncomment and check!
long sz = Buffer.bytesToLong(dataBuffer, 0);
byte headerLength = dataBuffer[8];
// byte info1 = header[9];
// byte info2 = header[10];
// byte info3 = header[11];
// byte unused = header[12];
int resultCode = dataBuffer[13] & 0xFF;
int generation = Buffer.bytesToInt(dataBuffer, 14);
int expiration = Buffer.bytesToInt(dataBuffer, 18);
// int transactionTtl = get_ntohl(header, 22);
int fieldCount = Buffer.bytesToShort(dataBuffer, 26); // almost certainly 0
int opCount = Buffer.bytesToShort(dataBuffer, 28);
int receiveSize = ((int) (sz & 0xFFFFFFFFFFFFL)) - headerLength;
/*
byte version = (byte) (((int)(sz >> 56)) & 0xff);
if (version != MSG_VERSION) {
if (Log.debugEnabled()) {
Log.debug("read header: incorrect version.");
}
}
byte type = (byte) (((int)(sz >> 48)) & 0xff);
if (type != MSG_TYPE) {
if (Log.debugEnabled()) {
Log.debug("read header: incorrect message type, aborting receive");
}
}
if (headerLength != MSG_REMAINING_HEADER_SIZE) {
if (Log.debugEnabled()) {
Log.debug("read header: unexpected header size, aborting");
}
}*/
// Read remaining message bytes.
if (receiveSize > 0) {
sizeBuffer(receiveSize);
conn.readFully(dataBuffer, receiveSize);
}
if (resultCode != 0) {
if (resultCode == ResultCode.KEY_NOT_FOUND_ERROR) {
return;
}
if (resultCode == ResultCode.UDF_BAD_RESPONSE) {
record = parseRecord(opCount, fieldCount, generation, expiration);
handleUdfError(resultCode);
}
throw new AerospikeException(resultCode);
}
if (opCount == 0) {
// Bin data was not returned.
record = new Record(null, null, generation, expiration);
return;
}
record = parseRecord(opCount, fieldCount, generation, expiration);
}
private void handleUdfError(int resultCode) throws AerospikeException {
String ret = (String)record.bins.get("FAILURE");
if (ret != null) {
String[] list;
String message;
int code;
try {
list = ret.split(":");
code = Integer.parseInt(list[2].trim());
message = list[0] + ':' + list[1] + ' ' + list[3];
}
catch (Exception e) {
// Use generic exception if parse error occurs.
throw new AerospikeException(resultCode, ret);
}
throw new AerospikeException(code, message);
}
}
private final Record parseRecord(
int opCount,
int fieldCount,
int generation,
int expiration
) throws AerospikeException {
Map bins = null;
ArrayList
© 2015 - 2025 Weber Informatics LLC | Privacy Policy