/* * Copyright (C) 2000 - 2008 TagServlet Ltd * * This file is part of Open BlueDragon (OpenBD) CFML Server Engine. * * OpenBD is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * Free Software Foundation,version 3. * * OpenBD 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 General Public License for more details. * * You should have received a copy of the GNU General Public License * along with OpenBD. If not, see http://www.gnu.org/licenses/ * * Additional permission under GNU GPL version 3 section 7 * * If you modify this Program, or any covered work, by linking or combining * it with any of the JARS listed in the README.txt (or a modified version of * (that library), containing parts covered by the terms of that JAR, the * licensors of this Program grant you additional permission to convey the * resulting work. * README.txt @ http://www.openbluedragon.org/license/README.txt * * http://www.openbluedragon.org/ */ package com.naryx.tagfusion.cfm.application; import java.util.ArrayList; import java.util.Collection; import java.util.Enumeration; import java.util.HashSet; import java.util.List; import java.util.Map; import java.util.Set; import java.util.Vector; import javax.servlet.ServletRequest; import com.nary.util.FastMap; import com.naryx.tagfusion.cfm.engine.cfData; import com.naryx.tagfusion.cfm.engine.cfSession; import com.naryx.tagfusion.cfm.engine.cfStructData; import com.naryx.tagfusion.cfm.tag.tagUtils; /** * This is a wrapper class for session data underneath using the REQUEST scope */ public class cfJ2EERequestStructData extends cfStructData { private static final long serialVersionUID = 1L; private transient ServletRequest requestScope; public cfJ2EERequestStructData(cfSession Session) { super(null); requestScope = Session.REQ; } /** * Convert "natural" Java objects in the J2EE request scope to CFML variables; try exact case key first, then normalized (lowercase). */ public cfData getData(String _key) { Object attr = requestScope.getAttribute(_key); if (attr == null) { attr = requestScope.getAttribute(_key.toLowerCase()); } cfData data = tagUtils.convertToCfData(attr); return (data.getDataType() == cfData.CFNULLDATA ? null : data); } /** * does a get without normalizing to lowercase so that attributes placed into the request scope by a JSP page with mixed-case names will appear in the CFDUMP */ protected cfData getForDump(String key) { cfData data = tagUtils.convertToCfData(requestScope.getAttribute(key)); return (data.getDataType() == cfData.CFNULLDATA ? null : data); } /** * Store objects in the J2EE request scope as "natural" Java objects; normalize key to lowercase. Put empty string instead of null. */ public void setData(String _key, cfData _data) { Object obj = tagUtils.getNatural(_data); requestScope.setAttribute(_key.toLowerCase(), obj != null ? obj : ""); _data.invalidateLoopIndex(); // invalidate cfLoopIndex } // normalize key to lowercase public void deleteData(String _key) { requestScope.removeAttribute(_key.toLowerCase()); } // normalize key to lowercase public boolean containsKey(String _key) { return (requestScope.getAttribute(_key.toLowerCase()) != null); } public boolean containsValue(cfData _data) { return containsValue(tagUtils.getNatural(_data)); } // NOTE: this method can be hit by enabling J2EE sessions and calling StructClear( request ). public void clear() { Enumeration enumer = requestScope.getAttributeNames(); // With WebLogic Server, removing an attribute while enumerating over the attribute // names will result in a ConcurrentModificationException so we need to copy the attribute // names to a Vector and loop over it instead. Vector<Object> attrNames = new Vector<Object>(); while (enumer.hasMoreElements()) { attrNames.addElement(enumer.nextElement()); } for (int i = 0; i < attrNames.size(); i++) { requestScope.removeAttribute((String) attrNames.elementAt(i)); } } public Object[] keys() { List<Object> keys = new ArrayList<Object>(); if (requestScope != null) { Enumeration enumer = requestScope.getAttributeNames(); while (enumer.hasMoreElements()) keys.add(enumer.nextElement()); } return keys.toArray(); } public int size() { int total = 0; Enumeration enumer = requestScope.getAttributeNames(); while (enumer.hasMoreElements()) { enumer.nextElement(); total++; } return total; } public boolean isEmpty() { return (size() == 0); } public Set<String> keySet() { Set<String> hs = new HashSet<String>(); if (requestScope != null) { Enumeration<String> enumer = requestScope.getAttributeNames(); while (enumer.hasMoreElements()) { hs.add(enumer.nextElement()); } } return hs; } public boolean equals(Object o) { if (o instanceof cfJ2EERequestStructData) return requestScope.equals(((cfJ2EERequestStructData) o).requestScope); return false; } public int hashCode() { return requestScope.hashCode(); } // Returns a collection view of the values contained in this map. public Collection values() { throw new UnsupportedOperationException(); } // Returns a set view of the mappings contained in this map. public Set entrySet() { throw new UnsupportedOperationException(); } // create a shallow copy protected Map<String, cfData> cloneHashdata() { Map<String, cfData> cloneData = new FastMap<String, cfData>(false); Enumeration<String> enumer = requestScope.getAttributeNames(); while (enumer.hasMoreElements()) { String key = enumer.nextElement(); cloneData.put(key, tagUtils.convertToCfData(requestScope.getAttribute(key))); } return cloneData; } /******************************************************************* * The following java.util.Map interface methods operate on "natural" Java objects, not CFML variables. Note that keys are case-sensitive when using these methods. *******************************************************************/ public boolean containsValue(Object obj) { if (requestScope == null) return false; Enumeration enumer = requestScope.getAttributeNames(); while (enumer.hasMoreElements()) { if (obj.equals((get(enumer.nextElement())))) return true; } return false; } public Object get(Object key) { return requestScope.getAttribute(key.toString()); } // Associates the specified value with the specified key in this map. public Object put(String key, Object value) { Object oldValue = get(key); requestScope.setAttribute(key, value); return oldValue; } // --[ Override the Serialising methods as we don't wish this object to be serialised // --[ Causes problems when we would doing things with the client scope for example. private void writeObject(java.io.ObjectOutputStream out) { } private void readObject(java.io.ObjectInputStream in) { } }