/** * Copyright (c) 2000-2012 Liferay, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or modify it under * the terms of the GNU Lesser General Public License as published by the Free * Software Foundation; either version 2.1 of the License, or (at your option) * any later version. * * This library is distributed in the hope that it will be useful, but WITHOUT * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more * details. */ package com.ese.ils.beta.service; import com.ese.ils.beta.model.FavoriteClp; import com.ese.ils.beta.model.ModuleClp; import com.ese.ils.beta.model.PanicButtonClp; import com.ese.ils.beta.model.QuestionClp; import com.ese.ils.beta.model.SlideClp; import com.ese.ils.beta.model.UserInfoClp; import com.liferay.portal.kernel.exception.PortalException; import com.liferay.portal.kernel.exception.SystemException; import com.liferay.portal.kernel.io.unsync.UnsyncByteArrayInputStream; import com.liferay.portal.kernel.io.unsync.UnsyncByteArrayOutputStream; import com.liferay.portal.kernel.log.Log; import com.liferay.portal.kernel.log.LogFactoryUtil; import com.liferay.portal.kernel.util.ClassLoaderObjectInputStream; import com.liferay.portal.kernel.util.PropsUtil; import com.liferay.portal.kernel.util.Validator; import com.liferay.portal.model.BaseModel; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; import java.lang.reflect.Method; import java.util.ArrayList; import java.util.List; /** * @author Brian Wing Shun Chan */ public class ClpSerializer { public static String getServletContextName() { if (Validator.isNotNull(_servletContextName)) { return _servletContextName; } synchronized (ClpSerializer.class) { if (Validator.isNotNull(_servletContextName)) { return _servletContextName; } try { ClassLoader classLoader = ClpSerializer.class.getClassLoader(); Class<?> portletPropsClass = classLoader.loadClass( "com.liferay.util.portlet.PortletProps"); Method getMethod = portletPropsClass.getMethod("get", new Class<?>[] { String.class }); String portletPropsServletContextName = (String)getMethod.invoke(null, "ils-beta-portlet-deployment-context"); if (Validator.isNotNull(portletPropsServletContextName)) { _servletContextName = portletPropsServletContextName; } } catch (Throwable t) { if (_log.isInfoEnabled()) { _log.info( "Unable to locate deployment context from portlet properties"); } } if (Validator.isNull(_servletContextName)) { try { String propsUtilServletContextName = PropsUtil.get( "ils-beta-portlet-deployment-context"); if (Validator.isNotNull(propsUtilServletContextName)) { _servletContextName = propsUtilServletContextName; } } catch (Throwable t) { if (_log.isInfoEnabled()) { _log.info( "Unable to locate deployment context from portal properties"); } } } if (Validator.isNull(_servletContextName)) { _servletContextName = "ils-beta-portlet"; } return _servletContextName; } } public static Object translateInput(BaseModel<?> oldModel) { Class<?> oldModelClass = oldModel.getClass(); String oldModelClassName = oldModelClass.getName(); if (oldModelClassName.equals(FavoriteClp.class.getName())) { return translateInputFavorite(oldModel); } if (oldModelClassName.equals(ModuleClp.class.getName())) { return translateInputModule(oldModel); } if (oldModelClassName.equals(PanicButtonClp.class.getName())) { return translateInputPanicButton(oldModel); } if (oldModelClassName.equals(QuestionClp.class.getName())) { return translateInputQuestion(oldModel); } if (oldModelClassName.equals(SlideClp.class.getName())) { return translateInputSlide(oldModel); } if (oldModelClassName.equals(UserInfoClp.class.getName())) { return translateInputUserInfo(oldModel); } return oldModel; } public static Object translateInput(List<Object> oldList) { List<Object> newList = new ArrayList<Object>(oldList.size()); for (int i = 0; i < oldList.size(); i++) { Object curObj = oldList.get(i); newList.add(translateInput(curObj)); } return newList; } public static Object translateInputFavorite(BaseModel<?> oldModel) { FavoriteClp oldClpModel = (FavoriteClp)oldModel; BaseModel<?> newModel = oldClpModel.getFavoriteRemoteModel(); newModel.setModelAttributes(oldClpModel.getModelAttributes()); return newModel; } public static Object translateInputModule(BaseModel<?> oldModel) { ModuleClp oldClpModel = (ModuleClp)oldModel; BaseModel<?> newModel = oldClpModel.getModuleRemoteModel(); newModel.setModelAttributes(oldClpModel.getModelAttributes()); return newModel; } public static Object translateInputPanicButton(BaseModel<?> oldModel) { PanicButtonClp oldClpModel = (PanicButtonClp)oldModel; BaseModel<?> newModel = oldClpModel.getPanicButtonRemoteModel(); newModel.setModelAttributes(oldClpModel.getModelAttributes()); return newModel; } public static Object translateInputQuestion(BaseModel<?> oldModel) { QuestionClp oldClpModel = (QuestionClp)oldModel; BaseModel<?> newModel = oldClpModel.getQuestionRemoteModel(); newModel.setModelAttributes(oldClpModel.getModelAttributes()); return newModel; } public static Object translateInputSlide(BaseModel<?> oldModel) { SlideClp oldClpModel = (SlideClp)oldModel; BaseModel<?> newModel = oldClpModel.getSlideRemoteModel(); newModel.setModelAttributes(oldClpModel.getModelAttributes()); return newModel; } public static Object translateInputUserInfo(BaseModel<?> oldModel) { UserInfoClp oldClpModel = (UserInfoClp)oldModel; BaseModel<?> newModel = oldClpModel.getUserInfoRemoteModel(); newModel.setModelAttributes(oldClpModel.getModelAttributes()); return newModel; } public static Object translateInput(Object obj) { if (obj instanceof BaseModel<?>) { return translateInput((BaseModel<?>)obj); } else if (obj instanceof List<?>) { return translateInput((List<Object>)obj); } else { return obj; } } public static Object translateOutput(BaseModel<?> oldModel) { Class<?> oldModelClass = oldModel.getClass(); String oldModelClassName = oldModelClass.getName(); if (oldModelClassName.equals("com.ese.ils.beta.model.impl.FavoriteImpl")) { return translateOutputFavorite(oldModel); } if (oldModelClassName.equals("com.ese.ils.beta.model.impl.ModuleImpl")) { return translateOutputModule(oldModel); } if (oldModelClassName.equals( "com.ese.ils.beta.model.impl.PanicButtonImpl")) { return translateOutputPanicButton(oldModel); } if (oldModelClassName.equals("com.ese.ils.beta.model.impl.QuestionImpl")) { return translateOutputQuestion(oldModel); } if (oldModelClassName.equals("com.ese.ils.beta.model.impl.SlideImpl")) { return translateOutputSlide(oldModel); } if (oldModelClassName.equals("com.ese.ils.beta.model.impl.UserInfoImpl")) { return translateOutputUserInfo(oldModel); } return oldModel; } public static Object translateOutput(List<Object> oldList) { List<Object> newList = new ArrayList<Object>(oldList.size()); for (int i = 0; i < oldList.size(); i++) { Object curObj = oldList.get(i); newList.add(translateOutput(curObj)); } return newList; } public static Object translateOutput(Object obj) { if (obj instanceof BaseModel<?>) { return translateOutput((BaseModel<?>)obj); } else if (obj instanceof List<?>) { return translateOutput((List<Object>)obj); } else { return obj; } } public static Throwable translateThrowable(Throwable throwable) { if (_useReflectionToTranslateThrowable) { try { UnsyncByteArrayOutputStream unsyncByteArrayOutputStream = new UnsyncByteArrayOutputStream(); ObjectOutputStream objectOutputStream = new ObjectOutputStream(unsyncByteArrayOutputStream); objectOutputStream.writeObject(throwable); objectOutputStream.flush(); objectOutputStream.close(); UnsyncByteArrayInputStream unsyncByteArrayInputStream = new UnsyncByteArrayInputStream(unsyncByteArrayOutputStream.unsafeGetByteArray(), 0, unsyncByteArrayOutputStream.size()); Thread currentThread = Thread.currentThread(); ClassLoader contextClassLoader = currentThread.getContextClassLoader(); ObjectInputStream objectInputStream = new ClassLoaderObjectInputStream(unsyncByteArrayInputStream, contextClassLoader); throwable = (Throwable)objectInputStream.readObject(); objectInputStream.close(); return throwable; } catch (SecurityException se) { if (_log.isInfoEnabled()) { _log.info("Do not use reflection to translate throwable"); } _useReflectionToTranslateThrowable = false; } catch (Throwable throwable2) { _log.error(throwable2, throwable2); return throwable2; } } Class<?> clazz = throwable.getClass(); String className = clazz.getName(); if (className.equals(PortalException.class.getName())) { return new PortalException(); } if (className.equals(SystemException.class.getName())) { return new SystemException(); } if (className.equals("com.ese.ils.beta.NoSuchFavoriteException")) { return new com.ese.ils.beta.NoSuchFavoriteException(); } if (className.equals("com.ese.ils.beta.NoSuchModuleException")) { return new com.ese.ils.beta.NoSuchModuleException(); } if (className.equals("com.ese.ils.beta.NoSuchPanicButtonException")) { return new com.ese.ils.beta.NoSuchPanicButtonException(); } if (className.equals("com.ese.ils.beta.NoSuchQuestionException")) { return new com.ese.ils.beta.NoSuchQuestionException(); } if (className.equals("com.ese.ils.beta.NoSuchSlideException")) { return new com.ese.ils.beta.NoSuchSlideException(); } if (className.equals("com.ese.ils.beta.NoSuchUserInfoException")) { return new com.ese.ils.beta.NoSuchUserInfoException(); } return throwable; } public static Object translateOutputFavorite(BaseModel<?> oldModel) { FavoriteClp newModel = new FavoriteClp(); newModel.setModelAttributes(oldModel.getModelAttributes()); newModel.setFavoriteRemoteModel(oldModel); return newModel; } public static Object translateOutputModule(BaseModel<?> oldModel) { ModuleClp newModel = new ModuleClp(); newModel.setModelAttributes(oldModel.getModelAttributes()); newModel.setModuleRemoteModel(oldModel); return newModel; } public static Object translateOutputPanicButton(BaseModel<?> oldModel) { PanicButtonClp newModel = new PanicButtonClp(); newModel.setModelAttributes(oldModel.getModelAttributes()); newModel.setPanicButtonRemoteModel(oldModel); return newModel; } public static Object translateOutputQuestion(BaseModel<?> oldModel) { QuestionClp newModel = new QuestionClp(); newModel.setModelAttributes(oldModel.getModelAttributes()); newModel.setQuestionRemoteModel(oldModel); return newModel; } public static Object translateOutputSlide(BaseModel<?> oldModel) { SlideClp newModel = new SlideClp(); newModel.setModelAttributes(oldModel.getModelAttributes()); newModel.setSlideRemoteModel(oldModel); return newModel; } public static Object translateOutputUserInfo(BaseModel<?> oldModel) { UserInfoClp newModel = new UserInfoClp(); newModel.setModelAttributes(oldModel.getModelAttributes()); newModel.setUserInfoRemoteModel(oldModel); return newModel; } private static Log _log = LogFactoryUtil.getLog(ClpSerializer.class); private static String _servletContextName; private static boolean _useReflectionToTranslateThrowable = true; }