com.ssavr.solr.service.ClpSerializer.java Source code

Java tutorial

Introduction

Here is the source code for com.ssavr.solr.service.ClpSerializer.java

Source

/**
 * Copyright (c) 2000-2011 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.ssavr.solr.service;

import com.liferay.portal.kernel.log.Log;
import com.liferay.portal.kernel.log.LogFactoryUtil;
import com.liferay.portal.kernel.util.PropsUtil;
import com.liferay.portal.kernel.util.Validator;
import com.liferay.portal.model.BaseModel;

import com.ssavr.solr.model.IceCreamClp;
import com.ssavr.solr.model.IceCreamDocumentsClp;

import java.lang.reflect.Method;

import java.util.ArrayList;
import java.util.Date;
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,
                        "liferay-solr-tutorial-portlet-deployment-context");

                if (Validator.isNotNull(portletPropsServletContextName)) {
                    _servletContextName = portletPropsServletContextName;
                }
            } catch (Throwable t) {
                if (_log.isWarnEnabled()) {
                    _log.warn("Unable to locate deployment context from portlet properties", t);
                }
            }

            if (Validator.isNull(_servletContextName)) {
                try {
                    String propsUtilServletContextName = PropsUtil
                            .get("liferay-solr-tutorial-portlet-deployment-context");

                    if (Validator.isNotNull(propsUtilServletContextName)) {
                        _servletContextName = propsUtilServletContextName;
                    }
                } catch (Throwable t) {
                    if (_log.isWarnEnabled()) {
                        _log.warn("Unable to locate deployment context from portal properties", t);
                    }
                }
            }

            if (Validator.isNull(_servletContextName)) {
                _servletContextName = "liferay-solr-tutorial-portlet";
            }

            return _servletContextName;
        }
    }

    public static void setClassLoader(ClassLoader classLoader) {
        _classLoader = classLoader;
    }

    public static Object translateInput(BaseModel<?> oldModel) {
        Class<?> oldModelClass = oldModel.getClass();

        String oldModelClassName = oldModelClass.getName();

        if (oldModelClassName.equals(IceCreamClp.class.getName())) {
            return translateInputIceCream(oldModel);
        }

        if (oldModelClassName.equals(IceCreamDocumentsClp.class.getName())) {
            return translateInputIceCreamDocuments(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 translateInputIceCream(BaseModel<?> oldModel) {
        IceCreamClp oldCplModel = (IceCreamClp) oldModel;

        Thread currentThread = Thread.currentThread();

        ClassLoader contextClassLoader = currentThread.getContextClassLoader();

        try {
            currentThread.setContextClassLoader(_classLoader);

            try {
                Class<?> newModelClass = Class.forName("com.ssavr.solr.model.impl.IceCreamImpl", true,
                        _classLoader);

                Object newModel = newModelClass.newInstance();

                Method method0 = newModelClass.getMethod("setUuid", new Class[] { String.class });

                String value0 = oldCplModel.getUuid();

                method0.invoke(newModel, value0);

                Method method1 = newModelClass.getMethod("setIceCreamId", new Class[] { Long.TYPE });

                Long value1 = new Long(oldCplModel.getIceCreamId());

                method1.invoke(newModel, value1);

                Method method2 = newModelClass.getMethod("setCompanyId", new Class[] { Long.TYPE });

                Long value2 = new Long(oldCplModel.getCompanyId());

                method2.invoke(newModel, value2);

                Method method3 = newModelClass.getMethod("setUserId", new Class[] { Long.TYPE });

                Long value3 = new Long(oldCplModel.getUserId());

                method3.invoke(newModel, value3);

                Method method4 = newModelClass.getMethod("setCreateDate", new Class[] { Date.class });

                Date value4 = oldCplModel.getCreateDate();

                method4.invoke(newModel, value4);

                Method method5 = newModelClass.getMethod("setModifiedDate", new Class[] { Date.class });

                Date value5 = oldCplModel.getModifiedDate();

                method5.invoke(newModel, value5);

                Method method6 = newModelClass.getMethod("setFlavor", new Class[] { String.class });

                String value6 = oldCplModel.getFlavor();

                method6.invoke(newModel, value6);

                Method method7 = newModelClass.getMethod("setName", new Class[] { String.class });

                String value7 = oldCplModel.getName();

                method7.invoke(newModel, value7);

                return newModel;
            } catch (Exception e) {
                _log.error(e, e);
            }
        } finally {
            currentThread.setContextClassLoader(contextClassLoader);
        }

        return oldModel;
    }

    public static Object translateInputIceCreamDocuments(BaseModel<?> oldModel) {
        IceCreamDocumentsClp oldCplModel = (IceCreamDocumentsClp) oldModel;

        Thread currentThread = Thread.currentThread();

        ClassLoader contextClassLoader = currentThread.getContextClassLoader();

        try {
            currentThread.setContextClassLoader(_classLoader);

            try {
                Class<?> newModelClass = Class.forName("com.ssavr.solr.model.impl.IceCreamDocumentsImpl", true,
                        _classLoader);

                Object newModel = newModelClass.newInstance();

                Method method0 = newModelClass.getMethod("setUuid", new Class[] { String.class });

                String value0 = oldCplModel.getUuid();

                method0.invoke(newModel, value0);

                Method method1 = newModelClass.getMethod("setIceCreamDocumentsId", new Class[] { Long.TYPE });

                Long value1 = new Long(oldCplModel.getIceCreamDocumentsId());

                method1.invoke(newModel, value1);

                Method method2 = newModelClass.getMethod("setCompanyId", new Class[] { Long.TYPE });

                Long value2 = new Long(oldCplModel.getCompanyId());

                method2.invoke(newModel, value2);

                Method method3 = newModelClass.getMethod("setUserId", new Class[] { Long.TYPE });

                Long value3 = new Long(oldCplModel.getUserId());

                method3.invoke(newModel, value3);

                Method method4 = newModelClass.getMethod("setCreateDate", new Class[] { Date.class });

                Date value4 = oldCplModel.getCreateDate();

                method4.invoke(newModel, value4);

                Method method5 = newModelClass.getMethod("setModifiedDate", new Class[] { Date.class });

                Date value5 = oldCplModel.getModifiedDate();

                method5.invoke(newModel, value5);

                Method method6 = newModelClass.getMethod("setDocumentId", new Class[] { Long.TYPE });

                Long value6 = new Long(oldCplModel.getDocumentId());

                method6.invoke(newModel, value6);

                Method method7 = newModelClass.getMethod("setIceCreamId", new Class[] { Long.TYPE });

                Long value7 = new Long(oldCplModel.getIceCreamId());

                method7.invoke(newModel, value7);

                return newModel;
            } catch (Exception e) {
                _log.error(e, e);
            }
        } finally {
            currentThread.setContextClassLoader(contextClassLoader);
        }

        return oldModel;
    }

    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.ssavr.solr.model.impl.IceCreamImpl")) {
            return translateOutputIceCream(oldModel);
        }

        if (oldModelClassName.equals("com.ssavr.solr.model.impl.IceCreamDocumentsImpl")) {
            return translateOutputIceCreamDocuments(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 Object translateOutputIceCream(BaseModel<?> oldModel) {
        Thread currentThread = Thread.currentThread();

        ClassLoader contextClassLoader = currentThread.getContextClassLoader();

        try {
            currentThread.setContextClassLoader(_classLoader);

            try {
                IceCreamClp newModel = new IceCreamClp();

                Class<?> oldModelClass = oldModel.getClass();

                Method method0 = oldModelClass.getMethod("getUuid");

                String value0 = (String) method0.invoke(oldModel, (Object[]) null);

                newModel.setUuid(value0);

                Method method1 = oldModelClass.getMethod("getIceCreamId");

                Long value1 = (Long) method1.invoke(oldModel, (Object[]) null);

                newModel.setIceCreamId(value1);

                Method method2 = oldModelClass.getMethod("getCompanyId");

                Long value2 = (Long) method2.invoke(oldModel, (Object[]) null);

                newModel.setCompanyId(value2);

                Method method3 = oldModelClass.getMethod("getUserId");

                Long value3 = (Long) method3.invoke(oldModel, (Object[]) null);

                newModel.setUserId(value3);

                Method method4 = oldModelClass.getMethod("getCreateDate");

                Date value4 = (Date) method4.invoke(oldModel, (Object[]) null);

                newModel.setCreateDate(value4);

                Method method5 = oldModelClass.getMethod("getModifiedDate");

                Date value5 = (Date) method5.invoke(oldModel, (Object[]) null);

                newModel.setModifiedDate(value5);

                Method method6 = oldModelClass.getMethod("getFlavor");

                String value6 = (String) method6.invoke(oldModel, (Object[]) null);

                newModel.setFlavor(value6);

                Method method7 = oldModelClass.getMethod("getName");

                String value7 = (String) method7.invoke(oldModel, (Object[]) null);

                newModel.setName(value7);

                return newModel;
            } catch (Exception e) {
                _log.error(e, e);
            }
        } finally {
            currentThread.setContextClassLoader(contextClassLoader);
        }

        return oldModel;
    }

    public static Object translateOutputIceCreamDocuments(BaseModel<?> oldModel) {
        Thread currentThread = Thread.currentThread();

        ClassLoader contextClassLoader = currentThread.getContextClassLoader();

        try {
            currentThread.setContextClassLoader(_classLoader);

            try {
                IceCreamDocumentsClp newModel = new IceCreamDocumentsClp();

                Class<?> oldModelClass = oldModel.getClass();

                Method method0 = oldModelClass.getMethod("getUuid");

                String value0 = (String) method0.invoke(oldModel, (Object[]) null);

                newModel.setUuid(value0);

                Method method1 = oldModelClass.getMethod("getIceCreamDocumentsId");

                Long value1 = (Long) method1.invoke(oldModel, (Object[]) null);

                newModel.setIceCreamDocumentsId(value1);

                Method method2 = oldModelClass.getMethod("getCompanyId");

                Long value2 = (Long) method2.invoke(oldModel, (Object[]) null);

                newModel.setCompanyId(value2);

                Method method3 = oldModelClass.getMethod("getUserId");

                Long value3 = (Long) method3.invoke(oldModel, (Object[]) null);

                newModel.setUserId(value3);

                Method method4 = oldModelClass.getMethod("getCreateDate");

                Date value4 = (Date) method4.invoke(oldModel, (Object[]) null);

                newModel.setCreateDate(value4);

                Method method5 = oldModelClass.getMethod("getModifiedDate");

                Date value5 = (Date) method5.invoke(oldModel, (Object[]) null);

                newModel.setModifiedDate(value5);

                Method method6 = oldModelClass.getMethod("getDocumentId");

                Long value6 = (Long) method6.invoke(oldModel, (Object[]) null);

                newModel.setDocumentId(value6);

                Method method7 = oldModelClass.getMethod("getIceCreamId");

                Long value7 = (Long) method7.invoke(oldModel, (Object[]) null);

                newModel.setIceCreamId(value7);

                return newModel;
            } catch (Exception e) {
                _log.error(e, e);
            }
        } finally {
            currentThread.setContextClassLoader(contextClassLoader);
        }

        return oldModel;
    }

    private static Log _log = LogFactoryUtil.getLog(ClpSerializer.class);
    private static ClassLoader _classLoader;
    private static String _servletContextName;
}