com.dyuproject.protostuff.runtime.DefaultIdStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of protostuff-runtime Show documentation
Show all versions of protostuff-runtime Show documentation
protobuf serialization for pre-existing objects
The newest version!
package com.dyuproject.protostuff.runtime;
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_CHAR;
import static com.dyuproject.protostuff.runtime.RuntimeFieldFactory.ID_DOUBLE;
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_SHORT;
import java.io.IOException;
import java.lang.reflect.Modifier;
import java.util.Collection;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import com.dyuproject.protostuff.CollectionSchema;
import com.dyuproject.protostuff.Input;
import com.dyuproject.protostuff.MapSchema;
import com.dyuproject.protostuff.Message;
import com.dyuproject.protostuff.Output;
import com.dyuproject.protostuff.Pipe;
import com.dyuproject.protostuff.ProtostuffException;
import com.dyuproject.protostuff.Schema;
/***
* The FQCN(fully qualified class name) will serve as the id (string).
* Does not need any registration in the user-code (works out-of-the-box).
* The size of serialized representation may be not very efficient.
*
* @author Leo Romanoff
* @author David Yu
*
*/
public final class DefaultIdStrategy extends IdStrategy
{
final ConcurrentHashMap> pojoMapping =
new ConcurrentHashMap>();
final ConcurrentHashMap enumMapping =
new ConcurrentHashMap();
final ConcurrentHashMap collectionMapping =
new ConcurrentHashMap();
final ConcurrentHashMap mapMapping =
new ConcurrentHashMap();
final ConcurrentHashMap> delegateMapping =
new ConcurrentHashMap>();
public DefaultIdStrategy()
{
super(null, 0);
}
public DefaultIdStrategy(IdStrategy primaryGroup, int groupId)
{
super(primaryGroup, groupId);
}
/**
* Registers a pojo lazily.
* Used by {@link RuntimeSchema#register(Class, Schema)}.
*/
public boolean registerPojo(Class typeClass)
{
assert typeClass != null;
final HasSchema> last = pojoMapping.putIfAbsent(typeClass.getName(),
new LazyRegister(typeClass, this));
return last == null || last instanceof LazyRegister>;
}
/**
* Registers a pojo.
* Returns true if registration is successful or if the same exact schema
* was previously registered.
* Used by {@link RuntimeSchema#register(Class, Schema)}.
*/
public boolean registerPojo(Class typeClass, Schema schema)
{
assert typeClass != null && schema != null;
final HasSchema> last = pojoMapping.putIfAbsent(typeClass.getName(),
new Registered(schema, this));
return last == null || (last instanceof Registered> &&
((Registered>)last).schema == schema);
}
/**
* Registers an enum.
* Returns true if registration is successful.
*/
public > boolean registerEnum(Class enumClass)
{
return null == enumMapping.putIfAbsent(enumClass.getName(),
new EnumIO.Eager(EnumIO.createFrom(enumClass, this)));
}
/**
* Registers a delegate. Returns true if registration is successful.
*/
public boolean registerDelegate(Delegate delegate)
{
return null == delegateMapping.putIfAbsent(delegate.typeClass().getName(),
new HasDelegate(delegate, this));
}
/**
* Registers a collection. Returns true if registration is successful.
*/
public boolean registerCollection(CollectionSchema.MessageFactory factory)
{
return null == collectionMapping.putIfAbsent(factory.typeClass().getName(),
factory);
}
/**
* Registers a map. Returns true if registration is successful.
*/
public boolean registerMap(MapSchema.MessageFactory factory)
{
return null == mapMapping.putIfAbsent(factory.typeClass().getName(),
factory);
}
/**
* Used by {@link RuntimeSchema#map(Class, Class)}.
*/
public boolean map(Class super T> baseClass, Class typeClass)
{
assert baseClass != null && typeClass != null;
if(typeClass.isInterface() || Modifier.isAbstract(typeClass.getModifiers()))
{
throw new IllegalArgumentException(typeClass +
" cannot be an interface/abstract class.");
}
final HasSchema> last = pojoMapping.putIfAbsent(baseClass.getName(),
new Mapped(baseClass, typeClass, this));
return last == null || (last instanceof Mapped> &&
((Mapped>)last).typeClass == typeClass);
}
public boolean isDelegateRegistered(Class> typeClass)
{
return delegateMapping.containsKey(typeClass.getName());
}
@SuppressWarnings("unchecked")
public HasDelegate getDelegateWrapper(Class super T> typeClass)
{
return (HasDelegate)delegateMapping.get(typeClass.getName());
}
@SuppressWarnings("unchecked")
public Delegate getDelegate(Class super T> typeClass)
{
final HasDelegate last = (HasDelegate)delegateMapping.get(typeClass.getName());
return last == null ? null : last.delegate;
}
public boolean isRegistered(Class> typeClass)
{
final HasSchema> last = pojoMapping.get(typeClass.getName());
return last != null && !(last instanceof Lazy>);
}
@SuppressWarnings("unchecked")
public HasSchema getRegistered(Class> typeClass)
{
HasSchema hs = (HasSchema)pojoMapping.get(typeClass.getName());
return hs != null && !(hs instanceof Lazy>) ? hs : null;
}
@SuppressWarnings("unchecked")
private HasSchema getSchemaWrapper(String className, boolean load)
{
HasSchema hs = (HasSchema)pojoMapping.get(className);
if(hs == null)
{
if(!load)
return null;
final Class typeClass = RuntimeEnv.loadClass(className);
hs = new Lazy(typeClass, this);
final HasSchema last = (HasSchema)pojoMapping.putIfAbsent(
typeClass.getName(), hs);
if(last != null)
hs = last;
}
return hs;
}
@SuppressWarnings("unchecked")
public HasSchema getSchemaWrapper(Class typeClass, boolean create)
{
HasSchema hs = (HasSchema)pojoMapping.get(typeClass.getName());
if(hs == null && create)
{
hs = new Lazy(typeClass, this);
final HasSchema last = (HasSchema)pojoMapping.putIfAbsent(
typeClass.getName(), hs);
if(last != null)
hs = last;
}
return hs;
}
private EnumIO extends Enum>> getEnumIO(String className, boolean load)
{
EnumIO.Wrapper wrapper = enumMapping.get(className);
if (wrapper == null)
{
if (!load)
return null;
final Class> enumClass = RuntimeEnv.loadClass(className);
wrapper = new EnumIO.Lazy(enumClass, this);
final EnumIO.Wrapper existing = enumMapping.putIfAbsent(enumClass.getName(), wrapper);
if(existing != null)
wrapper = existing;
}
return wrapper.get();
}
protected EnumIO extends Enum>> getEnumIO(Class> enumClass)
{
EnumIO.Wrapper wrapper = enumMapping.get(enumClass.getName());
if (wrapper == null)
{
wrapper = new EnumIO.Lazy(enumClass, this);
final EnumIO.Wrapper existing = enumMapping.putIfAbsent(enumClass.getName(), wrapper);
if(existing != null)
wrapper = existing;
}
return wrapper.get();
}
protected CollectionSchema.MessageFactory getCollectionFactory(Class> clazz)
{
final String className = clazz.getName();
CollectionSchema.MessageFactory factory = collectionMapping.get(className);
if(factory == null)
{
if(className.startsWith("java.util"))
{
factory = CollectionSchema.MessageFactories.valueOf(clazz.getSimpleName());
}
else
{
factory = new RuntimeCollectionFactory(clazz);
CollectionSchema.MessageFactory f = collectionMapping.putIfAbsent(
className, factory);
if(f != null)
factory = f;
}
}
return factory;
}
protected MapSchema.MessageFactory getMapFactory(Class> clazz)
{
final String className = clazz.getName();
MapSchema.MessageFactory factory = mapMapping.get(className);
if(factory == null)
{
if(className.startsWith("java.util"))
{
factory = MapSchema.MessageFactories.valueOf(clazz.getSimpleName());
}
else
{
factory = new RuntimeMapFactory(clazz);
MapSchema.MessageFactory f = mapMapping.putIfAbsent(
className, factory);
if(f != null)
factory = f;
}
}
return factory;
}
protected void writeCollectionIdTo(Output output, int fieldNumber, Class> clazz)
throws IOException
{
final CollectionSchema.MessageFactory factory = collectionMapping.get(clazz.getName());
if(factory == null && clazz.getName().startsWith("java.util"))
{
// jdk collection
// better not to register the jdk collection if using this strategy
// as it saves space by not writing the full package
output.writeString(fieldNumber, clazz.getSimpleName(), false);
}
else
{
output.writeString(fieldNumber, clazz.getName(), false);
}
}
protected void transferCollectionId(Input input, Output output,
int fieldNumber) throws IOException
{
input.transferByteRangeTo(output, true, fieldNumber, false);
}
protected CollectionSchema.MessageFactory resolveCollectionFrom(Input input)
throws IOException
{
final String className = input.readString();
CollectionSchema.MessageFactory factory = collectionMapping.get(className);
if(factory == null)
{
if(className.indexOf('.') == -1)
{
factory = CollectionSchema.MessageFactories.valueOf(className);
}
else
{
factory = new RuntimeCollectionFactory(RuntimeEnv.loadClass(className));
CollectionSchema.MessageFactory f = collectionMapping.putIfAbsent(
className, factory);
if(f != null)
factory = f;
}
}
return factory;
}
protected void writeMapIdTo(Output output, int fieldNumber, Class> clazz)
throws IOException
{
final MapSchema.MessageFactory factory = mapMapping.get(clazz);
if(factory == null && clazz.getName().startsWith("java.util"))
{
// jdk map
// better not to register the jdk map if using this strategy
// as it saves space by not writing the full package
output.writeString(fieldNumber, clazz.getSimpleName(), false);
}
else
{
output.writeString(fieldNumber, clazz.getName(), false);
}
}
protected void transferMapId(Input input, Output output,
int fieldNumber) throws IOException
{
input.transferByteRangeTo(output, true, fieldNumber, false);
}
protected MapSchema.MessageFactory resolveMapFrom(Input input)
throws IOException
{
final String className = input.readString();
MapSchema.MessageFactory factory = mapMapping.get(className);
if(factory == null)
{
if(className.indexOf('.') == -1)
{
factory = MapSchema.MessageFactories.valueOf(className);
}
else
{
factory = new RuntimeMapFactory(RuntimeEnv.loadClass(className));
MapSchema.MessageFactory f = mapMapping.putIfAbsent(
className, factory);
if(f != null)
factory = f;
}
}
return factory;
}
protected void writeEnumIdTo(Output output, int fieldNumber,
Class> clazz) throws IOException
{
output.writeString(fieldNumber, clazz.getName(), false);
}
protected EnumIO> transferEnumId(Input input, Output output,
int fieldNumber) throws IOException
{
final String className = input.readString();
final EnumIO> eio = getEnumIO(className,
RuntimeEnv.AUTO_LOAD_POLYMORPHIC_CLASSES);
if(eio == null)
{
throw new ProtostuffException("Enum not registered: " +
className);
}
output.writeString(fieldNumber, className, false);
return eio;
}
protected EnumIO> resolveEnumFrom(Input input) throws IOException
{
return getEnumIO(input.readString(), true);
}
@SuppressWarnings("unchecked")
protected HasDelegate tryWriteDelegateIdTo(Output output, int fieldNumber,
Class clazz) throws IOException
{
final HasDelegate hd = (HasDelegate)delegateMapping.get(clazz.getName());
if(hd == null)
return null;
output.writeString(fieldNumber, clazz.getName(), false);
return hd;
}
@SuppressWarnings("unchecked")
protected HasDelegate transferDelegateId(Input input, Output output,
int fieldNumber) throws IOException
{
final String className = input.readString();
final HasDelegate hd = (HasDelegate)delegateMapping.get(className);
if(hd == null)
throw new UnknownTypeException("delegate: " + className + " (Outdated registry)");
output.writeString(fieldNumber, className, false);
return hd;
}
@SuppressWarnings("unchecked")
protected HasDelegate resolveDelegateFrom(Input input) throws IOException
{
final String className = input.readString();
final HasDelegate hd = (HasDelegate)delegateMapping.get(className);
if(hd == null)
throw new UnknownTypeException("delegate: " + className + " (Outdated registry)");
return hd;
}
protected HasSchema tryWritePojoIdTo(Output output, int fieldNumber,
Class clazz, boolean registered) throws IOException
{
HasSchema hs = getSchemaWrapper(clazz, false);
if (hs == null || (registered && hs instanceof Lazy>))
return null;
output.writeString(fieldNumber, clazz.getName(), false);
return hs;
}
protected void writePojoIdTo(Output output, int fieldNumber,
Class clazz, HasSchema hs) throws IOException
{
output.writeString(fieldNumber, clazz.getName(), false);
}
protected HasSchema writePojoIdTo(Output output, int fieldNumber, Class clazz)
throws IOException
{
output.writeString(fieldNumber, clazz.getName(), false);
// it is important to return the schema initialized (if it hasn't been).
return getSchemaWrapper(clazz, true);
}
protected HasSchema transferPojoId(Input input, Output output,
int fieldNumber) throws IOException
{
final String className = input.readString();
final HasSchema wrapper = getSchemaWrapper(className,
RuntimeEnv.AUTO_LOAD_POLYMORPHIC_CLASSES);
if(wrapper == null)
{
throw new ProtostuffException("polymorphic pojo not registered: " +
className);
}
output.writeString(fieldNumber, className, false);
return wrapper;
}
protected HasSchema resolvePojoFrom(Input input, int fieldNumber)
throws IOException
{
final String className = input.readString();
final HasSchema wrapper = getSchemaWrapper(className,
RuntimeEnv.AUTO_LOAD_POLYMORPHIC_CLASSES);
if(wrapper == null)
throw new ProtostuffException("polymorphic pojo not registered: " + className);
return wrapper;
}
protected Schema writeMessageIdTo(Output output, int fieldNumber, Message message)
throws IOException
{
output.writeString(fieldNumber, message.getClass().getName(), false);
return message.cachedSchema();
}
protected void writeArrayIdTo(Output output, Class> componentType)
throws IOException
{
output.writeString(RuntimeFieldFactory.ID_ARRAY, componentType.getName(), false);
}
protected void transferArrayId(Input input, Output output, int fieldNumber,
boolean mapped) throws IOException
{
input.transferByteRangeTo(output, true, fieldNumber, false);
}
protected Class> resolveArrayComponentTypeFrom(Input input,
boolean mapped) throws IOException
{
return resolveClass(input.readString());
}
static Class> resolveClass(String className)
{
final RuntimeFieldFactory