001    /**
002     * Copyright (c) 2000-2013 Liferay, Inc. All rights reserved.
003     *
004     * The contents of this file are subject to the terms of the Liferay Enterprise
005     * Subscription License ("License"). You may not use this file except in
006     * compliance with the License. You can obtain a copy of the License by
007     * contacting Liferay, Inc. See the License for the specific language governing
008     * permissions and limitations under the License, including but not limited to
009     * distribution rights of the Software.
010     *
011     *
012     *
013     */
014    
015    package com.liferay.portal.freemarker;
016    
017    import com.liferay.portal.util.ClassLoaderUtil;
018    
019    import freemarker.ext.beans.BeansWrapper;
020    
021    import freemarker.template.TemplateMethodModelEx;
022    import freemarker.template.TemplateModelException;
023    
024    import java.util.List;
025    
026    /**
027     * @author Raymond Aug??
028     */
029    public class LiferayObjectConstructor implements TemplateMethodModelEx {
030    
031            @Override
032            public Object exec(@SuppressWarnings("rawtypes") List arguments)
033                    throws TemplateModelException {
034    
035                    if (arguments.isEmpty()) {
036                            throw new TemplateModelException(
037                                    "This method must have at least one argument as the name of " +
038                                            "the class to instantiate");
039                    }
040    
041                    Class<?> clazz = null;
042    
043                    try {
044                            String className = String.valueOf(arguments.get(0));
045    
046                            clazz = Class.forName(
047                                    className, true, ClassLoaderUtil.getContextClassLoader());
048                    }
049                    catch (Exception e) {
050                            throw new TemplateModelException(e.getMessage());
051                    }
052    
053                    BeansWrapper beansWrapper = BeansWrapper.getDefaultInstance();
054    
055                    Object object = beansWrapper.newInstance(
056                            clazz, arguments.subList(1, arguments.size()));
057    
058                    return beansWrapper.wrap(object);
059            }
060    
061    }