diff src/luan/CmdLine.java @ 29:9bc66d09ea48

CmdLine improvements git-svn-id: https://luan-java.googlecode.com/svn/trunk@30 21e917c8-12df-6dd8-5cb6-c86387c605b9
author fschmidt@gmail.com <fschmidt@gmail.com@21e917c8-12df-6dd8-5cb6-c86387c605b9>
date Fri, 07 Dec 2012 09:33:31 +0000
parents 409871b33355
children 8d8f4f5caef4
line wrap: on
line diff
--- a/src/luan/CmdLine.java	Fri Dec 07 05:49:17 2012 +0000
+++ b/src/luan/CmdLine.java	Fri Dec 07 09:33:31 2012 +0000
@@ -1,31 +1,61 @@
 package luan;
 
+import java.io.InputStreamReader;
 import java.util.Arrays;
 import java.util.Scanner;
 import luan.lib.BasicLib;
 
 
 public class CmdLine {
+	static final String version = "Luan 0.0";
 
 	public static void main(String[] args) throws Exception {
 		LuaState lua = new LuaState();
 		BasicLib.register(lua);
 		boolean interactive = false;
+		boolean showVersion = false;
 		int i = 0;
-		while( i < args.length ) {
-			String arg = args[i];
-			if( !arg.startsWith("-") )
-				break;
-			if( arg.equals("-i") ) {
-				interactive = true;
-			} else {
-				throw new RuntimeException("invalid option: "+arg);
+		if( args.length == 0 ) {
+			interactive = true;
+			showVersion = true;
+		} else {
+			while( i < args.length ) {
+				String arg = args[i++];
+				if( !arg.startsWith("-") || arg.equals("--") )
+					break;
+				if( arg.equals("-i") ) {
+					interactive = true;
+				} else if( arg.equals("-v") ) {
+					showVersion = true;
+				} else if( arg.equals("-e") ) {
+					if( i == args.length )
+						error("'-e' needs argument");
+					String cmd = args[i++];
+					try {
+						LuaFunction fn = BasicLib.load(lua,cmd);
+						fn.call(lua);
+					} catch(LuaException e) {
+						System.err.println("command line error: "+e.getMessage());
+						System.exit(-1);
+					}
+				} else if( arg.equals("-") ) {
+					String cmd = BasicLib.readAll(new InputStreamReader(System.in));
+					try {
+						LuaFunction fn = BasicLib.load(lua,cmd);
+						fn.call(lua);
+					} catch(LuaException e) {
+						System.err.println(e.getMessage());
+						System.exit(-1);
+					}
+					System.exit(0);
+				} else {
+					error("unrecognized option '"+arg+"'");
+				}
 			}
-			i++;
 		}
-		if( i == args.length ) {
-			interactive = true;
-		} else {
+		if( showVersion )
+			System.out.println(version);
+		if( i < args.length ) {
 			String file = args[i++];
 			Object[] varArgs = new Object[args.length-1];
 			System.arraycopy(args,1,varArgs,0,varArgs.length);
@@ -35,18 +65,32 @@
 			}
 			lua.env().set("arg",argsTable);
 			try {
-				LuaFunction fn = BasicLib.loadFile(lua,file);
+				LuaFunction fn = BasicLib.loadfile(lua,file);
 				fn.call(lua,varArgs);
 			} catch(LuaException e) {
-//				System.out.println(e.getMessage());
+//				System.err.println(e.getMessage());
 				e.printStackTrace();
-				return;
+				System.exit(-1);
 			}
 		}
 		if( interactive )
 			interactive(lua);
 	}
 
+	private static void error(String msg) {
+		System.err.println(msg);
+		System.err.println("usage: java luan.CmdLine [options] [script [args]]");
+		System.err.println("Available options are:");
+		System.err.println("  -e stat  execute string 'stat'");
+		System.err.println("  -i       enter interactive mode after executing 'script'");
+//		System.err.println("  -l name  require library 'name'");
+		System.err.println("  -v       show version information");
+//		System.err.println("  -E       ignore environment variables");
+		System.err.println("  --       stop handling options");
+		System.err.println("  -        stop handling options and execute stdin");
+		System.exit(-1);
+	}
+
 	static void interactive(LuaState lua) {
 		while( true ) {
 			System.out.print("> ");