1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
/*
* 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.thrift.partial;
import java.nio.ByteBuffer;
import org.apache.thrift.TEnum;
import org.apache.thrift.TFieldIdEnum;
/**
* Provides an abstraction to process deserialized field values and place them into the collection
* that holds them. This abstraction allows different types of collections to be output from partial
* deserialization.
*
* <p>In case of the usual Thrift deserialization, the collection that holds field values is simply
* an instance of TBase.
*/
public interface ThriftFieldValueProcessor<V> {
// Struct related methods;
Object createNewStruct(ThriftMetadata.ThriftStruct metadata);
V prepareStruct(Object instance);
void setBool(V valueCollection, TFieldIdEnum fieldId, boolean value);
void setByte(V valueCollection, TFieldIdEnum fieldId, byte value);
void setInt16(V valueCollection, TFieldIdEnum fieldId, short value);
void setInt32(V valueCollection, TFieldIdEnum fieldId, int value);
void setInt64(V valueCollection, TFieldIdEnum fieldId, long value);
void setDouble(V valueCollection, TFieldIdEnum fieldId, double value);
void setBinary(V valueCollection, TFieldIdEnum fieldId, ByteBuffer value);
void setString(V valueCollection, TFieldIdEnum fieldId, ByteBuffer buffer);
void setEnumField(V valueCollection, TFieldIdEnum fieldId, Object value);
void setListField(V valueCollection, TFieldIdEnum fieldId, Object value);
void setMapField(V valueCollection, TFieldIdEnum fieldId, Object value);
void setSetField(V valueCollection, TFieldIdEnum fieldId, Object value);
void setStructField(V valueCollection, TFieldIdEnum fieldId, Object value);
Object prepareEnum(Class<? extends TEnum> enumClass, int ordinal);
Object prepareString(ByteBuffer buffer);
Object prepareBinary(ByteBuffer buffer);
// List field related methods.
Object createNewList(int expectedSize);
void setListElement(Object instance, int index, Object value);
Object prepareList(Object instance);
// Map field related methods.
Object createNewMap(int expectedSize);
void setMapElement(Object instance, int index, Object key, Object value);
Object prepareMap(Object instance);
// Set field related methods.
Object createNewSet(int expectedSize);
void setSetElement(Object instance, int index, Object value);
Object prepareSet(Object instance);
}
|