
org.luaj.lib.j2se.J2seOsLib Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of luaj-j2se Show documentation
Show all versions of luaj-j2se Show documentation
Luaj 1.0.5 for the j2se platform
The newest version!
/*******************************************************************************
* Copyright (c) 2009 LuaJ. All rights reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
******************************************************************************/
package org.luaj.lib.j2se;
import java.io.File;
import java.io.IOException;
import org.luaj.lib.OsLib;
import org.luaj.vm.LTable;
/**
* Implementation of the lua os library for J2se
*/
public class J2seOsLib extends OsLib {
public static int EXEC_IOEXCEPTION = 1;
public static int EXEC_INTERRUPTED = -2;
public static int EXEC_ERROR = -3;
/**
* Install the os library using the J2seOsLib class as a factory
*/
public static void install(LTable globals) {
OsLib.install(globals, new J2seOsLib());
}
public J2seOsLib() {
super();
}
protected OsLib newInstance(int index) {
return new J2seOsLib(index);
}
private J2seOsLib(int id) {
super(id);
}
protected int execute(String command) {
Runtime r = Runtime.getRuntime();
try {
final Process p = r.exec(command);
try {
p.waitFor();
return p.exitValue();
} finally {
p.destroy();
}
} catch (IOException ioe) {
return EXEC_IOEXCEPTION;
} catch (InterruptedException e) {
return EXEC_INTERRUPTED;
} catch (Throwable t) {
return EXEC_ERROR;
}
}
protected void remove(String filename) throws IOException {
File f = new File(filename);
if ( ! f.exists() )
throw new IOException(filename+": No such file or directory");
if ( ! f.delete() )
throw new IOException(filename+": Failed to delete");
}
protected void rename(String oldname, String newname) throws IOException {
new File(oldname).renameTo(new File(newname));
}
protected String tmpname() {
try {
java.io.File f = java.io.File.createTempFile(TMP_PREFIX ,TMP_SUFFIX);
return f.getName();
} catch ( IOException ioe ) {
return super.tmpname();
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy