1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159
|
package ij.macro;
import ij.*;
import ij.text.*;
import ij.util.*;
import ij.gui.ImageCanvas;
import java.io.*;
import java.awt.*;
import ij.plugin.frame.Editor;
/** This class runs macros in a separate thread. */
public class MacroRunner implements Runnable {
private String macro;
private Program pgm;
private int address;
private String name;
private Thread thread;
private String argument;
private Editor editor;
/** Create a MacrRunner. */
public MacroRunner() {
}
/** Create a new object that interprets macro source in a separate thread. */
public MacroRunner(String macro) {
this(macro, (Editor)null);
}
/** Create a new object that interprets macro source in debug mode if 'editor' is not null. */
public MacroRunner(String macro, Editor editor) {
this.macro = macro;
this.editor = editor;
thread = new Thread(this, "Macro$");
thread.setPriority(Math.max(thread.getPriority()-2, Thread.MIN_PRIORITY));
thread.start();
}
/** Create a new object that interprets macro source in a
separate thread, and also passing a string argument. */
public MacroRunner(String macro, String argument) {
this.macro = macro;
this.argument = argument;
thread = new Thread(this, "Macro$");
thread.setPriority(Math.max(thread.getPriority()-2, Thread.MIN_PRIORITY));
thread.start();
}
/** Create a new object that interprets a macro file using a separate thread. */
public MacroRunner(File file) {
int size = (int)file.length();
if (size<=0)
return;
try {
StringBuffer sb = new StringBuffer(5000);
BufferedReader r = new BufferedReader(new FileReader(file));
while (true) {
String s=r.readLine();
if (s==null)
break;
else
sb.append(s+"\n");
}
r.close();
macro = new String(sb);
}
catch (Exception e) {
IJ.error(e.getMessage());
return;
}
thread = new Thread(this, "Macro$");
thread.setPriority(Math.max(thread.getPriority()-2, Thread.MIN_PRIORITY));
thread.start();
}
/** Create a new object that runs a tokenized macro in a separate thread. */
public MacroRunner(Program pgm, int address, String name) {
this(pgm, address, name, (String)null);
}
/** Create a new object that runs a tokenized macro in a separate thread,
passing a string argument. */
public MacroRunner(Program pgm, int address, String name, String argument) {
this.pgm = pgm;
this.address = address;
this.name = name;
this.argument = argument;
thread = new Thread(this, name+"_Macro$");
thread.setPriority(Math.max(thread.getPriority()-2, Thread.MIN_PRIORITY));
thread.start();
}
/** Create a new object that runs a tokenized macro in debug mode if 'editor' is not null. */
public MacroRunner(Program pgm, int address, String name, Editor editor) {
this.pgm = pgm;
this.address = address;
this.name = name;
this.editor = editor;
thread = new Thread(this, name+"_Macro$");
thread.setPriority(Math.max(thread.getPriority()-2, Thread.MIN_PRIORITY));
thread.start();
}
/** Runs tokenized macro on current thread if pgm.queueCommands is true. */
public void runShortcut(Program pgm, int address, String name) {
this.pgm = pgm;
this.address = address;
this.name = name;
if (pgm.queueCommands)
run();
else {
thread = new Thread(this, name+"_Macro$");
thread.setPriority(Math.max(thread.getPriority()-2, Thread.MIN_PRIORITY));
thread.start();
}
}
public Thread getThread() {
return thread;
}
public void run() {
Interpreter interp = new Interpreter();
interp.argument = argument;
if (editor!=null)
interp.setEditor(editor);
try {
if (pgm==null)
interp.run(macro);
else {
if ("Popup Menu".equals(name)) {
PopupMenu popup = Menus.getPopupMenu();
if (popup!=null) {
ImagePlus imp = null;
Object parent = popup.getParent();
if (parent instanceof ImageCanvas)
imp = ((ImageCanvas)parent).getImage();
if (imp!=null)
WindowManager.setTempCurrentImage(Thread.currentThread(), imp);
}
}
interp.runMacro(pgm, address, name);
}
} catch(Throwable e) {
interp.abortMacro();
IJ.showStatus("");
IJ.showProgress(1.0);
ImagePlus imp = WindowManager.getCurrentImage();
if (imp!=null) imp.unlock();
String msg = e.getMessage();
if (e instanceof RuntimeException && msg!=null && e.getMessage().equals(Macro.MACRO_CANCELED))
return;
IJ.handleException(e);
}
}
}
|