summaryrefslogtreecommitdiff
path: root/src/jvm/clojure/lang/Module.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/jvm/clojure/lang/Module.java')
-rw-r--r--src/jvm/clojure/lang/Module.java70
1 files changed, 70 insertions, 0 deletions
diff --git a/src/jvm/clojure/lang/Module.java b/src/jvm/clojure/lang/Module.java
new file mode 100644
index 00000000..80ae6f58
--- /dev/null
+++ b/src/jvm/clojure/lang/Module.java
@@ -0,0 +1,70 @@
+/**
+ * Copyright (c) Rich Hickey. All rights reserved.
+ * The use and distribution terms for this software are covered by the
+ * Common Public License 1.0 (http://opensource.org/licenses/cpl.php)
+ * which can be found in the file CPL.TXT at the root of this distribution.
+ * By using this software in any fashion, you are agreeing to be bound by
+ * the terms of this license.
+ * You must not remove this notice, or any other, from this software.
+ **/
+
+/* rich Mar 27, 2006 1:29:39 PM */
+
+package clojure.lang;
+
+import java.util.HashMap;
+import java.util.IdentityHashMap;
+
+public class Module {
+
+/**
+ * String->Namespace
+ */
+static final public HashMap table = new HashMap();
+
+/**
+ * Symbol->Var
+ */
+final public IdentityHashMap vars = new IdentityHashMap();
+final public String name;
+
+Module(String name)
+ {
+ this.name = name;
+ table.put(name, this);
+ }
+
+static public Module find(String name)
+ {
+ return (Module) table.get(name);
+ }
+
+static public Module findOrCreate(String name)
+ {
+ synchronized(table)
+ {
+ Module ns = find(name);
+ if(ns == null)
+ table.put(name,ns = new Module(name));
+ return ns;
+ }
+ }
+
+static public Var intern(String ns,String name)
+ {
+ return findOrCreate(ns).intern(Symbol.intern(name));
+ }
+
+
+public Var intern(Symbol sym)
+ {
+ synchronized(vars)
+ {
+ Var var = (Var) vars.get(sym);
+ if(var == null)
+ vars.put(sym, var = new Var(sym, this));
+ return var;
+ }
+ }
+
+}