📄 cmsflexcacheentry.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/com/opencms/flex/cache/Attic/CmsFlexCacheEntry.java,v $
* Date : $Date: 2003/05/13 13:18:20 $
* Version: $Revision: 1.9.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.cache;
import com.opencms.flex.util.I_CmsFlexLruCacheObject;
import java.util.Iterator;
import java.util.Map;
/**
* Contains the contents of a cached resource.<p>
*
* It is basically a list of pre-generated output,
* include() calls to other resources (with request parameters) and http headers that this
* resource requires to be set.<p>
*
* A CmsFlexCacheEntry might also describe a redirect-call, but in this case
* nothing else will be cached.<p>
*
* The pre-generated output is saved in <code>byte[]</code> arrays.
* The include() calls are saved as Strings of the included resource name,
* the parameters for the calls are saved in a HashMap.
* The headers are saved in a HashMap.
* In case of a redirect, the redircet target is cached in a String.<p>
*
* The CmsFlexCacheEntry can also have a timeout value, which indicates the time
* that his entry will become invalid and should thus be cleared from the cache.<p>
*
* @author Alexander Kandzior (a.kandzior@alkacon.com)
* @author Thomas Weckert (t.weckert@alkacon.com)
* @see com.opencms.flex.util.I_CmsFlexLruCacheObject
* @version $Revision: 1.9.2.1 $
*/
public class CmsFlexCacheEntry extends Object implements I_CmsFlexLruCacheObject {
/** Initial size for lists */
public static final int C_INITIAL_CAPACITY_LISTS = 11;
// Alternatives: 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71
/** The list of items for this resource */
private java.util.List m_elements;
/** A Map of cached headers for this resource */
private java.util.Map m_headers;
/** A redirection target (if redirection is set) */
private String m_redirectTarget;
/** Debug switch */
private static final int DEBUG = 0;
/** Age for timeout */
private long m_timeout = -1;
/** Indicates if this cache entry is completed */
private boolean m_completed = false;
/** The CacheEntry's size in kBytes */
private int m_byteSize;
/** Pointer to the next cache entry in the LRU cache */
private I_CmsFlexLruCacheObject m_Next;
/** Pointer to the previous cache entry in the LRU cache. */
private I_CmsFlexLruCacheObject m_Previous;
/** The variation map where this cache entry is stored. */
private Map m_VariationMap;
/** The key under which this cache entry is stored in the variation map. */
private String m_VariationKey;
/** Static counter to give each entry a unique ID. */
private static int ID_COUNTER = 0;
/** The internal ID of this cache entry. */
private int ID;
/**
* Constructor for class CmsFlexCacheEntry.<p>
*
* The way to use this class is to first use this empty constructor
* and later add data with the various add methods.
*/
public CmsFlexCacheEntry() {
m_elements = new java.util.ArrayList(C_INITIAL_CAPACITY_LISTS);
m_redirectTarget = null;
m_headers = null;
m_byteSize = 0;
this.setNextLruObject( null );
this.setPreviousLruObject( null );
this.ID = CmsFlexCacheEntry.ID_COUNTER++;
}
/**
* Adds an array of bytes to this cache entry,
* this will usually be the result of some kind of output - stream.<p>
*
* @param bytes the output to save in the cache
*/
public void add(byte[] bytes) {
if (m_completed) return;
if (m_redirectTarget == null) {
// Add only if not already redirected
m_elements.add(bytes);
m_byteSize += bytes.length;
}
}
/**
* Add an include - call target resource to this cache entry.<p>
*
* @param resource a name of a resource in the OpenCms VFS
* @param parameters a map of parameters specific to this include call
*/
public void add(String resource, java.util.Map paramters) {
if (m_completed) return;
if (m_redirectTarget == null) {
// Add only if not already redirected
m_elements.add(resource);
if (paramters == null) paramters = java.util.Collections.EMPTY_MAP;
m_elements.add(paramters);
m_byteSize += resource.getBytes().length;
}
}
/**
* Add a map of headers to this cache entry,
* which are usually collected in the class CmsFlexResponse first.<p>
*
* @param headers the map of headers to add to the entry
*/
public void addHeaders(java.util.Map headers) {
if (m_completed) return;
m_headers = headers;
Iterator allHeaders = m_headers.keySet().iterator();
while (allHeaders.hasNext()) {
this.m_byteSize += ((String)allHeaders.next()).getBytes().length;
}
}
/**
* Set a redirect target for this cache entry.<p>
*
* <b>Important:</b>
* When a redirect target is set, all saved data is thrown away,
* and new data will not be saved in the cache entry.
* This is so since with a redirect nothing will be displayed
* in the browser anyway, so there is no point in saving the data.<p>
*
* @param target The redirect target (must be a valid URL).
*/
public void setRedirect(String target) {
if (m_completed) return;
m_redirectTarget = target;
this.m_byteSize = target.getBytes().length;
// If we have a redirect we don't need any other output or headers
m_elements = null;
m_headers = null;
}
/**
* Returns the list of data entries of this cache entry.<p>
*
* Data entries are byte arrays representing some kind of ouput
* or Strings representing include calls to other resources.
*
* @return the list of data elements of this cache entry
*/
public java.util.List elements() {
return m_elements;
}
/**
* Processing method for this cached entry.<p>
*
* If this method is called, it delivers the contents of
* the cached entry to the given request / response.
* This includes calls to all included resources.<p>
*
* @param req the request from the client
* @param res the server response
* @throws CmsException is thrown when problems writing to the response output-stream occur
* @throws ServletException might be thrown from call to RequestDispatcher.include()
* @throws IOException might be thrown from call to RequestDispatcher.include() or from Response.sendRedirect()
*/
public void service(CmsFlexRequest req, CmsFlexResponse res)
throws com.opencms.core.CmsException, javax.servlet.ServletException, java.io.IOException {
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -