You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by ra...@apache.org on 2005/10/09 06:42:59 UTC

svn commit: r307361 - /jakarta/commons/sandbox/scxml/trunk/src/main/java/org/apache/commons/scxml/env/SimpleContext.java

Author: rahul
Date: Sat Oct  8 21:42:57 2005
New Revision: 307361

URL: http://svn.apache.org/viewcvs?rev=307361&view=rev
Log:
A simple context wrapping a map of variables (name->value).

Added:
    jakarta/commons/sandbox/scxml/trunk/src/main/java/org/apache/commons/scxml/env/SimpleContext.java   (with props)

Added: jakarta/commons/sandbox/scxml/trunk/src/main/java/org/apache/commons/scxml/env/SimpleContext.java
URL: http://svn.apache.org/viewcvs/jakarta/commons/sandbox/scxml/trunk/src/main/java/org/apache/commons/scxml/env/SimpleContext.java?rev=307361&view=auto
==============================================================================
--- jakarta/commons/sandbox/scxml/trunk/src/main/java/org/apache/commons/scxml/env/SimpleContext.java (added)
+++ jakarta/commons/sandbox/scxml/trunk/src/main/java/org/apache/commons/scxml/env/SimpleContext.java Sat Oct  8 21:42:57 2005
@@ -0,0 +1,176 @@
+/*
+ *
+ *   Copyright 2005 The Apache Software Foundation.
+ *
+ *  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 org.apache.commons.scxml.env;
+
+import java.util.HashMap;
+import java.util.Iterator;
+import java.util.Map;
+
+import org.apache.commons.logging.Log;
+import org.apache.commons.logging.LogFactory;
+import org.apache.commons.scxml.Context;
+
+/**
+ * Simple Context wrapping a map of variables.
+ *
+ */
+public class SimpleContext implements Context {
+
+    /** Implementation independent log category. */
+    protected static final Log LOG = LogFactory.getLog(Context.class);
+    /** The parent Context to this Context. */
+    protected Context parent;
+    /** The Map of variables and their values in this Context. */
+    protected Map vars;
+
+    /**
+     * Constructor.
+     *
+     */
+    public SimpleContext() {
+        this(null, null);
+    }
+
+    /**
+     * Constructor.
+     *
+     * @param parent A parent Context, can be null
+     */
+    public SimpleContext(final Context parent) {
+        this(parent, null);
+    }
+    /**
+     * Constructor.
+     *
+     * @param initialVars A pre-populated initial variables map
+     */
+    public SimpleContext(final Map initialVars) {
+        this(null, initialVars);
+    }
+
+    /**
+     * Constructor.
+     *
+     * @param parent A parent Context, can be null
+     * @param initialVars A pre-populated initial variables map
+     */
+    public SimpleContext(final Context parent, final Map initialVars) {
+        this.parent = parent;
+        this.vars =
+            (initialVars == null) ? new HashMap() : initialVars;
+    }
+
+    /**
+     * Assigns a new value to an existing variable or creates a new one.
+     * The method searches the chain of parent Contexts for variable
+     * existence.
+     *
+     * @param name The variable name
+     * @param value The variable value
+     * @see org.apache.commons.scxml.Context#set(String, Object)
+     */
+    public void set(final String name, final Object value) {
+        if (vars.containsKey(name)) { //first try to override local
+            setLocal(name, value);
+        } else if (parent != null && parent.has(name)) { //then check for global
+            parent.set(name, value);
+        } else { //otherwise create a new local variable
+            setLocal(name, value);
+        }
+    }
+
+    /**
+     * Get the value of this variable; delegating to parent.
+     *
+     * @param name The variable name
+     * @return Object The variable value
+     * @see org.apache.commons.scxml.Context#get(java.lang.String)
+     */
+    public Object get(final String name) {
+        if (vars.containsKey(name)) {
+            return vars.get(name);
+        } else if (parent != null) {
+            return parent.get(name);
+        } else {
+            return null;
+        }
+    }
+
+    /**
+     * Check if this variable exists, delegating to parent.
+     *
+     * @param name The variable name
+     * @return boolean true if this variable exists
+     * @see org.apache.commons.scxml.Context#has(java.lang.String)
+     */
+    public boolean has(final String name) {
+        if (vars.containsKey(name)) {
+            return true;
+        } else if (parent != null && parent.has(name)) {
+            return true;
+        }
+        return false;
+    }
+
+    /**
+     * Get an Iterator over all variables in this Context.
+     *
+     * @return Iterator The Iterator over all variables in this Context
+     * @see org.apache.commons.scxml.Context#iterator()
+     */
+    public Iterator iterator() {
+        return vars.entrySet().iterator();
+    }
+
+    /**
+     * Clear this Context.
+     *
+     * @see org.apache.commons.scxml.Context#reset()
+     */
+    public void reset() {
+        vars.clear();
+    }
+
+    /**
+     * Get the parent Context, may be null.
+     *
+     * @return Context The parent Context
+     * @see org.apache.commons.scxml.Context#getParent()
+     */
+    public Context getParent() {
+        return parent;
+    }
+
+    /**
+     * Assigns a new value to an existing variable or creates a new one.
+     * The method allows to shaddow a variable of the same name up the
+     * Context chain.
+     *
+     * @param name The variable name
+     * @param value The variable value
+     * @see org.apache.commons.scxml.Context#setLocal(String, Object)
+     */
+    public void setLocal(final String name, final Object value) {
+        vars.put(name, value);
+        if (LOG.isDebugEnabled() && !name.equals("_ALL_STATES")) {
+            LOG.debug(name + " = " + String.valueOf(value));
+        }
+    }
+
+}
+

Propchange: jakarta/commons/sandbox/scxml/trunk/src/main/java/org/apache/commons/scxml/env/SimpleContext.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: jakarta/commons/sandbox/scxml/trunk/src/main/java/org/apache/commons/scxml/env/SimpleContext.java
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL



---------------------------------------------------------------------
To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org
For additional commands, e-mail: commons-dev-help@jakarta.apache.org