Run sysinfo script on startup whenever GroovyPad is displayed
This commit is contained in:
parent
d965a5bf88
commit
3c3d06543a
|
@ -44,6 +44,8 @@ import net.filebot.util.TeePrintStream;
|
||||||
|
|
||||||
public class GroovyPad extends JFrame {
|
public class GroovyPad extends JFrame {
|
||||||
|
|
||||||
|
public static final String DEFAULT_SCRIPT = "runScript 'sysinfo'";
|
||||||
|
|
||||||
public GroovyPad() throws IOException {
|
public GroovyPad() throws IOException {
|
||||||
super("Groovy Pad");
|
super("Groovy Pad");
|
||||||
|
|
||||||
|
@ -146,7 +148,7 @@ public class GroovyPad extends JFrame {
|
||||||
File pad = ApplicationFolder.AppData.resolve(name);
|
File pad = ApplicationFolder.AppData.resolve(name);
|
||||||
if (!pad.exists()) {
|
if (!pad.exists()) {
|
||||||
// use this default value so people can easily submit bug reports with fn:sysinfo logs
|
// use this default value so people can easily submit bug reports with fn:sysinfo logs
|
||||||
ScriptShellMethods.saveAs("runScript 'sysinfo'", pad);
|
ScriptShellMethods.saveAs(DEFAULT_SCRIPT, pad);
|
||||||
}
|
}
|
||||||
return FileLocation.create(pad);
|
return FileLocation.create(pad);
|
||||||
}
|
}
|
||||||
|
@ -166,17 +168,21 @@ public class GroovyPad extends JFrame {
|
||||||
|
|
||||||
private Runner currentRunner = null;
|
private Runner currentRunner = null;
|
||||||
|
|
||||||
protected void runScript(ActionEvent evt) {
|
public void runScript(ActionEvent evt) {
|
||||||
// persist script file and clear output
|
// persist script file and clear output
|
||||||
try {
|
try {
|
||||||
editor.save();
|
editor.save();
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
// won't happen
|
debug.log(Level.WARNING, e, e::getMessage);
|
||||||
}
|
}
|
||||||
output.setText("");
|
|
||||||
|
|
||||||
|
output.setText("");
|
||||||
|
runScript(editor.getText());
|
||||||
|
}
|
||||||
|
|
||||||
|
public void runScript(String script) {
|
||||||
if (currentRunner == null || currentRunner.isDone()) {
|
if (currentRunner == null || currentRunner.isDone()) {
|
||||||
currentRunner = new Runner(editor.getText()) {
|
currentRunner = new Runner(script) {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected void done() {
|
protected void done() {
|
||||||
|
|
|
@ -112,12 +112,15 @@ public class MainFrame extends JFrame {
|
||||||
pad.addWindowListener(new WindowAdapter() {
|
pad.addWindowListener(new WindowAdapter() {
|
||||||
@Override
|
@Override
|
||||||
public void windowOpened(WindowEvent e) {
|
public void windowOpened(WindowEvent e) {
|
||||||
MainFrame.this.setVisible(false);
|
setVisible(false);
|
||||||
|
|
||||||
|
// run default script on startup
|
||||||
|
pad.runScript(GroovyPad.DEFAULT_SCRIPT);
|
||||||
};
|
};
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void windowClosing(WindowEvent e) {
|
public void windowClosing(WindowEvent e) {
|
||||||
MainFrame.this.setVisible(true);
|
setVisible(true);
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue