package com.apress.progwt.server.gwt; /* * Copyright 2008 Google Inc. * * 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. */ import java.io.UnsupportedEncodingException; import java.lang.reflect.Field; import java.lang.reflect.Modifier; import java.util.ArrayList; import java.util.Arrays; import java.util.Comparator; import java.util.HashMap; import java.util.HashSet; import java.util.IdentityHashMap; import java.util.Map; import java.util.Set; import java.util.zip.CRC32; import com.google.gwt.user.server.rpc.impl.SerializedInstanceReference; /** * Serialization utility class used by the server-side RPC code. */ class SerializabilityUtil_1_5_3 { public static final String DEFAULT_ENCODING = "UTF-8"; /** * Comparator used to sort fields. */ public static final Comparator<Field> FIELD_COMPARATOR = new Comparator<Field>() { public int compare(Field f1, Field f2) { return f1.getName().compareTo(f2.getName()); } }; /** * A permanent cache of all computed CRCs on classes. This is safe to do * because a Class is guaranteed not to change within the lifetime of a * ClassLoader (and thus, this Map). Access must be synchronized. */ private static final Map<Class<?>, String> classCRC32Cache = new IdentityHashMap<Class<?>, String>(); /** * A permanent cache of all serializable fields on classes. This is safe to do * because a Class is guaranteed not to change within the lifetime of a * ClassLoader (and thus, this Map). Access must be synchronized. */ private static final Map<Class<?>, Field[]> classSerializableFieldsCache = new IdentityHashMap<Class<?>, Field[]>(); /** * A permanent cache of all which classes onto custom field serializers. This * is safe to do because a Class is guaranteed not to change within the * lifetime of a ClassLoader (and thus, this Map). Access must be * synchronized. */ private static final Map<Class<?>, Class<?>> classCustomSerializerCache = new IdentityHashMap<Class<?>, Class<?>>(); private static final String JRE_SERIALIZER_PACKAGE = "com.google.gwt.user.client.rpc.core"; private static final Map<String, String> SERIALIZED_PRIMITIVE_TYPE_NAMES = new HashMap<String, String>(); private static final Set<Class<?>> TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES = new HashSet<Class<?>>(); static { SERIALIZED_PRIMITIVE_TYPE_NAMES.put(boolean.class.getName(), "Z"); SERIALIZED_PRIMITIVE_TYPE_NAMES.put(byte.class.getName(), "B"); SERIALIZED_PRIMITIVE_TYPE_NAMES.put(char.class.getName(), "C"); SERIALIZED_PRIMITIVE_TYPE_NAMES.put(double.class.getName(), "D"); SERIALIZED_PRIMITIVE_TYPE_NAMES.put(float.class.getName(), "F"); SERIALIZED_PRIMITIVE_TYPE_NAMES.put(int.class.getName(), "I"); SERIALIZED_PRIMITIVE_TYPE_NAMES.put(long.class.getName(), "J"); SERIALIZED_PRIMITIVE_TYPE_NAMES.put(short.class.getName(), "S"); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(Boolean.class); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(Byte.class); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(Character.class); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(Double.class); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(Exception.class); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(Float.class); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(Integer.class); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(Long.class); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(Object.class); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(Short.class); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(String.class); TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.add(Throwable.class); } public static Field[] applyFieldSerializationPolicy(Class<?> clazz) { Field[] serializableFields = getCachedSerializableFieldsForClass(clazz); if (serializableFields == null) { ArrayList<Field> fieldList = new ArrayList<Field>(); Field[] fields = clazz.getDeclaredFields(); for (Field field : fields) { if (fieldQualifiesForSerialization(field)) { fieldList.add(field); } } serializableFields = fieldList.toArray(new Field[fieldList.size()]); // sort the fields by name Arrays.sort(serializableFields, 0, serializableFields.length, FIELD_COMPARATOR); putCachedSerializableFieldsForClass(clazz, serializableFields); } return serializableFields; } public static SerializedInstanceReference decodeSerializedInstanceReference( String encodedSerializedInstanceReference) { final String[] components = encodedSerializedInstanceReference.split(SerializedInstanceReference.SERIALIZED_REFERENCE_SEPARATOR); return new SerializedInstanceReference() { public String getName() { return components.length > 0 ? components[0] : ""; } public String getSignature() { return components.length > 1 ? components[1] : ""; } }; } public static String encodeSerializedInstanceReference(Class<?> instanceType) { return instanceType.getName() + SerializedInstanceReference.SERIALIZED_REFERENCE_SEPARATOR + getSerializationSignature(instanceType); } public static String getSerializationSignature(Class<?> instanceType) { String result = getCachedCRCForClass(instanceType); if (result == null) { CRC32 crc = new CRC32(); try { generateSerializationSignature(instanceType, crc); } catch (UnsupportedEncodingException e) { throw new RuntimeException( "Could not compute the serialization signature", e); } result = Long.toString(crc.getValue()); putCachedCRCForClass(instanceType, result); } return result; } public static String getSerializedTypeName(Class<?> instanceType) { if (instanceType.isPrimitive()) { return SERIALIZED_PRIMITIVE_TYPE_NAMES.get(instanceType.getName()); } return instanceType.getName(); } /** * Returns the {@link Class} which can serialize the given instance type. Note * that arrays never have custom field serializers. */ public static Class<?> hasCustomFieldSerializer(Class<?> instanceType) { assert (instanceType != null); if (instanceType.isArray()) { return null; } Class<?> result = getCachedSerializerForClass(instanceType); if (result != null) { // this class has a custom serializer return result; } if (containsCachedSerializerForClass(instanceType)) { // this class definitely has no custom serializer return null; } // compute whether this class has a custom serializer result = computeHasCustomFieldSerializer(instanceType); putCachedSerializerForClass(instanceType, result); return result; } /** * This method treats arrays in a special way. */ private static Class<?> computeHasCustomFieldSerializer(Class<?> instanceType) { assert (instanceType != null); String qualifiedTypeName = instanceType.getName(); ClassLoader classLoader = Thread.currentThread().getContextClassLoader(); String simpleSerializerName = qualifiedTypeName + "_CustomFieldSerializer"; Class<?> customSerializer = getCustomFieldSerializer(classLoader, simpleSerializerName); if (customSerializer != null) { return customSerializer; } // Try with the regular name Class<?> customSerializerClass = getCustomFieldSerializer(classLoader, JRE_SERIALIZER_PACKAGE + "." + simpleSerializerName); if (customSerializerClass != null) { return customSerializerClass; } return null; } private static boolean containsCachedSerializerForClass(Class<?> instanceType) { synchronized (classCustomSerializerCache) { return classCustomSerializerCache.containsKey(instanceType); } } private static boolean excludeImplementationFromSerializationSignature( Class<?> instanceType) { if (TYPES_WHOSE_IMPLEMENTATION_IS_EXCLUDED_FROM_SIGNATURES.contains(instanceType)) { return true; } return false; } private static boolean fieldQualifiesForSerialization(Field field) { if (Throwable.class == field.getDeclaringClass()) { /** * Only serialize Throwable's detailMessage field; all others are ignored. * * NOTE: Changing the set of fields that we serialize for Throwable will * necessitate a change to our JRE emulation's version of Throwable. */ if ("detailMessage".equals(field.getName())) { assert (isNotStaticTransientOrFinal(field)); return true; } else { return false; } } else { return isNotStaticTransientOrFinal(field); } } private static void generateSerializationSignature(Class<?> instanceType, CRC32 crc) throws UnsupportedEncodingException { crc.update(getSerializedTypeName(instanceType).getBytes(DEFAULT_ENCODING)); if (excludeImplementationFromSerializationSignature(instanceType)) { return; } Class<?> customSerializer = hasCustomFieldSerializer(instanceType); if (customSerializer != null) { generateSerializationSignature(customSerializer, crc); } else if (instanceType.isArray()) { generateSerializationSignature(instanceType.getComponentType(), crc); } else if (!instanceType.isPrimitive()) { Field[] fields = applyFieldSerializationPolicy(instanceType); for (Field field : fields) { assert (field != null); crc.update(field.getName().getBytes(DEFAULT_ENCODING)); crc.update(getSerializedTypeName(field.getType()).getBytes( DEFAULT_ENCODING)); } Class<?> superClass = instanceType.getSuperclass(); if (superClass != null) { generateSerializationSignature(superClass, crc); } } } private static String getCachedCRCForClass(Class<?> instanceType) { synchronized (classCRC32Cache) { return classCRC32Cache.get(instanceType); } } private static Field[] getCachedSerializableFieldsForClass(Class<?> clazz) { synchronized (classSerializableFieldsCache) { return classSerializableFieldsCache.get(clazz); } } private static Class<?> getCachedSerializerForClass(Class<?> instanceType) { synchronized (classCustomSerializerCache) { return classCustomSerializerCache.get(instanceType); } } private static Class<?> getCustomFieldSerializer(ClassLoader classLoader, String qualifiedSerialzierName) { try { Class<?> customSerializerClass = Class.forName(qualifiedSerialzierName, false, classLoader); return customSerializerClass; } catch (ClassNotFoundException e) { return null; } } private static boolean isNotStaticTransientOrFinal(Field field) { /* * Only serialize fields that are not static, transient and final. */ int fieldModifiers = field.getModifiers(); return !Modifier.isStatic(fieldModifiers) && !Modifier.isTransient(fieldModifiers) && !Modifier.isFinal(fieldModifiers); } private static void putCachedCRCForClass(Class<?> instanceType, String crc32) { synchronized (classCRC32Cache) { classCRC32Cache.put(instanceType, crc32); } } private static void putCachedSerializableFieldsForClass(Class<?> clazz, Field[] serializableFields) { synchronized (classSerializableFieldsCache) { classSerializableFieldsCache.put(clazz, serializableFields); } } private static void putCachedSerializerForClass(Class<?> instanceType, Class<?> customFieldSerializer) { synchronized (classCustomSerializerCache) { classCustomSerializerCache.put(instanceType, customFieldSerializer); } } }