org.apache.cayenne.remote.hessian.HessianConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cayenne-client-nodeps
Show all versions of cayenne-client-nodeps
Cayenne Object Persistence Framework
/*****************************************************************
* 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.cayenne.remote.hessian;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import org.apache.cayenne.CayenneRuntimeException;
import org.apache.cayenne.map.EntityResolver;
import org.apache.cayenne.util.Util;
import com.caucho.hessian.io.AbstractSerializerFactory;
import com.caucho.hessian.io.SerializerFactory;
/**
* A utility class that configures Hessian serialization properties using reflection.
*
* @since 1.2
* @author Andrus Adamchik
*/
public class HessianConfig {
/**
* Creates a Hessian SerializerFactory configured with zero or more
* AbstractSerializerFactory extensions. Extensions are specified as class names. This
* method can inject EntityResolver if an extension factory class defines
* setEntityResolver(EntityResolver) method.
*
* @param factoryNames an array of factory class names. Each class must be a concrete
* subclass of com.caucho.hessian.io.AbstractSerializerFactory
* and have a default constructor.
* @param resolver if not null, EntityResolver will be injected into all factories
* that implement setEntityResolver(EntityResolver) method.
*/
public static SerializerFactory createFactory(
String[] factoryNames,
EntityResolver resolver) {
SerializerFactory factory = new SerializerFactory();
if (factoryNames != null && factoryNames.length > 0) {
for (int i = 0; i < factoryNames.length; i++) {
try {
factory.addFactory(loadFactory(factoryNames[i], resolver));
}
catch (Exception e) {
throw new CayenneRuntimeException("Error configuring factory class "
+ factoryNames[i], e);
}
}
}
return factory;
}
static AbstractSerializerFactory loadFactory(
String factoryName,
EntityResolver resolver) throws Exception {
ClassLoader loader = Thread.currentThread().getContextClassLoader();
Class factoryClass = Class.forName(factoryName, true, loader);
if (!AbstractSerializerFactory.class.isAssignableFrom(factoryClass)) {
throw new IllegalArgumentException(factoryClass
+ " is not a AbstractSerializerFactory");
}
Constructor c = factoryClass.getDeclaredConstructor(new Class[] {});
if (!Util.isAccessible(c)) {
c.setAccessible(true);
}
AbstractSerializerFactory object = (AbstractSerializerFactory) c
.newInstance(null);
if (resolver != null) {
try {
Method setter = factoryClass.getDeclaredMethod(
"setEntityResolver",
new Class[] {
EntityResolver.class
});
if (!Util.isAccessible(setter)) {
setter.setAccessible(true);
}
setter.invoke(object, new Object[] {
resolver
});
}
catch (Exception e) {
// ignore injection exception
}
}
return object;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy