Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.dyuproject.protostuff.runtime.RuntimeReflectionFieldFactory Maven / Gradle / Ivy
//========================================================================
//Copyright 2007-2011 David Yu [email protected]
//------------------------------------------------------------------------
//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.dyuproject.protostuff.runtime;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_BIGDECIMAL;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_BIGINTEGER;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_BOOL;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_BYTE;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_BYTES;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_BYTE_ARRAY;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_CHAR;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_DATE;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_DELEGATE;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_DOUBLE;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_ENUM;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_FLOAT;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_INT32;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_INT64;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_OBJECT;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_POJO;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_SHORT;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_STRING;
import java.io.IOException;
import java.math.BigDecimal;
import java.math.BigInteger;
import java.util.Date;
import com.dyuproject.protostuff.ByteString;
import com.dyuproject.protostuff.GraphInput;
import com.dyuproject.protostuff.Input;
import com.dyuproject.protostuff.Morph;
import com.dyuproject.protostuff.Output;
import com.dyuproject.protostuff.Pipe;
import com.dyuproject.protostuff.Schema;
import com.dyuproject.protostuff.Tag;
import com.dyuproject.protostuff.WireFormat.FieldType;
import com.dyuproject.protostuff.runtime.MappedSchema.Field;
/**
* Field factory via plain old reflection api.
*
* @author David Yu
* @created Jul 7, 2011
*/
public final class RuntimeReflectionFieldFactory
{
private RuntimeReflectionFieldFactory() {}
public static final RuntimeFieldFactory CHAR = new RuntimeFieldFactory(ID_CHAR)
{
public Field create(int number, String name, final java.lang.reflect.Field f, IdStrategy strategy)
{
final boolean primitive = f.getType().isPrimitive();
return new Field(FieldType.UINT32, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
if(primitive)
f.setChar(message, (char)input.readUInt32());
else
f.set(message, Character.valueOf((char)input.readUInt32()));
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
if(primitive)
output.writeUInt32(number, f.getChar(message), false);
else
{
Character value = (Character)f.get(message);
if(value!=null)
output.writeUInt32(number, value.charValue(), false);
}
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeUInt32(number, input.readUInt32(), repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
output.writeUInt32(number, input.readUInt32(), repeated);
}
public Character readFrom(Input input) throws IOException
{
return Character.valueOf((char)input.readUInt32());
}
public void writeTo(Output output, int number, Character value, boolean repeated)
throws IOException
{
output.writeUInt32(number, value.charValue(), repeated);
}
public FieldType getFieldType()
{
return FieldType.UINT32;
}
public Class> typeClass()
{
return Character.class;
}
};
public static final RuntimeFieldFactory SHORT = new RuntimeFieldFactory(ID_SHORT)
{
public Field create(int number, String name, final java.lang.reflect.Field f, IdStrategy strategy)
{
final boolean primitive = f.getType().isPrimitive();
return new Field(FieldType.UINT32, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
if(primitive)
f.setShort(message, (short)input.readUInt32());
else
f.set(message, Short.valueOf((short)input.readUInt32()));
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
if(primitive)
output.writeUInt32(number, f.getShort(message), false);
else
{
Short value = (Short)f.get(message);
if(value!=null)
output.writeUInt32(number, value.shortValue(), false);
}
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeUInt32(number, input.readUInt32(), repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
output.writeUInt32(number, input.readUInt32(), repeated);
}
public Short readFrom(Input input) throws IOException
{
return Short.valueOf((short)input.readUInt32());
}
public void writeTo(Output output, int number, Short value, boolean repeated)
throws IOException
{
output.writeUInt32(number, value.shortValue(), repeated);
}
public FieldType getFieldType()
{
return FieldType.UINT32;
}
public Class> typeClass()
{
return Short.class;
}
};
public static final RuntimeFieldFactory BYTE = new RuntimeFieldFactory(ID_BYTE)
{
public Field create(int number, String name, final java.lang.reflect.Field f, IdStrategy strategy)
{
final boolean primitive = f.getType().isPrimitive();
return new Field(FieldType.UINT32, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
if(primitive)
f.setByte(message, (byte)input.readUInt32());
else
f.set(message, Byte.valueOf((byte)input.readUInt32()));
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
if(primitive)
output.writeUInt32(number, f.getByte(message), false);
else
{
Byte value = (Byte)f.get(message);
if(value!=null)
output.writeUInt32(number, value.byteValue(), false);
}
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeUInt32(number, input.readUInt32(), repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
output.writeUInt32(number, input.readUInt32(), repeated);
}
public Byte readFrom(Input input) throws IOException
{
return Byte.valueOf((byte)input.readUInt32());
}
public void writeTo(Output output, int number, Byte value, boolean repeated)
throws IOException
{
output.writeUInt32(number, value.byteValue(), repeated);
}
public FieldType getFieldType()
{
return FieldType.UINT32;
}
public Class> typeClass()
{
return Byte.class;
}
};
public static final RuntimeFieldFactory INT32 = new RuntimeFieldFactory(ID_INT32)
{
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
final boolean primitive = f.getType().isPrimitive();
return new Field(FieldType.INT32, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
if(primitive)
f.setInt(message, input.readInt32());
else
f.set(message, Integer.valueOf(input.readInt32()));
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
if(primitive)
output.writeInt32(number, f.getInt(message), false);
else
{
Integer value = (Integer)f.get(message);
if(value!=null)
output.writeInt32(number, value.intValue(), false);
}
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeInt32(number, input.readInt32(), repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
output.writeInt32(number, input.readInt32(), repeated);
}
public Integer readFrom(Input input) throws IOException
{
return Integer.valueOf(input.readInt32());
}
public void writeTo(Output output, int number, Integer value, boolean repeated)
throws IOException
{
output.writeInt32(number, value.intValue(), repeated);
}
public FieldType getFieldType()
{
return FieldType.INT32;
}
public Class> typeClass()
{
return Integer.class;
}
};
public static final RuntimeFieldFactory INT64 = new RuntimeFieldFactory(ID_INT64)
{
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
final boolean primitive = f.getType().isPrimitive();
return new Field(FieldType.INT64, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
if(primitive)
f.setLong(message, input.readInt64());
else
f.set(message, Long.valueOf(input.readInt64()));
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
if(primitive)
output.writeInt64(number, f.getLong(message), false);
else
{
Long value = (Long)f.get(message);
if(value!=null)
output.writeInt64(number, value.longValue(), false);
}
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeInt64(number, input.readInt64(), repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
output.writeInt64(number, input.readInt64(), repeated);
}
public Long readFrom(Input input) throws IOException
{
return Long.valueOf(input.readInt64());
}
public void writeTo(Output output, int number, Long value, boolean repeated)
throws IOException
{
output.writeInt64(number, value.longValue(), repeated);
}
public FieldType getFieldType()
{
return FieldType.INT64;
}
public Class> typeClass()
{
return Long.class;
}
};
public static final RuntimeFieldFactory FLOAT = new RuntimeFieldFactory(ID_FLOAT)
{
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
final boolean primitive = f.getType().isPrimitive();
return new Field(FieldType.FLOAT, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
if(primitive)
f.setFloat(message, input.readFloat());
else
f.set(message, new Float(input.readFloat()));
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
if(primitive)
output.writeFloat(number, f.getFloat(message), false);
else
{
Float value = (Float)f.get(message);
if(value!=null)
output.writeFloat(number, value.floatValue(), false);
}
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeFloat(number, input.readFloat(), repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
output.writeFloat(number, input.readFloat(), repeated);
}
public Float readFrom(Input input) throws IOException
{
return new Float(input.readFloat());
}
public void writeTo(Output output, int number, Float value, boolean repeated)
throws IOException
{
output.writeFloat(number, value.floatValue(), repeated);
}
public FieldType getFieldType()
{
return FieldType.FLOAT;
}
public Class> typeClass()
{
return Float.class;
}
};
public static final RuntimeFieldFactory DOUBLE = new RuntimeFieldFactory(ID_DOUBLE)
{
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
final boolean primitive = f.getType().isPrimitive();
return new Field(FieldType.DOUBLE, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
if(primitive)
f.setDouble(message, input.readDouble());
else
f.set(message, new Double(input.readDouble()));
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
if(primitive)
output.writeDouble(number, f.getDouble(message), false);
else
{
Double value = (Double)f.get(message);
if(value!=null)
output.writeDouble(number, value.doubleValue(), false);
}
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeDouble(number, input.readDouble(), repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
output.writeDouble(number, input.readDouble(), repeated);
}
public Double readFrom(Input input) throws IOException
{
return new Double(input.readDouble());
}
public void writeTo(Output output, int number, Double value, boolean repeated)
throws IOException
{
output.writeDouble(number, value.doubleValue(), repeated);
}
public FieldType getFieldType()
{
return FieldType.DOUBLE;
}
public Class> typeClass()
{
return Double.class;
}
};
public static final RuntimeFieldFactory BOOL = new RuntimeFieldFactory(ID_BOOL)
{
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
final boolean primitive = f.getType().isPrimitive();
return new Field(FieldType.BOOL, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
if(primitive)
f.setBoolean(message, input.readBool());
else
f.set(message, input.readBool() ? Boolean.TRUE : Boolean.FALSE);
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
if(primitive)
output.writeBool(number, f.getBoolean(message), false);
else
{
Boolean value = (Boolean)f.get(message);
if(value!=null)
output.writeBool(number, value.booleanValue(), false);
}
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeBool(number, input.readBool(), repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
output.writeBool(number, input.readBool(), repeated);
}
public Boolean readFrom(Input input) throws IOException
{
return input.readBool() ? Boolean.TRUE : Boolean.FALSE;
}
public void writeTo(Output output, int number, Boolean value, boolean repeated)
throws IOException
{
output.writeBool(number, value.booleanValue(), repeated);
}
public FieldType getFieldType()
{
return FieldType.BOOL;
}
public Class> typeClass()
{
return Boolean.class;
}
};
public static final RuntimeFieldFactory STRING = new RuntimeFieldFactory(ID_STRING)
{
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
return new Field(FieldType.STRING, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
f.set(message, input.readString());
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
String value = (String)f.get(message);
if(value!=null)
output.writeString(number, value, false);
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
input.transferByteRangeTo(output, true, number, repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
input.transferByteRangeTo(output, true, number, repeated);
}
public String readFrom(Input input) throws IOException
{
return input.readString();
}
public void writeTo(Output output, int number, String value, boolean repeated)
throws IOException
{
output.writeString(number, value, repeated);
}
public FieldType getFieldType()
{
return FieldType.STRING;
}
public Class> typeClass()
{
return String.class;
}
};
public static final RuntimeFieldFactory BYTES = new RuntimeFieldFactory(ID_BYTES)
{
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
return new Field(FieldType.BYTES, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
f.set(message, input.readBytes());
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
ByteString bs = (ByteString)f.get(message);
if(bs!=null)
output.writeBytes(number, bs, false);
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
input.transferByteRangeTo(output, false, number, repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
input.transferByteRangeTo(output, false, number, repeated);
}
public ByteString readFrom(Input input) throws IOException
{
return input.readBytes();
}
public void writeTo(Output output, int number, ByteString value, boolean repeated)
throws IOException
{
output.writeBytes(number, value, repeated);
}
public FieldType getFieldType()
{
return FieldType.BYTES;
}
public Class> typeClass()
{
return ByteString.class;
}
};
public static final RuntimeFieldFactory BYTE_ARRAY = new RuntimeFieldFactory(ID_BYTE_ARRAY)
{
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
return new Field(FieldType.BYTES, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
f.set(message, input.readByteArray());
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
byte[] array = (byte[])f.get(message);
if(array!=null)
output.writeByteArray(number, array, false);
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
input.transferByteRangeTo(output, false, number, repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
input.transferByteRangeTo(output, false, number, repeated);
}
public byte[] readFrom(Input input) throws IOException
{
return input.readByteArray();
}
public void writeTo(Output output, int number, byte[] value, boolean repeated)
throws IOException
{
output.writeByteArray(number, value, repeated);
}
public FieldType getFieldType()
{
return FieldType.BYTES;
}
public Class> typeClass()
{
return byte[].class;
}
};
public static final RuntimeFieldFactory ENUM = new RuntimeFieldFactory(ID_ENUM)
{
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
final EnumIO extends Enum>> eio = strategy.getEnumIO(f.getType());
return new Field(FieldType.ENUM, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
f.set(message, eio.readFrom(input));
}
catch (IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch (IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
final Enum> existing;
try
{
existing = (Enum>)f.get(message);
}
catch (IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch (IllegalAccessException e)
{
throw new RuntimeException(e);
}
if(existing != null)
EnumIO.writeTo(output, number, repeated, existing);
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
EnumIO.transfer(pipe, input, output, number, repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
throw new UnsupportedOperationException();
}
public Integer readFrom(Input input) throws IOException
{
throw new UnsupportedOperationException();
}
public void writeTo(Output output, int number, Integer value, boolean repeated) throws IOException
{
throw new UnsupportedOperationException();
}
public FieldType getFieldType()
{
throw new UnsupportedOperationException();
}
public Class> typeClass()
{
throw new UnsupportedOperationException();
}
};
// NON-INLINE VALUES
static final RuntimeFieldFactory POJO = new RuntimeFieldFactory(ID_POJO)
{
@SuppressWarnings("unchecked")
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
Class type = (Class)f.getType();
return new RuntimeMessageField(
type, strategy.getSchemaWrapper(type, true),
FieldType.MESSAGE, number, name, false,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
f.set(message, input.mergeObject(f.get(message), getSchema()));
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
final Object existing;
try
{
existing = f.get(message);
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
if(existing != null)
output.writeObject(number, existing, getSchema(), false);
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeObject(number, pipe, getPipeSchema(), repeated);
}
@Override
protected Field copy(IdStrategy strategy)
{
return POJO.create(number, name, f, strategy);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
throw new UnsupportedOperationException();
}
public Object readFrom(Input input) throws IOException
{
throw new UnsupportedOperationException();
}
public void writeTo(Output output, int number, Object value, boolean repeated)
throws IOException
{
throw new UnsupportedOperationException();
}
public FieldType getFieldType()
{
throw new UnsupportedOperationException();
}
public Class> typeClass()
{
throw new UnsupportedOperationException();
}
};
static final RuntimeFieldFactory POLYMORPHIC_POJO = new RuntimeFieldFactory(0)
{
@SuppressWarnings("unchecked")
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
if(pojo(f.getType(), f.getAnnotation(Morph.class), strategy))
return POJO.create(number, name, f, strategy);
return new RuntimeDerivativeField(
(Class)f.getType(),
FieldType.MESSAGE, number, name, false,
f.getAnnotation(Tag.class),
strategy)
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
final Object value = input.mergeObject(message, schema);
if(input instanceof GraphInput &&
((GraphInput)input).isCurrentMessageReference())
{
// a reference from polymorphic+cyclic graph deser
try
{
f.set(message, value);
}
catch (IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch (IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
}
public void writeTo(Output output, T message) throws IOException
{
final Object existing;
try
{
existing = f.get(message);
}
catch (IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch (IllegalAccessException e)
{
throw new RuntimeException(e);
}
if(existing != null)
output.writeObject(number, existing, schema, false);
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeObject(number, pipe, schema.pipeSchema, false);
}
public void doMergeFrom(Input input, Schema schema,
Object message) throws IOException
{
try
{
final Object existing = f.get(message);
// merge if not null and is same type.
final Object value = existing == null || existing.getClass() !=
schema.typeClass() ? schema.newMessage() : existing;
if(input instanceof GraphInput)
{
// update the actual reference.
((GraphInput)input).updateLast(value, message);
}
schema.mergeFrom(input, value);
f.set(message, value);
}
catch (IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch (IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
@Override
protected Field copy(IdStrategy strategy)
{
return POLYMORPHIC_POJO.create(number, name, f, strategy);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
throw new UnsupportedOperationException();
}
public Object readFrom(Input input) throws IOException
{
throw new UnsupportedOperationException();
}
public void writeTo(Output output, int number, Object value, boolean repeated)
throws IOException
{
throw new UnsupportedOperationException();
}
public FieldType getFieldType()
{
throw new UnsupportedOperationException();
}
public Class> typeClass()
{
throw new UnsupportedOperationException();
}
};
static final RuntimeFieldFactory OBJECT = new RuntimeFieldFactory(ID_OBJECT)
{
public Field create(int number, java.lang.String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
return new RuntimeObjectField(f.getType(),
FieldType.MESSAGE, number, name, false,
f.getAnnotation(Tag.class),
PolymorphicSchemaFactories.getFactoryFromField(f.getType()), strategy)
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
final Object value = input.mergeObject(message, schema);
if(input instanceof GraphInput &&
((GraphInput)input).isCurrentMessageReference())
{
// a reference from polymorphic+cyclic graph deser
try
{
f.set(message, value);
}
catch (IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch (IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
}
public void writeTo(Output output, T message) throws IOException
{
final Object existing;
try
{
existing = f.get(message);
}
catch (IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch (IllegalAccessException e)
{
throw new RuntimeException(e);
}
if(existing != null)
output.writeObject(number, existing, schema, false);
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeObject(number, pipe, schema.getPipeSchema(), false);
}
public void setValue(Object value, Object message)
{
try
{
f.set(message, value);
}
catch (IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch (IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
@Override
protected Field copy(IdStrategy strategy)
{
return OBJECT.create(number, name, f, strategy);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
throw new UnsupportedOperationException();
}
public Object readFrom(Input input) throws IOException
{
throw new UnsupportedOperationException();
}
public void writeTo(Output output, int number, Object value, boolean repeated)
throws IOException
{
throw new UnsupportedOperationException();
}
public FieldType getFieldType()
{
return FieldType.MESSAGE;
}
public Class> typeClass()
{
return Object.class;
}
};
public static final RuntimeFieldFactory BIGDECIMAL = new RuntimeFieldFactory(ID_BIGDECIMAL)
{
public Field create(int number, String name, final java.lang.reflect.Field f, IdStrategy strategy)
{
return new Field(FieldType.STRING, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
f.set(message, new BigDecimal(input.readString()));
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
BigDecimal value = (BigDecimal)f.get(message);
if(value!=null)
output.writeString(number, value.toString(), false);
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
input.transferByteRangeTo(output, true, number, repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
input.transferByteRangeTo(output, true, number, repeated);
}
public BigDecimal readFrom(Input input) throws IOException
{
return new BigDecimal(input.readString());
}
public void writeTo(Output output, int number, BigDecimal value, boolean repeated)
throws IOException
{
output.writeString(number, value.toString(), repeated);
}
public FieldType getFieldType()
{
return FieldType.STRING;
}
public Class> typeClass()
{
return BigDecimal.class;
}
};
public static final RuntimeFieldFactory BIGINTEGER = new RuntimeFieldFactory(ID_BIGINTEGER)
{
public Field create(int number, String name, final java.lang.reflect.Field f, IdStrategy strategy)
{
return new Field(FieldType.BYTES, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
f.set(message, new BigInteger(input.readByteArray()));
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
BigInteger value = (BigInteger)f.get(message);
if(value!=null)
output.writeByteArray(number, value.toByteArray(), false);
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
input.transferByteRangeTo(output, false, number, repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
input.transferByteRangeTo(output, false, number, repeated);
}
public BigInteger readFrom(Input input) throws IOException
{
return new BigInteger(input.readByteArray());
}
public void writeTo(Output output, int number, BigInteger value, boolean repeated)
throws IOException
{
output.writeByteArray(number, value.toByteArray(), repeated);
}
public FieldType getFieldType()
{
return FieldType.BYTES;
}
public Class> typeClass()
{
return BigInteger.class;
}
};
public static final RuntimeFieldFactory DATE = new RuntimeFieldFactory(ID_DATE)
{
public Field create(int number, String name, final java.lang.reflect.Field f, IdStrategy strategy)
{
return new Field(FieldType.FIXED64, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
try
{
f.set(message, new Date(input.readFixed64()));
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
try
{
Date value = (Date)f.get(message);
if(value!=null)
output.writeFixed64(number, value.getTime(), false);
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
output.writeFixed64(number, input.readFixed64(), repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
output.writeFixed64(number, input.readFixed64(), repeated);
}
public Date readFrom(Input input) throws IOException
{
return new Date(input.readFixed64());
}
public void writeTo(Output output, int number, Date value, boolean repeated)
throws IOException
{
output.writeFixed64(number, value.getTime(), repeated);
}
public FieldType getFieldType()
{
return FieldType.FIXED64;
}
public Class> typeClass()
{
return Date.class;
}
};
public static final RuntimeFieldFactory DELEGATE = new RuntimeFieldFactory(ID_DELEGATE)
{
@SuppressWarnings("unchecked")
public Field create(int number, String name,
final java.lang.reflect.Field f, IdStrategy strategy)
{
final Delegate delegate = strategy.getDelegate(
(Class)f.getType());
return new Field(FieldType.BYTES, number, name,
f.getAnnotation(Tag.class))
{
{
f.setAccessible(true);
}
public void mergeFrom(Input input, T message) throws IOException
{
final Object value = delegate.readFrom(input);
try
{
f.set(message, value);
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
}
public void writeTo(Output output, T message) throws IOException
{
final Object value;
try
{
value = (Object)f.get(message);
}
catch(IllegalArgumentException e)
{
throw new RuntimeException(e);
}
catch(IllegalAccessException e)
{
throw new RuntimeException(e);
}
if(value != null)
delegate.writeTo(output, number, value, false);
}
public void transfer(Pipe pipe, Input input, Output output,
boolean repeated) throws IOException
{
delegate.transfer(pipe, input, output, number, repeated);
}
};
}
public void transfer(Pipe pipe, Input input, Output output, int number,
boolean repeated) throws IOException
{
throw new UnsupportedOperationException();
}
public Object readFrom(Input input) throws IOException
{
throw new UnsupportedOperationException();
}
public void writeTo(Output output, int number, Object value, boolean repeated)
throws IOException
{
throw new UnsupportedOperationException();
}
public FieldType getFieldType()
{
throw new UnsupportedOperationException();
}
public Class> typeClass()
{
throw new UnsupportedOperationException();
}
};
}