org.icefaces.ace.component.animation.BehaviorStateHolderSaver Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of icefaces-ace Show documentation
Show all versions of icefaces-ace Show documentation
${icefaces.product.name} ACE Component Library
The newest version!
/*
* Copyright 2004-2014 ICEsoft Technologies Canada Corp.
*
* 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 org.icefaces.ace.component.animation;
import java.io.Serializable;
import javax.faces.component.StateHolder;
import javax.faces.context.FacesContext;
/**
*
*/
public class BehaviorStateHolderSaver {
private String className;
private Serializable savedState = null;
public BehaviorStateHolderSaver(FacesContext context, Object toSave) {
className = toSave.getClass().getName();
if (toSave instanceof StateHolder) {
// do not save an attached object that is marked transient.
if (!((StateHolder) toSave).isTransient()) {
savedState =
(Serializable) ((StateHolder) toSave).saveState(context);
} else {
className = null;
}
} else if (toSave instanceof Serializable) {
savedState = (Serializable) toSave;
className = null;
}
}
public Object restore(FacesContext context) throws IllegalStateException {
Object result = null;
Class toRestoreClass;
// if the Object to save implemented Serializable but not
// StateHolder
if (null == className && null != savedState) {
return savedState;
}
// if the Object to save did not implement Serializable or
// StateHolder
if (className == null) {
return null;
}
// else the object to save did implement StateHolder
try {
toRestoreClass = loadClass(className, this);
}
catch (ClassNotFoundException e) {
throw new IllegalStateException(e);
}
if (null != toRestoreClass) {
try {
result = toRestoreClass.newInstance();
}
catch (InstantiationException e) {
throw new IllegalStateException(e);
}
catch (IllegalAccessException a) {
throw new IllegalStateException(a);
}
}
if (null != result && null != savedState &&
result instanceof StateHolder) {
// don't need to check transient, since that was done on
// the saving side.
((StateHolder) result).restoreState(context, savedState);
}
return result;
}
private static Class loadClass(String name,
Object fallbackClass) throws ClassNotFoundException {
ClassLoader loader =
Thread.currentThread().getContextClassLoader();
if (loader == null) {
loader = fallbackClass.getClass().getClassLoader();
}
return Class.forName(name, false, loader);
}
}