Changes from code review, BeanShell document scripts can now be edited,

Rhino document scripts cannot.
This commit is contained in:
Tomas O'Connor
2003-05-26 13:47:45 +00:00
parent 9b4ee751fe
commit 73ee44c0cd
5 changed files with 180 additions and 247 deletions

View File

@@ -1,59 +1,71 @@
import java.io.*;
import java.net.URL;
import java.net.URLDecoder;
import drafts.com.sun.star.script.framework.runtime.XScriptContext;
public class DebugRunner {
private static final String FILE_URL_PREFIX =
System.getProperty("os.name").startsWith("Windows") == true ?
"file:///" : "file://";
public void go(final XScriptContext xsctxt, String language, String uri,
String filename) {
OOScriptDebugger debugger;
InputStream is = null;
String path = "";
System.out.println("uri: " + uri + ", language: " + language);
if (language.equals("Rhino"))
debugger = new OORhinoDebugger();
else if (language.equals("BeanShell"))
debugger = new OOBeanShellDebugger();
else
return;
if (uri.startsWith(FILE_URL_PREFIX)) {
uri = URLDecoder.decode(uri);
String s = uri.substring(FILE_URL_PREFIX.length());
File f = new File(s);
if (f.exists()) {
if (f.isDirectory()) {
if (!filename.equals("")) {
path = new File(f, filename).getAbsolutePath();
}
}
else {
path = f.getAbsolutePath();
}
}
}
else if (uri.startsWith("http://")) {
try {
if (!filename.equals(""))
uri = uri + "/" + filename;
URL url = new URL(uri);
is = url.openStream();
}
catch (IOException ioe) {
ioe.printStackTrace();
}
}
System.out.println("path: " + path);
debugger.go(xsctxt, path);
}
}
import java.io.File;
import java.io.InputStream;
import java.io.IOException;
import java.net.URL;
import java.net.URLDecoder;
import com.sun.star.uno.XComponentContext;
import com.sun.star.scripting.runtime.java.PathUtils;
import drafts.com.sun.star.script.framework.runtime.XScriptContext;
public class DebugRunner {
private static final String FILE_URL_PREFIX =
System.getProperty("os.name").startsWith("Windows") == true ?
"file:///" : "file://";
public void go(final XScriptContext xsctxt, String language, String uri,
String filename) {
OOScriptDebugger debugger;
String path = "";
if (language.equals("Rhino")) {
debugger = new OORhinoDebugger();
}
else if (language.equals("BeanShell")) {
debugger = new OOBeanShellDebugger();
}
else {
return;
}
if (uri.startsWith(FILE_URL_PREFIX)) {
uri = URLDecoder.decode(uri);
String s = uri.substring(FILE_URL_PREFIX.length());
File f = new File(s);
if (f.exists()) {
if (f.isDirectory()) {
if (!filename.equals("")) {
path = new File(f, filename).getAbsolutePath();
}
}
else {
path = f.getAbsolutePath();
}
}
debugger.go(xsctxt, path);
}
else {
if (!uri.endsWith("/")) {
uri += "/";
}
String script = uri + filename;
InputStream is;
try {
is = PathUtils.getScriptFileStream(
script, xsctxt.getComponentContext());
if (is != null) {
debugger.go(xsctxt, is);
}
}
catch (IOException ioe) {
System.out.println("Error loading script: " + script);
}
}
}
}