it compiles
[org.ibex.mail.git] / src / org / ibex / mail / target / Script.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.ibex.mail;
3 import org.ibex.js.*;
4 import org.ibex.util.*;
5 import org.ibex.mail.*;
6 import org.ibex.mail.filter.*;
7 import org.ibex.mail.target.*;
8 import java.io.*;
9 import java.util.*;
10
11 public class Script extends Target {
12
13     private static Script root = null;
14     private static final String DEFAULT_CONF = File.separatorChar + "etc" + File.separatorChar + "org.ibex.mail.conf";
15     public static Script root() {
16         try {
17             if (root == null) root = new Script(System.getProperty("ibex.mail.conf", DEFAULT_CONF));
18             return root;
19         } catch (Exception e) {
20             Log.error(Script.class, e);
21             return null;
22         }
23     }
24
25     final JS js;
26     private Message m = null;
27     public Script(String filePath) throws JSExn, IOException {
28         js = JS.cloneWithNewParentScope(JS.fromReader(filePath, 0, new InputStreamReader(new FileInputStream(filePath))),
29                                         new ScriptScope()); }
30
31     private class ScriptScope extends JSScope {
32         ScriptEnv env = new ScriptEnv();
33         public ScriptScope() { super(null); }
34         public Object get(Object o) {
35             if (o.equals("m")) return m;
36             if (o.equals("ibex")) return env;
37             return null;
38         }
39     }
40
41     public synchronized void accept(Message m) throws IOException, MailException {
42         this.m = m;
43         try {
44             Object ret = js.call(m, null, null, null, 1);
45             if (ret == null) throw new IOException("configuration script returned null");
46             if (ret instanceof Target)      ((Target)ret).accept(m);
47             //else if (ret instanceof Filter) ((Filter)ret).process(m);
48             else throw new IOException("configuration script returned a " + ret.getClass().getName());
49         } catch (JSExn e) {
50             Log.warn(this, e);
51             throw new IOException("configuration script threw an exception");
52         }
53     }
54
55     // FIXME: this should extend org.ibex.core.Ibex
56     public static class ScriptEnv extends JS {
57
58         /** lets us put multi-level get/put/call keys all in the same method */
59         private class Sub extends JS {
60             String key;
61             Sub(String key) { this.key = key; }
62             public void put(Object key, Object val) throws JSExn { ScriptEnv.this.put(this.key + "." + key, val); }
63             public Object get(Object key) throws JSExn { return ScriptEnv.this.get(this.key + "." + key); }
64             public Object call(Object a0, Object a1, Object a2, Object[] rest, int nargs) throws JSExn {
65                 return ScriptEnv.this.callMethod(this.key, a0, a1, a2, rest, nargs);
66             }
67             public Object callMethod(Object method, Object a0, Object a1, Object a2, Object[] rest, int nargs) throws JSExn {
68                 return ScriptEnv.this.callMethod(this.key + "." + method, a0, a1, a2, rest, nargs);
69             }
70         }
71         private Sub getSub(String s) { return new Sub(s); }
72
73         public Object get(Object name) throws JSExn {
74             if (name.equals("math")) { return ibexMath; }
75             if (name.equals("string")) { return ibexString; }
76             if (name.equals("date")) { return METHOD; }
77             if (name.equals("regexp")) { return METHOD; }
78             if (name.equals("log")) { return getSub("log"); }
79             if (name.equals("log.debug")) { return METHOD; }
80             if (name.equals("log.info")) { return METHOD; }
81             if (name.equals("log.warn")) { return METHOD; }
82             if (name.equals("log.error")) { return METHOD; }
83             return super.get(name);
84         }
85
86         public Object callMethod(Object name, Object a, Object b, Object c, Object[] rest, int nargs) throws JSExn {
87             try {
88                 if (name.equals("date")) { return new JSDate(a, b, c, rest, nargs); }
89                 if (name.equals("log.debug")) {    JS.debug(a== null ? "**null**" : a.toString()); return null; }
90                 if (name.equals("log.info")) {     JS.info(a== null ? "**null**" : a.toString()); return null; }
91                 if (name.equals("log.warn")) {     JS.warn(a== null ? "**null**" : a.toString()); return null; }
92                 if (name.equals("log.error")) {    JS.error(a== null ? "**null**" : a.toString()); return null; }
93                 switch (nargs) {
94                 case 1:
95                     if (name.equals("regexp")) {return new JSRegexp(a, null); }
96                     break;
97                 case 2:
98                     if (name.equals("regexp")) {return new JSRegexp(a, b); }
99                 }
100             } catch (RuntimeException e) {
101                 Log.warn(this, "ibex."+name+"() threw: " + e);
102                 throw new JSExn("invalid argument for ibex object method "+name+"()");
103             }
104             throw new JSExn("invalid number of arguments ("+nargs+") for ibex object method "+name+"()");
105         }
106
107         public static final JSMath ibexMath = new JSMath() {
108                 private JS gs = new JSScope.Global();
109                 public Object get(Object name) throws JSExn {
110                     if (name.equals("isNaN")) { return gs.get("isNaN"); }
111                     if (name.equals("isFinite")) { return gs.get("isFinite"); }
112                     if (name.equals("NaN")) { return gs.get("NaN"); }
113                     if (name.equals("Infinity")) { return gs.get("Infinity"); }
114                     return super.get(name);
115                 }
116             };
117         
118         public static final JS ibexString = new JS() {
119                 private JS gs = new JSScope.Global();
120                 public void put(Object key, Object val) { }
121                 public Object get(Object name) throws JSExn {
122                     if (name.equals("parseInt")) { return gs.get("parseInt"); }
123                     if (name.equals("parseFloat")) { return gs.get("parseFloat"); }
124                     if (name.equals("decodeURI")) { return gs.get("decodeURI"); }
125                     if (name.equals("decodeURIComponent")) { return gs.get("decodeURIComponent"); }
126                     if (name.equals("encodeURI")) { return gs.get("encodeURI"); }
127                     if (name.equals("encodeURIComponent")) { return gs.get("encodeURIComponent"); }
128                     if (name.equals("escape")) { return gs.get("escape"); }
129                     if (name.equals("unescape")) { return gs.get("unescape"); }
130                     if (name.equals("fromCharCode")) { return gs.get("stringFromCharCode"); }
131                     return null;
132                 }
133             };
134     }
135 }