blob: af51aa20043ded699743729b3cab04e66e8cd285 [file] [log] [blame]
/*
* 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.geode.internal.cache.tier.sockets;
import java.io.DataInput;
import java.io.DataOutput;
import java.io.IOException;
import java.util.ArrayList;
import org.apache.geode.DataSerializer;
import org.apache.geode.internal.DataSerializableFixedID;
/**
* A variant of the ObjectPartList which deserializes the values as byte arrays of serialized
* objects, rather than as deserialized objects.
*
* [bruce] THIS CLASS IS OBSOLETE AS OF V7.0. It is replaced with VersionedObjectList
*
*/
public class SerializedObjectPartList extends ObjectPartList651 {
public SerializedObjectPartList() {
super();
}
public SerializedObjectPartList(int maximumchunksize, boolean hasKeys) {
super(maximumchunksize, hasKeys);
}
@Override
public void toData(DataOutput out) throws IOException {
out.writeBoolean(this.hasKeys);
if (this.objectTypeArray != null) {
int numObjects = this.objects.size();
out.writeInt(numObjects);
for (int index = 0; index < numObjects; ++index) {
Object value = this.objects.get(index);
byte objectType = this.objectTypeArray[index];
if (this.hasKeys) {
DataSerializer.writeObject(this.keys.get(index), out);
}
if ((objectType == KEY_NOT_AT_SERVER)) {
out.writeByte(KEY_NOT_AT_SERVER);
} else if (objectType == EXCEPTION) {
out.writeByte(EXCEPTION);
} else if (objectType == BYTES) {
out.writeByte(BYTES);
} else {
out.writeByte(OBJECT);
}
if (objectType == EXCEPTION) {
// write exception as byte array so native clients can skip it
DataSerializer.writeByteArray(CacheServerHelper.serialize(value), out);
// write the exception string for native clients
DataSerializer.writeString(value.toString(), out);
} else if (value instanceof byte[]) {
DataSerializer.writeByteArray((byte[]) value, out);
} else {
DataSerializer.writeObjectAsByteArray(value, out);
}
}
} else {
out.writeInt(0);
}
}
@Override
public void fromData(DataInput in) throws IOException, ClassNotFoundException {
boolean keysPresent = in.readBoolean();
if (keysPresent) {
this.keys = new ArrayList();
}
this.hasKeys = keysPresent;
int numObjects = in.readInt();
this.objectTypeArray = new byte[numObjects];
if (numObjects > 0) {
for (int index = 0; index < numObjects; ++index) {
if (keysPresent) {
Object key = DataSerializer.readObject(in);
this.keys.add(key);
}
byte objectType = in.readByte();
this.objectTypeArray[index] = objectType;
Object value;
if (objectType == EXCEPTION) {
byte[] exBytes = DataSerializer.readByteArray(in);
value = CacheServerHelper.deserialize(exBytes);
// ignore the exception string meant for native clients
DataSerializer.readString(in);
} else {
value = DataSerializer.readByteArray(in);
}
this.objects.add(value);
}
}
}
public boolean isBytes(int index) {
return this.objectTypeArray[index] == BYTES;
}
public boolean isException(int index) {
return this.objectTypeArray[index] == EXCEPTION;
}
@Override
public int getDSFID() {
return DataSerializableFixedID.SERIALIZED_OBJECT_PART_LIST;
}
}