2006-11-24 13:25:12 +00:00
|
|
|
/*
|
2006-12-03 06:53:25 +00:00
|
|
|
* $Id: StdAwk.java,v 1.9 2006-12-03 06:53:25 bacon Exp $
|
2006-11-24 13:25:12 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
package ase.awk;
|
|
|
|
|
|
|
|
import java.io.*;
|
|
|
|
|
|
|
|
public abstract class StdAwk extends Awk
|
|
|
|
{
|
2006-11-25 15:51:57 +00:00
|
|
|
private InputStreamReader src_in = null;
|
|
|
|
private OutputStreamWriter src_out = null;
|
2006-11-24 15:37:29 +00:00
|
|
|
|
2006-11-25 15:51:57 +00:00
|
|
|
private String[] sin = null;
|
|
|
|
private int sin_no = 0;
|
|
|
|
private String sout = null;
|
|
|
|
|
|
|
|
private String[] cin = null;
|
|
|
|
private int cin_no = 0;
|
|
|
|
private String[] cout = null;
|
|
|
|
private int cout_no = 0;
|
2006-11-24 13:25:12 +00:00
|
|
|
|
2006-12-02 16:26:29 +00:00
|
|
|
private long seed;
|
|
|
|
private java.util.Random random;
|
|
|
|
|
2006-11-24 13:25:12 +00:00
|
|
|
public StdAwk () throws Exception
|
|
|
|
{
|
|
|
|
super ();
|
2006-12-02 16:26:29 +00:00
|
|
|
|
|
|
|
seed = System.currentTimeMillis();
|
|
|
|
random = new java.util.Random (seed);
|
2006-11-25 15:51:57 +00:00
|
|
|
}
|
2006-11-24 13:25:12 +00:00
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
/* == major methods == */
|
2006-11-25 15:51:57 +00:00
|
|
|
public void parse () throws Exception
|
|
|
|
{
|
|
|
|
sin = getSourceNames (); sin_no = 0;
|
|
|
|
sout = getDeparsedSourceName ();
|
|
|
|
super.parse ();
|
|
|
|
}
|
2006-11-24 15:37:29 +00:00
|
|
|
|
2006-11-25 15:51:57 +00:00
|
|
|
public void run () throws Exception
|
|
|
|
{
|
|
|
|
cin = getInputConsoleNames (); cin_no = 0;
|
|
|
|
cout = getOutputConsoleNames (); cout_no = 0;
|
|
|
|
super.run ();
|
2006-11-24 13:25:12 +00:00
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
/* == source code names == */
|
2006-11-24 15:37:29 +00:00
|
|
|
protected abstract String[] getSourceNames ();
|
2006-11-25 15:51:57 +00:00
|
|
|
protected String getDeparsedSourceName () { return null; }
|
2006-11-24 15:37:29 +00:00
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
/* == console names == */
|
2006-11-24 13:25:12 +00:00
|
|
|
protected abstract String[] getInputConsoleNames ();
|
|
|
|
protected abstract String[] getOutputConsoleNames ();
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
/* == source code == */
|
|
|
|
protected int openSource (int mode)
|
2006-11-24 15:37:29 +00:00
|
|
|
{
|
|
|
|
if (mode == SOURCE_READ)
|
|
|
|
{
|
2006-11-25 15:51:57 +00:00
|
|
|
InputStreamReader isr;
|
|
|
|
sin_no = 0;
|
|
|
|
|
|
|
|
if (sin_no >= sin.length) return 0;
|
|
|
|
isr = get_input_stream (sin[sin_no]);
|
|
|
|
if (isr == null) return -1;
|
|
|
|
|
|
|
|
src_in = isr;
|
|
|
|
sin_no++;
|
2006-11-24 15:37:29 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if (mode == SOURCE_WRITE)
|
|
|
|
{
|
2006-11-25 15:51:57 +00:00
|
|
|
OutputStreamWriter osw;
|
|
|
|
if (sout == null) return 1;
|
|
|
|
osw = get_output_stream (sout);
|
|
|
|
if (osw == null) return -1;
|
|
|
|
src_out = osw;
|
2006-11-24 15:37:29 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int closeSource (int mode)
|
2006-11-24 15:37:29 +00:00
|
|
|
{
|
|
|
|
if (mode == SOURCE_READ)
|
|
|
|
{
|
2006-11-25 15:51:57 +00:00
|
|
|
try { src_in.close (); }
|
2006-11-24 15:37:29 +00:00
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (mode == SOURCE_WRITE)
|
|
|
|
{
|
2006-11-25 15:51:57 +00:00
|
|
|
if (src_out == null) return 0;
|
|
|
|
try { src_out.close (); }
|
2006-11-24 15:37:29 +00:00
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int readSource (char[] buf, int len)
|
2006-11-24 15:37:29 +00:00
|
|
|
{
|
2006-11-25 15:51:57 +00:00
|
|
|
try {
|
2006-11-26 15:55:44 +00:00
|
|
|
int n = src_in.read (buf, 0, len);
|
2006-11-25 15:51:57 +00:00
|
|
|
while (n == -1)
|
|
|
|
{
|
|
|
|
InputStreamReader isr;
|
|
|
|
if (sin_no >= sin.length) return 0;
|
|
|
|
|
|
|
|
isr = get_input_stream (sin[sin_no]);
|
|
|
|
if (isr == null) return -1;
|
|
|
|
|
|
|
|
try { src_in.close (); }
|
|
|
|
catch (IOException ec) { /* ignore */ }
|
|
|
|
|
|
|
|
src_in = isr;
|
|
|
|
sin_no++;
|
|
|
|
|
|
|
|
n = src_in.read (buf, 0, len);
|
|
|
|
}
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
catch (IOException e)
|
|
|
|
{
|
|
|
|
return -1;
|
|
|
|
}
|
2006-11-24 15:37:29 +00:00
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int writeSource (char[] buf, int len)
|
2006-11-24 15:37:29 +00:00
|
|
|
{
|
2006-11-25 15:51:57 +00:00
|
|
|
if (src_out == null) return len;
|
|
|
|
try { src_out.write (buf, 0, len); }
|
2006-11-24 15:37:29 +00:00
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
/* == console interface == */
|
|
|
|
protected int openConsole (Extio extio)
|
2006-11-24 13:25:12 +00:00
|
|
|
{
|
|
|
|
System.err.println ("[open_console called.... name: " + extio.getName() + " mode: " + extio.getMode());
|
|
|
|
|
|
|
|
int mode = extio.getMode ();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_CONSOLE_READ)
|
|
|
|
{
|
|
|
|
InputStreamReader isr;
|
2006-11-25 15:51:57 +00:00
|
|
|
cin_no = 0;
|
|
|
|
|
2006-11-24 13:25:12 +00:00
|
|
|
if (cin_no >= cin.length) return 0;
|
|
|
|
isr = get_input_stream (cin[cin_no]);
|
|
|
|
if (isr == null) return -1;
|
|
|
|
|
|
|
|
extio.setHandle (isr);
|
|
|
|
setInputConsoleName (extio, cin[cin_no]);
|
|
|
|
|
|
|
|
cin_no++;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if (mode == Extio.MODE_CONSOLE_WRITE)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw;
|
2006-11-25 15:51:57 +00:00
|
|
|
cout_no = 0;
|
2006-11-24 13:25:12 +00:00
|
|
|
|
|
|
|
if (cout_no >= cout.length) return 0;
|
|
|
|
osw = get_output_stream (cout[cout_no]);
|
|
|
|
if (osw == null) return -1;
|
|
|
|
|
|
|
|
extio.setHandle (osw);
|
|
|
|
setOutputConsoleName (extio, cout[cout_no]);
|
|
|
|
|
|
|
|
cout_no++;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int closeConsole (Extio extio)
|
2006-11-24 13:25:12 +00:00
|
|
|
{
|
|
|
|
System.err.println ("[close_console called.... name: " + extio.getName() + " mode: " + extio.getMode());
|
|
|
|
|
|
|
|
int mode = extio.getMode ();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_CONSOLE_READ)
|
|
|
|
{
|
|
|
|
InputStreamReader isr = (InputStreamReader)extio.getHandle ();
|
|
|
|
try { isr.close (); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (mode == Extio.MODE_CONSOLE_WRITE)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw = (OutputStreamWriter)extio.getHandle ();
|
|
|
|
/* TODO: selective close the stream...
|
|
|
|
* system.out should not be closed??? */
|
|
|
|
try { osw.close (); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int readConsole (Extio extio, char[] buf, int len)
|
2006-11-24 13:25:12 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode ();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_CONSOLE_READ)
|
|
|
|
{
|
|
|
|
InputStreamReader isr, tmp;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
isr = (InputStreamReader)extio.getHandle ();
|
|
|
|
|
|
|
|
try { n = isr.read (buf, 0, len); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
|
|
|
|
while (n == -1)
|
|
|
|
{
|
|
|
|
if (cin_no >= cin.length) return 0;
|
|
|
|
tmp = get_input_stream (cin[cin_no]);
|
|
|
|
if (tmp == null) return -1;
|
|
|
|
|
|
|
|
try { isr.close (); }
|
|
|
|
catch (IOException e) { /* ignore */ }
|
|
|
|
|
|
|
|
extio.setHandle (tmp);
|
|
|
|
setInputConsoleName (extio, cin[cin_no]);
|
|
|
|
isr = (InputStreamReader)extio.getHandle ();
|
|
|
|
cin_no++;
|
|
|
|
|
|
|
|
try { n = isr.read (buf, 0, len); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
}
|
|
|
|
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int writeConsole (Extio extio, char[] buf, int len)
|
2006-11-24 13:25:12 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode ();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_CONSOLE_WRITE)
|
|
|
|
{
|
2006-11-24 15:07:18 +00:00
|
|
|
OutputStreamWriter osw;
|
|
|
|
osw = (OutputStreamWriter)extio.getHandle ();
|
2006-11-24 13:25:12 +00:00
|
|
|
// as the write operation below doesn't indicate
|
|
|
|
// if it has reached the end, console can't be
|
|
|
|
// switched here unlike read_console.
|
|
|
|
try { osw.write (buf, 0, len); osw.flush (); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int flushConsole (Extio extio)
|
2006-11-24 15:07:18 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode ();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_CONSOLE_WRITE)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
osw = (OutputStreamWriter)extio.getHandle ();
|
|
|
|
try { osw.flush (); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int nextConsole (Extio extio)
|
2006-11-24 13:25:12 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode ();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_CONSOLE_READ)
|
|
|
|
{
|
|
|
|
InputStreamReader isr, tmp;
|
|
|
|
|
|
|
|
isr = (InputStreamReader)extio.getHandle ();
|
|
|
|
|
|
|
|
if (cin_no >= cin.length) return 0;
|
|
|
|
tmp = get_input_stream (cin[cin_no]);
|
|
|
|
if (tmp == null) return -1;
|
|
|
|
|
|
|
|
try { isr.close (); }
|
|
|
|
catch (IOException e) { /* ignore */ }
|
|
|
|
|
|
|
|
extio.setHandle (tmp);
|
|
|
|
setInputConsoleName (extio, cin[cin_no]);
|
|
|
|
|
|
|
|
cin_no++;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if (mode == Extio.MODE_CONSOLE_WRITE)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw, tmp;
|
|
|
|
|
|
|
|
osw = (OutputStreamWriter)extio.getHandle ();
|
|
|
|
|
|
|
|
if (cout_no >= cout.length) return 0;
|
|
|
|
tmp = get_output_stream (cout[cout_no]);
|
|
|
|
if (tmp == null) return -1;
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
/* TODO: selectively close the stream...
|
2006-11-24 13:25:12 +00:00
|
|
|
* system.out should not be closed??? */
|
|
|
|
try { osw.close (); }
|
|
|
|
catch (IOException e) { /* ignore */ }
|
|
|
|
|
|
|
|
extio.setHandle (tmp);
|
|
|
|
setOutputConsoleName (extio, cout[cout_no]);
|
|
|
|
|
|
|
|
cout_no++;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
private InputStreamReader get_input_stream (String name)
|
|
|
|
{
|
|
|
|
InputStreamReader isr;
|
|
|
|
|
|
|
|
if (name == null || name.length() == 0)
|
|
|
|
{
|
|
|
|
isr = new InputStreamReader (System.in);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FileInputStream fis;
|
|
|
|
try { fis = new FileInputStream (name); }
|
|
|
|
catch (IOException e) { return null; }
|
|
|
|
isr = new InputStreamReader (fis);
|
|
|
|
}
|
|
|
|
|
|
|
|
return isr;
|
|
|
|
}
|
|
|
|
|
|
|
|
private OutputStreamWriter get_output_stream (String name)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
|
|
|
|
if (name == null || name.length() == 0)
|
|
|
|
{
|
|
|
|
osw = new OutputStreamWriter (System.out);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
FileOutputStream fos;
|
|
|
|
try { fos = new FileOutputStream (name); }
|
|
|
|
catch (IOException e) { return null; }
|
|
|
|
osw = new OutputStreamWriter (fos);
|
|
|
|
}
|
|
|
|
|
|
|
|
return osw;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
/* == file interface == */
|
|
|
|
protected int openFile (Extio extio)
|
2006-11-24 13:25:12 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_FILE_READ)
|
|
|
|
{
|
|
|
|
FileInputStream fis;
|
|
|
|
InputStreamReader isr;
|
|
|
|
|
|
|
|
try { fis = new FileInputStream (extio.getName()); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
|
|
|
|
isr = new InputStreamReader (fis);
|
|
|
|
extio.setHandle (isr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if (mode == Extio.MODE_FILE_WRITE)
|
|
|
|
{
|
|
|
|
FileOutputStream fos;
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
|
|
|
|
try { fos = new FileOutputStream (extio.getName()); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
|
|
|
|
osw = new OutputStreamWriter (fos);
|
|
|
|
extio.setHandle (osw);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if (mode == Extio.MODE_FILE_APPEND)
|
|
|
|
{
|
|
|
|
FileOutputStream fos;
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
|
|
|
|
try { fos = new FileOutputStream (extio.getName(), true); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
|
|
|
|
osw = new OutputStreamWriter (fos);
|
|
|
|
extio.setHandle (osw);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int closeFile (Extio extio)
|
2006-11-24 13:25:12 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_FILE_READ)
|
|
|
|
{
|
|
|
|
InputStreamReader isr;
|
|
|
|
isr = (InputStreamReader)extio.getHandle();
|
|
|
|
try { isr.close (); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (mode == Extio.MODE_FILE_WRITE)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
osw = (OutputStreamWriter)extio.getHandle();
|
|
|
|
try { osw.close (); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (mode == Extio.MODE_FILE_APPEND)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
osw = (OutputStreamWriter)extio.getHandle();
|
|
|
|
try { osw.close (); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int readFile (Extio extio, char[] buf, int len)
|
2006-11-24 13:25:12 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_FILE_READ)
|
|
|
|
{
|
|
|
|
InputStreamReader isr;
|
|
|
|
isr = (InputStreamReader)extio.getHandle();
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
len = isr.read (buf, 0, len);
|
|
|
|
if (len == -1) len = 0;
|
|
|
|
}
|
|
|
|
catch (IOException e) { len = -1; }
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int writeFile (Extio extio, char[] buf, int len)
|
2006-11-24 13:25:12 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_FILE_WRITE ||
|
|
|
|
mode == Extio.MODE_FILE_APPEND)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
osw = (OutputStreamWriter)extio.getHandle();
|
|
|
|
try { osw.write (buf, 0, len); }
|
|
|
|
catch (IOException e) { len = -1; }
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
2006-11-24 15:07:18 +00:00
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int flushFile (Extio extio)
|
2006-11-24 15:07:18 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode ();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_FILE_WRITE ||
|
|
|
|
mode == Extio.MODE_FILE_APPEND)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
osw = (OutputStreamWriter)extio.getHandle ();
|
|
|
|
try { osw.flush (); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
/* == pipe interface == */
|
|
|
|
protected int openPipe (Extio extio)
|
2006-11-24 15:07:18 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_PIPE_READ)
|
|
|
|
{
|
|
|
|
|
|
|
|
Process proc;
|
|
|
|
InputStreamReader isr;
|
|
|
|
|
2006-12-03 06:53:25 +00:00
|
|
|
try { proc = popen (extio.getName()); }
|
2006-11-24 15:07:18 +00:00
|
|
|
catch (IOException e) { return -1; }
|
2006-12-03 06:53:25 +00:00
|
|
|
|
2006-11-24 15:07:18 +00:00
|
|
|
isr = new InputStreamReader (proc.getInputStream());
|
|
|
|
extio.setHandle (isr);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
else if (mode == Extio.MODE_PIPE_WRITE)
|
|
|
|
{
|
|
|
|
Process proc;
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
|
2006-12-03 06:53:25 +00:00
|
|
|
try { proc = popen (extio.getName()); }
|
2006-11-24 15:07:18 +00:00
|
|
|
catch (IOException e) { return -1; }
|
2006-12-03 06:53:25 +00:00
|
|
|
|
2006-11-24 15:07:18 +00:00
|
|
|
osw = new OutputStreamWriter (proc.getOutputStream());
|
|
|
|
extio.setHandle (osw);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int closePipe (Extio extio)
|
2006-11-24 15:07:18 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_PIPE_READ)
|
|
|
|
{
|
|
|
|
InputStreamReader isr;
|
|
|
|
isr = (InputStreamReader)extio.getHandle();
|
|
|
|
try { isr.close (); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if (mode == Extio.MODE_PIPE_WRITE)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
osw = (OutputStreamWriter)extio.getHandle();
|
|
|
|
try { osw.close (); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int readPipe (Extio extio, char[] buf, int len)
|
2006-11-24 15:07:18 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_PIPE_READ)
|
|
|
|
{
|
|
|
|
InputStreamReader isr;
|
|
|
|
isr = (InputStreamReader)extio.getHandle();
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
len = isr.read (buf, 0, len);
|
|
|
|
if (len == -1) len = 0;
|
|
|
|
}
|
|
|
|
catch (IOException e) { len = -1; }
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int writePipe (Extio extio, char[] buf, int len)
|
2006-11-24 15:07:18 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_PIPE_WRITE)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
osw = (OutputStreamWriter)extio.getHandle();
|
|
|
|
try { osw.write (buf, 0, len); }
|
|
|
|
catch (IOException e) { len = -1; }
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-11-26 15:55:44 +00:00
|
|
|
protected int flushPipe (Extio extio)
|
2006-11-24 15:07:18 +00:00
|
|
|
{
|
|
|
|
int mode = extio.getMode ();
|
|
|
|
|
|
|
|
if (mode == Extio.MODE_PIPE_WRITE)
|
|
|
|
{
|
|
|
|
OutputStreamWriter osw;
|
|
|
|
osw = (OutputStreamWriter)extio.getHandle ();
|
|
|
|
try { osw.flush (); }
|
|
|
|
catch (IOException e) { return -1; }
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2006-12-02 16:26:29 +00:00
|
|
|
|
|
|
|
/* == arithmetic built-in functions */
|
|
|
|
public Object sin (long runid, Object[] args)
|
|
|
|
{
|
|
|
|
double x = builtinFunctionArgumentToDouble (runid, args[0]);
|
|
|
|
return new Double (Math.sin(x));
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object cos (long runid, Object[] args)
|
|
|
|
{
|
|
|
|
double x = builtinFunctionArgumentToDouble (runid, args[0]);
|
|
|
|
return new Double (Math.cos(x));
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object tan (long runid, Object[] args)
|
|
|
|
{
|
|
|
|
double x = builtinFunctionArgumentToDouble (runid, args[0]);
|
|
|
|
return new Double (Math.tan(x));
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object atan2 (long runid, Object[] args)
|
|
|
|
{
|
|
|
|
double y = builtinFunctionArgumentToDouble (runid, args[0]);
|
|
|
|
double x = builtinFunctionArgumentToDouble (runid, args[1]);
|
|
|
|
return new Double (Math.atan2(y,x));
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object log (long runid, Object[] args)
|
|
|
|
{
|
|
|
|
double x = builtinFunctionArgumentToDouble (runid, args[0]);
|
|
|
|
return new Double (Math.log(x));
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object exp (long runid, Object[] args)
|
|
|
|
{
|
|
|
|
double x = builtinFunctionArgumentToDouble (runid, args[0]);
|
|
|
|
return new Double (Math.exp(x));
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object sqrt (long runid, Object[] args)
|
|
|
|
{
|
|
|
|
double x = builtinFunctionArgumentToDouble (runid, args[0]);
|
|
|
|
return new Double (Math.sqrt(x));
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object rand (long runid, Object[] args)
|
|
|
|
{
|
|
|
|
return new Double (random.nextDouble ());
|
|
|
|
}
|
|
|
|
|
|
|
|
public Object srand (long runid, Object[] args)
|
|
|
|
{
|
|
|
|
long prev_seed = seed;
|
|
|
|
|
|
|
|
seed = (args == null || args.length == 0)?
|
|
|
|
System.currentTimeMillis ():
|
|
|
|
builtinFunctionArgumentToLong (runid, args[0]);
|
|
|
|
|
|
|
|
random.setSeed (seed);
|
|
|
|
return new Long (prev_seed);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* miscellaneous built-in functions */
|
|
|
|
public Object system (long runid, Object[] args)
|
|
|
|
{
|
|
|
|
String str = builtinFunctionArgumentToString (runid, args[0]);
|
|
|
|
Process proc = null;
|
|
|
|
int n = 0;
|
|
|
|
|
|
|
|
str = builtinFunctionArgumentToString (runid, args[0]);
|
|
|
|
|
2006-12-03 06:53:25 +00:00
|
|
|
try { proc = popen (str); }
|
2006-12-02 16:26:29 +00:00
|
|
|
catch (IOException e) { n = -1; }
|
|
|
|
|
|
|
|
if (proc != null)
|
|
|
|
{
|
2006-12-03 06:53:25 +00:00
|
|
|
InputStream is;
|
|
|
|
byte[] buf = new byte[1024];
|
|
|
|
|
|
|
|
is = proc.getInputStream();
|
|
|
|
|
|
|
|
// TODO; better error handling... program execution.. io redirection???
|
|
|
|
try { while (is.read (buf) != -1) ; }
|
|
|
|
catch (IOException e) { n = -1; };
|
|
|
|
|
2006-12-02 16:26:29 +00:00
|
|
|
try { n = proc.waitFor (); }
|
|
|
|
catch (InterruptedException e)
|
|
|
|
{
|
|
|
|
proc.destroy ();
|
|
|
|
n = -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new Long (n);
|
|
|
|
}
|
2006-12-03 06:53:25 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* == utility functions == */
|
|
|
|
private Process popen (String command) throws IOException
|
|
|
|
{
|
|
|
|
String full;
|
|
|
|
|
|
|
|
/* TODO: consider OS names and versions */
|
|
|
|
full = System.getenv ("ComSpec");
|
|
|
|
if (full != null)
|
|
|
|
{
|
|
|
|
full = full + " /c " + command;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
full = System.getenv ("SHELL");
|
|
|
|
if (full != null)
|
|
|
|
{
|
|
|
|
full = "/bin/sh -c \"" + command + "\"";
|
|
|
|
}
|
|
|
|
else full = command;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Runtime.getRuntime().exec (full);
|
|
|
|
}
|
2006-11-24 13:25:12 +00:00
|
|
|
}
|