ibex.core updates for new api
[org.ibex.core.git] / src / org / ibex / core / Main.java
1 // Copyright 2004 Adam Megacz, see the COPYING file for licensing [GPL]
2 package org.ibex.core;
3
4 import java.net.*;
5 import java.io.*;
6 import java.util.*;
7 import org.ibex.js.*;
8 import org.ibex.util.*;
9 import org.ibex.plat.*;
10 import org.ibex.graphics.*;
11
12 /** Entry point for the Ibex Engine; handles splash screen, initial xwar loading, and argument processing */
13 public class Main {
14
15     /**
16      *  FEATURE: this should be implemented using self-emulation
17      *  Used for security checks. If this is null, it means that only
18      *  scripts originating from the local filesystem are loaded in
19      *  the engine (maximum permissions). If scripts have been loaded
20      *  from multiple locations, this will be 0.0.0.0 (the invalid
21      *  IP).
22      */
23     public static java.net.InetAddress originAddr = null;
24     public static String originHost = null;
25     public static String origin = null;
26     public static String initialTemplate = null;
27     
28     public static final Stream builtin = new Stream.Zip(new Stream.Builtin());
29
30     public static void printUsage() {
31         System.err.println("Usage: ibex [-lawp] [ url | file | directory ]");
32         System.err.println("");
33         System.err.println("    -l <level>      set logging level to { debug, info (default), warn, error, silent }");
34         System.err.println("    -l rpc          log all XML-RPC and SOAP conversations");
35         System.err.println("    -l user@host    email log to user@host");
36         System.err.println("    -l host:port    emit log to TCP socket");
37         System.err.println("    -l <file>       write log to a file on disk");
38         System.err.println("    -a              check assertions");
39         System.err.println("    -w <window-id>  reserved for libibex");
40         System.err.println("    -p              dump profiling information [not yet supported]");
41         Runtime.getRuntime().exit(-1);
42     }
43
44     public static void main(String[] args) throws UnknownHostException, JSExn, IOException {
45         int startargs = 0;
46         while (true) {
47             if (startargs > args.length - 1) printUsage();
48             else if (args[startargs].equals("-a")) JS.checkAssertions = true;
49             else if (args[startargs].equals("-l")) {
50                 startargs++;
51                 StringTokenizer opts = new StringTokenizer(args[startargs], ",");
52                 while(opts.hasMoreTokens()) {
53                     String opt = opts.nextToken();
54                     if (opt.indexOf('@') != -1) Log.email(opt);
55                     else if (opt.indexOf(':') != -1)
56                         Log.tcp(opt.substring(0, opt.indexOf(':')),
57                                 Integer.parseInt(opt.substring(opt.indexOf(':') + 1)));
58                     else if (opt.equals("debug")) Log.level = Log.DEBUG;
59                     else if (opt.equals("info")) Log.level = Log.INFO;
60                     else if (opt.equals("warn")) Log.level = Log.WARN;
61                     else if (opt.equals("error")) Log.level = Log.ERROR;
62                     else if (opt.equals("silent")) Log.level = Log.SILENT;
63                     else if (opt.equals("rpc")) Log.rpc = true;
64                     else Log.file(opt);
65                 }
66             }
67             else break;
68             startargs++;
69         }
70
71         org.ibex.plat.Platform.forceLoad();
72         if (Log.on) for(int i=0; i<args.length; i++) Log.info(Main.class, "argument " + i + ": " + args[i]);
73
74         initialTemplate = args.length > startargs + 1 ? args[startargs + 1] : "main";
75         origin = args[startargs];
76
77         Stream rr;
78         final String startupTemplate;
79         if (origin.startsWith("http://") || origin.startsWith("https://")) {
80             originHost = origin.substring(origin.indexOf('/') + 2);
81             originHost = originHost.substring(0, originHost.indexOf('/') == -1 ? originHost.length() : originHost.indexOf('/'));
82             if (originHost.indexOf('@') != -1) originHost = originHost.substring(originHost.indexOf('@') + 1);
83             originAddr = InetAddress.getByName(originHost);
84             rr = builtin;
85             startupTemplate = "org.ibex.builtin.splash";
86         } else {
87             rr = new Stream.File(origin);
88             if (!new File(origin).isDirectory()) rr = new Stream.Zip(rr);
89             startupTemplate = initialTemplate;
90         }
91
92         if (Log.on) Log.info(Main.class, "loading xwar");
93         final Ibex ibex = new Ibex(rr);
94
95         org.ibex.graphics.Surface.scarImage =
96             Picture.load(Main.builtin.get(JS.S("org/ibex/core/builtin/scar.png")),
97                          new Task() { public void perform() throws JSExn, UnknownHostException {
98                              if (Log.on) Log.info(Main.class, "invoking initial template");
99                              ibex.resolveString(startupTemplate, false).call(new Box(), null, null, null, 1);
100                          } });
101
102         Scheduler.init();
103     }
104 }