📄 cmsxmltemplateloader.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/com/opencms/flex/Attic/CmsXmlTemplateLoader.java,v $
* Date : $Date: 2003/05/13 13:18:20 $
* Version: $Revision: 1.20.2.1 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (C) 2002 - 2003 Alkacon Software (http://www.alkacon.com)
*
* 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.
*
* For further information about Alkacon Software, please see the
* company website: http://www.alkacon.com
*
* For further information about OpenCms, please see the
* project website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package com.opencms.flex;
import com.opencms.core.A_OpenCms;
import com.opencms.core.I_CmsRequest;
import com.opencms.file.CmsFile;
import com.opencms.file.CmsObject;
import com.opencms.file.CmsResource;
import com.opencms.flex.cache.CmsFlexCache;
import com.opencms.flex.cache.CmsFlexController;
import com.opencms.flex.cache.CmsFlexRequest;
import com.opencms.flex.cache.CmsFlexResponse;
import com.opencms.launcher.CmsXmlLauncher;
import com.opencms.util.Encoder;
import java.io.IOException;
import javax.servlet.ServletException;
import javax.servlet.ServletRequest;
import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
/**
* Implementation of the {@link I_CmsResourceLoader} and
* the {@link com.opencms.launcher.I_CmsLauncher} interface for
* XMLTemplates.<p>
*
* This implementation can deliver XMLTemplates directly since it extends
* the {@link com.opencms.launcher.CmsXmlLauncher}. It is also usable to include
* XMLTemplates as sub-elements on a JSP page since it implements the
* {@link I_CmsResourceLoader} interface.
*
* @author Alexander Kandzior (a.kandzior@alkacon.com)
*
* @version $Revision: 1.20.2.1 $
* @since FLEX alpha 1
*/
public class CmsXmlTemplateLoader extends CmsXmlLauncher implements I_CmsResourceLoader {
/** The CmsFlexCache used to store generated cache entries in */
private static CmsFlexCache m_cache;
/** Required to access the XMLTemplate load mechanism */
private A_OpenCms m_openCms = null;
/** Flag for debugging output. Set to 9 for maximum verbosity. */
private static final int DEBUG = 0;
/**
* The constructor of the class is empty and does nothing.
*/
public CmsXmlTemplateLoader() {
// NOOP
}
/**
* Destroy this ResourceLoder, this is a NOOP so far.
*/
public void destroy() {
// NOOP
}
/**
* Return a String describing the ResourceLoader,
* which is <code>"A XMLTemplate loader that extends from com.opencms.launcher.CmsXmlLauncher"</code>.<p>
*
* @return a describing String for the ResourceLoader
*/
public String getResourceLoaderInfo() {
return "A XMLTemplate loader that extends from com.opencms.launcher.CmsXmlLauncher";
}
/**
* Initialize the ResourceLoader, the OpenCms parameter is
* saved here for later access to <code>generateOutput()</code>.<p>
*
* @param openCms used to access <code>generateOutput()</code> later
*/
public void init(A_OpenCms openCms) {
// This must be saved for call to this.generateOutput();
m_openCms = openCms;
m_cache = (CmsFlexCache)A_OpenCms.getRuntimeProperty(C_LOADER_CACHENAME);
if (C_LOGGING && A_OpenCms.isLogging(C_FLEX_LOADER))
A_OpenCms.log(C_FLEX_LOADER, this.getClass().getName() + " initialized!");
}
/**
* Basic top-page processing method for this I_CmsResourceLoader,
* this method is called if the page is called as a sub-element
* on a page not already loded with a I_CmsResourceLoader,
* which most often would be an I_CmsLauncher then.<p>
*
* @param cms the initialized CmsObject which provides user permissions
* @param file the requested OpenCms VFS resource
* @param req the original servlet request
* @param res the original servlet response
*
* @throws ServletException might be thrown in the process of including the JSP
* @throws IOException might be thrown in the process of including the JSP
*
* @see I_CmsResourceLoader
* @see #service(CmsObject, CmsResource, ServletRequest, ServletResponse)
*/
public void load(CmsObject cms, CmsFile file, HttpServletRequest req, HttpServletResponse res)
throws ServletException, IOException {
CmsFlexController controller = (CmsFlexController)req.getAttribute(CmsFlexController.ATTRIBUTE_NAME);
CmsFlexRequest f_req;
CmsFlexResponse f_res;
if (controller != null) {
// re-use currently wrapped request / response
f_req = controller.getCurrentRequest();
f_res = controller.getCurrentResponse();
} else {
// create new request / response wrappers
controller = new CmsFlexController(cms, file, m_cache, req, res);
req.setAttribute(CmsFlexController.ATTRIBUTE_NAME, controller);
f_req = new CmsFlexRequest(req, controller);
f_res = new CmsFlexResponse(res, controller, false, false);
controller.pushRequest(f_req);
controller.pushResponse(f_res);
}
service(cms, file, f_req, f_res);
}
/**
* Does the job of including the XMLTemplate,
* this method is called directly if the element is
* called as a sub-element from another I_CmsResourceLoader.<p>
*
* @param cms used to access the OpenCms VFS
* @param file the reqested JSP file resource in the VFS
* @param req the current request
* @param res the current response
*
* @throws ServletException might be thrown in the process of including the JSP
* @throws IOException might be thrown in the process of including the JSP
*
* @see com.opencms.flex.cache.CmsFlexRequestDispatcher
*/
public void service(CmsObject cms, CmsResource file, ServletRequest req, ServletResponse res)
throws ServletException, IOException {
long timer1 = 0;
if (DEBUG > 0) {
timer1 = System.currentTimeMillis();
System.err.println("============ CmsXmlTemplateLoader loading: " + file.getAbsolutePath());
System.err.println("CmsXmlTemplateLoader.service() cms uri is: " + cms.getRequestContext().getUri());
}
// save the original context settings
String rnc = cms.getRequestContext().getEncoding().trim();
String oldUri = cms.getRequestContext().getUri();
I_CmsRequest cms_req = cms.getRequestContext().getRequest();
HttpServletRequest originalreq = (HttpServletRequest)cms_req.getOriginalRequest();
try {
// get the CmsRequest
byte[] result = null;
com.opencms.file.CmsFile fx = cms.readFile(file.getAbsolutePath());
// care about encoding issues
String dnc = A_OpenCms.getDefaultEncoding().trim();
String enc = cms.readProperty(fx.getAbsolutePath(), C_PROPERTY_CONTENT_ENCODING, true, dnc).trim();
// fake the called URI (otherwise XMLTemplate / ElementCache would not work)
cms.getRequestContext().setUri(fx.getAbsolutePath());
cms_req.setOriginalRequest(req);
cms.getRequestContext().setEncoding(enc);
if (DEBUG > 1) {
System.err.println("CmsXmlTemplateLoader.service(): Encodig set to " + cms.getRequestContext().getEncoding());
System.err.println("CmsXmlTemplateLoader.service(): Uri set to " + cms.getRequestContext().getUri());
}
// process the included XMLTemplate
result = generateOutput(cms, fx, fx.getLauncherClassname(), cms_req);
// append the result to the output stream
if(result != null) {
// Encoding project:
// The byte array must internally be encoded in the OpenCms
// default encoding. It will be converted to the requested encoding
// on the most top-level JSP element
result = Encoder.changeEncoding(result, enc, dnc);
if (DEBUG > 1) System.err.println("CmsXmlTemplateLoader.service(): encoding=" + enc + " requestEncoding=" + rnc + " defaultEncoding=" + dnc);
res.getOutputStream().write(result);
}
} catch (Exception e) {
if (DEBUG > 0) e.printStackTrace(System.err);
throw new ServletException("Error in CmsXmlTemplateLoader processing", e);
} finally {
// restore the context settings
cms_req.setOriginalRequest(originalreq);
cms.getRequestContext().setEncoding(rnc);
cms.getRequestContext().setUri(oldUri);
if (DEBUG > 1) {
System.err.println("CmsXmlTemplateLoader.service(): Encodig reset to " + cms.getRequestContext().getEncoding());
System.err.println("CmsXmlTemplateLoader.service(): Uri reset to " + cms.getRequestContext().getUri());
}
}
if (DEBUG > 0) {
long timer2 = System.currentTimeMillis() - timer1;
System.err.println("============ CmsXmlTemplateLoader time delivering XmlTemplate for " + file.getAbsolutePath() + ": " + timer2 + "ms");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -