added run script
This commit is contained in:
@@ -6,6 +6,12 @@ cd release
|
||||
mkdir hscript
|
||||
cd ..
|
||||
cp hscript/*.hx release/hscript
|
||||
cd release
|
||||
mkdir script
|
||||
cp script/*.hx* release/script
|
||||
cd release/script
|
||||
haxe build.hxml
|
||||
cd ../..
|
||||
haxe -xml release/haxedoc.xml hscript.Interp hscript.Parser hscript.Bytes hscript.Macro
|
||||
7z a -tzip release.zip release
|
||||
rm -rf release
|
||||
|
||||
@@ -0,0 +1,154 @@
|
||||
package;
|
||||
|
||||
import haxe.*;
|
||||
import hscript.*;
|
||||
import sys.*;
|
||||
import sys.io.*;
|
||||
import sys.net.*;
|
||||
|
||||
#if neko
|
||||
import neko.Lib;
|
||||
#end
|
||||
#if cpp
|
||||
import cpp.Lib;
|
||||
#end
|
||||
|
||||
class RunScript {
|
||||
|
||||
public static function main () {
|
||||
|
||||
var args = Sys.args ();
|
||||
var workingDirectory = args.pop();
|
||||
|
||||
try {
|
||||
Sys.setCwd(workingDirectory);
|
||||
} catch (e:Dynamic) {
|
||||
error("Failed to set current working directory to [" + workingDirectory + "]");
|
||||
Sys.exit(1);
|
||||
}
|
||||
|
||||
if (args.length == 0) {
|
||||
error("Argument missing. Expected 1 got 0");
|
||||
}
|
||||
|
||||
if (args[0] == "-f" || args[0] == "--file") {
|
||||
if (args.length == 1) {
|
||||
error("Argument missing. Expected 2 got 1");
|
||||
}
|
||||
if (args.length > 2) {
|
||||
error("Too many arguments. Expected 2 got " + args.length);
|
||||
}
|
||||
executeScriptFile(args[1]);
|
||||
}
|
||||
|
||||
if (args[0] == "--help") {
|
||||
printHelp();
|
||||
}
|
||||
|
||||
executeScript(args.join(" "));
|
||||
}
|
||||
|
||||
static function executeScriptFile(scriptPath:String) {
|
||||
if (!FileSystem.exists(scriptPath)) {
|
||||
error("Specified file [" + scriptPath + "] not found");
|
||||
}
|
||||
if (FileSystem.isDirectory(scriptPath)) {
|
||||
error("Specified file [" + scriptPath + "] is a directory");
|
||||
}
|
||||
var script = File.getContent(scriptPath);
|
||||
executeScript(script);
|
||||
}
|
||||
|
||||
static function executeScript(script:String) {
|
||||
var parser = new hscript.Parser();
|
||||
var program = parser.parseString(script);
|
||||
var interp = new hscript.Interp();
|
||||
|
||||
// export classes of default package
|
||||
interp.variables.set("Array", Array);
|
||||
interp.variables.set("DateTools", DateTools);
|
||||
interp.variables.set("Math", Math);
|
||||
interp.variables.set("StringTools", StringTools);
|
||||
interp.variables.set("Sys", Sys);
|
||||
interp.variables.set("Xml", Xml);
|
||||
|
||||
// export classes of sys.io package
|
||||
interp.variables.set("FileSystem", FileSystem);
|
||||
|
||||
// export classes of sys.io package
|
||||
interp.variables.set("File", File);
|
||||
|
||||
// export classes of sys.net package
|
||||
interp.variables.set("Host", Host);
|
||||
|
||||
// export classes of haxe package
|
||||
interp.variables.set("Json", Json);
|
||||
interp.variables.set("Http", Http);
|
||||
interp.variables.set("Serializer", Serializer);
|
||||
interp.variables.set("Unserializer", Unserializer);
|
||||
|
||||
info(interp.execute(program));
|
||||
}
|
||||
|
||||
static function printHelp(exit:Bool = true) {
|
||||
var hscriptPath = getHaxelibPath("hscript");
|
||||
var meta:Dynamic = Json.parse(File.getContent(hscriptPath + "haxelib.json"));
|
||||
info('${meta.name} v${meta.version}');
|
||||
info('${meta.description}');
|
||||
info("");
|
||||
info("usage: haxelib run hscript SCRIPT");
|
||||
info(" or: haxelib run hscript -f SCRIPTPATH");
|
||||
info(" or: haxelib run hscript --file SCRIPTPATH");
|
||||
info("");
|
||||
info("examples:");
|
||||
info(" C:\\>haxelib run hscript var x = 4; 1 + 2 * x");
|
||||
info(" 9");
|
||||
info("");
|
||||
info(" C:\\>haxelib run hscript \"5 | 6\"");
|
||||
info(" 7");
|
||||
info("");
|
||||
info(" C:\\>haxelib run hscript for(i in 0...5) Sys.stdout().writeString(i + ', '); 'done'");
|
||||
info(" 0, 1, 2, 3, 4, done");
|
||||
info("");
|
||||
info(" C:\\>haxelib run hscript Host.localhost()");
|
||||
info(" mycomputer");
|
||||
info("");
|
||||
info(" C:\\>haxe build.hxml && haxelib run hscript Sys.putenv('MY_IP', new Host(''))");
|
||||
info(" 192.168.248.1");
|
||||
info("");
|
||||
info(" C:\\>for /f %i in ('haxelib run hscript \"new Host('')\"') do @set MY_IP=%i");
|
||||
info(" C:\\>echo %MY_IP%");
|
||||
info(" 192.168.248.1");
|
||||
|
||||
if(exit)
|
||||
Sys.exit(0);
|
||||
}
|
||||
|
||||
static function info(msg:Dynamic) {
|
||||
Sys.stdout().writeString("" + msg + "\n");
|
||||
}
|
||||
|
||||
static function error(msg:Dynamic, exit:Bool = true) {
|
||||
Sys.stderr().writeString("Error: " + msg + "!\n");
|
||||
if(exit)
|
||||
Sys.exit(1);
|
||||
}
|
||||
|
||||
static function getHaxelibPath(libraryName:String):String {
|
||||
var proc = new Process("haxelib", ["path", libraryName]);
|
||||
var result = "";
|
||||
var ex:Dynamic = null;
|
||||
try {
|
||||
while(true) {
|
||||
var line = proc.stdout.readLine();
|
||||
if (line.substr(0, 1) != "-")
|
||||
result = line;
|
||||
}
|
||||
} catch (e:Dynamic) {
|
||||
ex = e;
|
||||
};
|
||||
proc.close();
|
||||
if (ex) error(ex);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
-main RunScript
|
||||
-neko ../run.n
|
||||
-lib hscript
|
||||
-dce no
|
||||
Reference in New Issue
Block a user