net.ymate.platform.webmvc.view.impl.FreemarkerView.java Source code

Java tutorial

Introduction

Here is the source code for net.ymate.platform.webmvc.view.impl.FreemarkerView.java

Source

/*
 * Copyright 2007-2016 the original author or authors.
 *
 * 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 net.ymate.platform.webmvc.view.impl;

import freemarker.cache.FileTemplateLoader;
import freemarker.cache.MultiTemplateLoader;
import freemarker.cache.TemplateLoader;
import freemarker.template.Configuration;
import freemarker.template.TemplateExceptionHandler;
import net.ymate.platform.core.util.RuntimeUtils;
import net.ymate.platform.webmvc.IWebMvc;
import net.ymate.platform.webmvc.context.WebContext;
import net.ymate.platform.webmvc.view.AbstractView;
import org.apache.commons.lang.StringUtils;

import java.io.*;
import java.util.ArrayList;
import java.util.List;

/**
 * Freemarker
 *
 * @author  (suninformation@163.com) on 2011-10-31 ?08:45:22
 * @version 1.0
 */
public class FreemarkerView extends AbstractView {

    static Configuration __freemarkerConfig;

    String __path;

    public static FreemarkerView bind() {
        return new FreemarkerView();
    }

    public static FreemarkerView bind(String path) {
        return new FreemarkerView(path);
    }

    public static FreemarkerView bind(IWebMvc owner, String path) {
        return new FreemarkerView(owner, path);
    }

    /**
     * 
     *
     * @param owner MVC?
     * @param path  FTL
     */
    public FreemarkerView(IWebMvc owner, String path) {
        __doViewInit(owner);
        __path = path;
    }

    public FreemarkerView() {
        __doViewInit(WebContext.getContext().getOwner());
    }

    public FreemarkerView(String path) {
        this(WebContext.getContext().getOwner(), path);
    }

    @Override
    protected void __doViewInit(IWebMvc owner) {
        super.__doViewInit(owner);
        // ?Freemarker??
        if (__freemarkerConfig == null) {
            __freemarkerConfig = new Configuration(Configuration.VERSION_2_3_22);
            __freemarkerConfig.setDefaultEncoding(owner.getModuleCfg().getDefaultCharsetEncoding());
            __freemarkerConfig.setTemplateExceptionHandler(TemplateExceptionHandler.HTML_DEBUG_HANDLER);
            //
            List<TemplateLoader> _tmpLoaders = new ArrayList<TemplateLoader>();
            try {
                if (__baseViewPath.startsWith("/WEB-INF")) {
                    _tmpLoaders.add(new FileTemplateLoader(new File(RuntimeUtils.getRootPath(),
                            StringUtils.substringAfter(__baseViewPath, "/WEB-INF/"))));
                } else {
                    _tmpLoaders.add(new FileTemplateLoader(new File(__baseViewPath)));
                }
                //
                __freemarkerConfig.setTemplateLoader(
                        new MultiTemplateLoader(_tmpLoaders.toArray(new TemplateLoader[_tmpLoaders.size()])));
            } catch (IOException e) {
                throw new Error(RuntimeUtils.unwrapThrow(e));
            }
        }
    }

    protected void __doProcessPath() {
        if (StringUtils.isNotBlank(__contentType)) {
            WebContext.getResponse().setContentType(__contentType);
        }
        if (StringUtils.isBlank(__path)) {
            String _mapping = WebContext.getRequestContext().getRequestMapping();
            if (_mapping.endsWith("/")) {
                _mapping = _mapping.substring(0, _mapping.length() - 1);
            }
            __path = _mapping + ".ftl";
        } else {
            if (__path.startsWith(__baseViewPath)) {
                __path = StringUtils.substringAfter(__path, __baseViewPath);
            }
            if (!__path.endsWith(".ftl")) {
                __path += ".ftl";
            }
        }
    }

    protected void __doRenderView() throws Exception {
        __doProcessPath();
        __freemarkerConfig.getTemplate(__path, WebContext.getContext().getLocale()).process(__attributes,
                WebContext.getResponse().getWriter());
    }

    public void render(OutputStream output) throws Exception {
        __doProcessPath();
        __freemarkerConfig.getTemplate(__path, WebContext.getContext().getLocale()).process(__attributes,
                new BufferedWriter(new OutputStreamWriter(output)));
    }
}