Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/utils/platforms/rhino/lib/os-platform.js
diff options
context:
space:
mode:
Diffstat (limited to 'utils/platforms/rhino/lib/os-platform.js')
-rwxr-xr-xutils/platforms/rhino/lib/os-platform.js114
1 files changed, 0 insertions, 114 deletions
diff --git a/utils/platforms/rhino/lib/os-platform.js b/utils/platforms/rhino/lib/os-platform.js
deleted file mode 100755
index c186b28..0000000
--- a/utils/platforms/rhino/lib/os-platform.js
+++ /dev/null
@@ -1,114 +0,0 @@
-
-var io = require('io');
-
-exports.exit = function (status) {
- Packages.java.lang.System.exit(status << 0);
-};
-
-exports.sleep = function (seconds) {
- Packages.java.lang.Thread.sleep((seconds * 1000) >>> 0);
-};
-
-exports.fork = function () {
-};
-
-exports.exec = function () {
-};
-
-exports.dup = function () {
-};
-
-exports.dup2 = function () {
-};
-
-exports.setsid = function () {
-};
-
-exports.getpid = function () {
-};
-
-var javaRuntime = function () {
- return Packages.java.lang.Runtime.getRuntime();
-};
-
-var javaPopen = function (command) {
- return javaRuntime().exec(command);
-};
-
-exports.popen = function (command, options) {
- // todo options: "b", {charset, shell}
- if (!options)
- options = {};
- if (typeof command == "string")
- command = ["sh", "-c", command];
-
- var process = javaPopen(command);
-
- var stdin = new io.TextOutputStream(new io.IO(null, process.getOutputStream()));
- var stdout = new io.TextInputStream(new io.IO(process.getInputStream()));
- var stderr = new io.TextInputStream(new io.IO(process.getErrorStream()));
-
- return {
- wait: function () {
- return process.waitFor();
- },
- stdin: stdin,
- stdout: stdout,
- stderr: stderr,
- communicate: function (input, output, errput) {
-
- if (typeof stdin == "string")
- stdin = new io.StringIO(input);
- else if (!stdin)
- stdin = new io.StringIO();
-
- if (!input)
- input = new io.StringIO();
- if (!output)
- output = new io.StringIO();
- if (!errput)
- errput = new io.StringIO();
-
- var inThread = new JavaAdapter(Packages.java.lang.Thread, {
- "run": function () {
- input.copy(stdin);
- stdin.close();
- }
- });
-
- var outThread = new JavaAdapter(Packages.java.lang.Thread, {
- "run": function () {
- stdout.copy(output);
- stdout.close();
- }
- });
-
- var errThread = new JavaAdapter(Packages.java.lang.Thread, {
- "run": function () {
- stderr.copy(errput);
- stderr.close();
- }
- });
-
- inThread.setDaemon(true);
- inThread.start();
- errThread.setDaemon(true);
- errThread.start();
- outThread.setDaemon(true);
- outThread.start();
-
- inThread.join();
- outThread.join();
- errThread.join();
-
- var code = process.waitFor();
-
- return {
- code: code,
- stdout: output,
- stderr: errput
- };
- }
- }
-};
-