001: /*
002: * $RCSfile: ElementCache.java,v $
003: *
004: * Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
005: *
006: * Redistribution and use in source and binary forms, with or without
007: * modification, are permitted provided that the following conditions
008: * are met:
009: *
010: * - Redistribution of source code must retain the above copyright
011: * notice, this list of conditions and the following disclaimer.
012: *
013: * - Redistribution in binary form must reproduce the above copyright
014: * notice, this list of conditions and the following disclaimer in
015: * the documentation and/or other materials provided with the
016: * distribution.
017: *
018: * Neither the name of Sun Microsystems, Inc. or the names of
019: * contributors may be used to endorse or promote products derived
020: * from this software without specific prior written permission.
021: *
022: * This software is provided "AS IS," without a warranty of any
023: * kind. ALL EXPRESS OR IMPLIED CONDITIONS, REPRESENTATIONS AND
024: * WARRANTIES, INCLUDING ANY IMPLIED WARRANTY OF MERCHANTABILITY,
025: * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT, ARE HEREBY
026: * EXCLUDED. SUN MICROSYSTEMS, INC. ("SUN") AND ITS LICENSORS SHALL
027: * NOT BE LIABLE FOR ANY DAMAGES SUFFERED BY LICENSEE AS A RESULT OF
028: * USING, MODIFYING OR DISTRIBUTING THIS SOFTWARE OR ITS
029: * DERIVATIVES. IN NO EVENT WILL SUN OR ITS LICENSORS BE LIABLE FOR
030: * ANY LOST REVENUE, PROFIT OR DATA, OR FOR DIRECT, INDIRECT, SPECIAL,
031: * CONSEQUENTIAL, INCIDENTAL OR PUNITIVE DAMAGES, HOWEVER CAUSED AND
032: * REGARDLESS OF THE THEORY OF LIABILITY, ARISING OUT OF THE USE OF OR
033: * INABILITY TO USE THIS SOFTWARE, EVEN IF SUN HAS BEEN ADVISED OF THE
034: * POSSIBILITY OF SUCH DAMAGES.
035: *
036: * You acknowledge that this software is not designed, licensed or
037: * intended for use in the design, construction, operation or
038: * maintenance of any nuclear facility.
039: *
040: * $Revision: 1.1 $
041: * $Date: 2007/08/28 16:44:33 $
042: * $State: Exp $
043: */
044:
045: package org.jdesktop.j3d.loaders.collada.xml_walker;
046:
047: import java.util.HashMap;
048: import org.collada.colladaschema.Source;
049:
050: /**
051: *
052: * @author paulby
053: */
054: public class ElementCache {
055:
056: private HashMap<String, SourceProcessor> sourceMap = new HashMap();
057: private HashMap<String, VerticesProcessor> verticesMap = new HashMap();
058: private HashMap<String, float[]> floatArrayMap = new HashMap();
059: private HashMap<String, LightProcessor> lightMap = new HashMap();
060:
061: private HashMap<String, Processor> map = new HashMap();
062:
063: private static ElementCache elementCache = new ElementCache();
064:
065: private ElementCache() {
066: }
067:
068: public static ElementCache cache() {
069: return elementCache;
070: }
071:
072: public void putSource(String id, SourceProcessor element) {
073: System.out.println("---> adding source " + id);
074: sourceMap.put(id, element);
075: }
076:
077: public SourceProcessor getSource(String id) {
078: return sourceMap.get(trim(id));
079: }
080:
081: public void putVertices(String id, VerticesProcessor element) {
082: verticesMap.put(id, element);
083: }
084:
085: public VerticesProcessor getVertices(String id) {
086: return verticesMap.get(trim(id));
087: }
088:
089: public void putFloatArray(String id, float[] floatArray) {
090: assert (id != null);
091: floatArrayMap.put(id, floatArray);
092: }
093:
094: public float[] getFloatArray(String id) {
095: return floatArrayMap.get(trim(id));
096: }
097:
098: public void putLight(String id, LightProcessor light) {
099: lightMap.put(id, light);
100: }
101:
102: public LightProcessor getLight(String id) {
103: return lightMap.get(trim(id));
104: }
105:
106: public void put(String id, Processor proc) {
107: map.put(id, proc);
108: }
109:
110: public Processor get(String id) {
111: return map.get(trim(id));
112: }
113:
114: /**
115: * Trim leading #
116: */
117: private String trim(String id) {
118: return id.substring(1, id.length());
119: }
120:
121: }
|