-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathUtils.java
executable file
·837 lines (753 loc) · 25.3 KB
/
Utils.java
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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
/*
* IJ BAR: https://github.com/tferr/Scripts
*
* This program is free software; you can redistribute it and/or modify it under the terms of the
* GNU General Public License as published by the Free Software Foundation
* (http://www.gnu.org/licenses/gpl.txt).
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*/
package bar;
import java.awt.Desktop;
import java.awt.Menu;
import java.awt.MenuItem;
import java.awt.PopupMenu;
import java.awt.Toolkit;
import java.awt.datatransfer.Clipboard;
import java.awt.datatransfer.DataFlavor;
import java.io.File;
import java.io.FileFilter;
import java.util.Random;
import org.scijava.Context;
import ij.IJ;
import ij.Menus;
import ij.WindowManager;
import ij.gui.GenericDialog;
import ij.io.Opener;
import ij.measure.ResultsTable;
import ij.plugin.MacroInstaller;
import ij.plugin.PlugIn;
import ij.plugin.frame.Editor;
import ij.text.TextPanel;
import ij.text.TextWindow;
import net.imagej.ui.swing.script.TextEditor;
import net.imagej.ui.swing.script.TextEditor.Tab;
/**
* A collection of utilities to interact with BAR, including scripting aids for
* ImageJ.
*/
public class Utils implements PlugIn {
/** The BAR version (as displayed in the BAR>About... dialog */
static final String VERSION = "1.1.5";
/** The URL to BAR's wiki page */
static final String DOC_URL = "http://fiji.sc/BAR";
/** The URL to BAR's GitHub repository */
static final String SRC_URL = "https://github.com/tferr/Scripts";
/** The URL to BAR's GitHub repository */
static final String API_URL = "http://tferr.github.io/Scripts/apidocs/";
/** The absolute path to the /BAR directory */
static final String BAR_DIR = IJ.getDirectory("plugins")
+ "Scripts" + File.separator + "BAR" + File.separator;
/** The absolute path to the /BAR/Snippets/ directory */
static final String SNIPPETS_DIR = BAR_DIR +"Snippets" + File.separator;
/** The absolute path to the /BAR/lib/ directory */
static final String LIB_DIR = BAR_DIR + "lib" + File.separator;
/* (non-Javadoc)
* @see ij.plugin.PlugIn#run(java.lang.String)
*/
@Override
public void run(final String arg) {
shiftClickWarning();
final String[] args = arg.split(":");
if (args.length==1) return;
// Instructions related to snippets
if (args[0].equalsIgnoreCase("snippet")) {
if (args[1].equalsIgnoreCase("list")) {
listDirectory(SNIPPETS_DIR);
} else if (args[1].equalsIgnoreCase("reveal")) {
revealFile(SNIPPETS_DIR);
} else //TODO implement a "reload snippets" command
openSnippet(arg);
// Instructions related to Menu transfers
} else if (args[0].equalsIgnoreCase("moveMenu")) {
moveSubmenu(args[1]);
// Instructions related to tools and toolsets
} else if (args[0].startsWith("tools")) {
final String dir = IJ.getDirectory("macros") + args[0]
+ File.separator;
if (args[1].equalsIgnoreCase("reveal")) {
revealFile(dir);
} else if (IJ.shiftKeyDown()) {
IJ.showStatus("Opening file...");
openScript(dir, args[1]);
} else {
installMacroFile(dir, args[1]);
}
// Instructions related to lib files
} else if (arg.startsWith("lib:")) {
if (args[1].equalsIgnoreCase("reveal")) {
revealFile(LIB_DIR);
}
}
}
/**
* Displays a status-bar warning on "open by Shift-click" being disabled for
* pre-compiled plugins. Used by BAR plugins.
*/
public static void shiftClickWarning() {
if (IJ.shiftKeyDown()) {
IJ.beep();
IJ.showStatus("Compiled plugin. Use 'About BAR...' to access source code repository.");
}
}
/**
* Transfers the specified BAR submenu between the main IJ's menu bar and
* the image's context menu, or vice-versa if the submenu is already in the
* context menu. An acknowledgement message is displayed if
* {@link ij.IJ#macroRunning()} returns false.
*
* @param subMenu
* the {@link java.awt.Menu} to be transfered
*/
private void moveSubmenu(final String subMenu) {
final Menu barMenu = Menus.getImageJMenu("BAR");
final PopupMenu popMenu = Menus.getPopupMenu();
final String placeHolderString = subMenu + " ";
final Menu placeHolder = new Menu(placeHolderString);
placeHolder.setEnabled(false);
final Integer popmenuPos = getMenuItem(popMenu, subMenu);
final Integer barmenuPos = getMenuItem(barMenu, subMenu);
if (popmenuPos==null || barmenuPos==null) {
IJ.error("BAR v"+ VERSION +" Error", "Some menu items are not accessible.\n"
+"Perhaps the image's context menu is disabled?");
return;
}
if (popmenuPos==-1) { // parent is MenuBar
final MenuItem lastItem = popMenu.getItem(popMenu.getItemCount()-1);
if (!(lastItem instanceof Menu))
popMenu.addSeparator();
popMenu.add(barMenu.getItem(barmenuPos));
barMenu.insert(placeHolder, barmenuPos);
if (!IJ.macroRunning())
IJ.showMessage("BAR v"+ VERSION, ""+ subMenu +"> transferred to context menu.\n"
+"Right-click on the image canvas to access it.");
} else { // parent is PopupMenu
final Integer placeholderPos = getMenuItem(barMenu, placeHolderString);
barMenu.remove(placeholderPos);
barMenu.insert(popMenu.getItem(popmenuPos), placeholderPos);
final MenuItem lastItem = popMenu.getItem(popMenu.getItemCount()-1);
if (lastItem.getLabel().equals("-"))
popMenu.remove(lastItem);
if (!IJ.macroRunning())
IJ.showStatus("BAR>" + subMenu + "> transferred to main menu.");
}
}
/**
* Returns the index of the MenuItem labeled by the specified string.
*
* @param menu
* the java.awt.Menu to be parsed
* @param label
* the java.awt.MenuItem label being searched
* @return the index of the java.awt.MenuItem. Returns <code>-1</code> if no
* match is found, <code>null</code> if menu is not available.
*/
private Integer getMenuItem(final Menu menu, final String label) {
int position = -1;
if (menu==null) {
return null;
} else {
for (int i=0; i<menu.getItemCount(); i++) {
if (menu.getItem(i).getLabel().equals(label)) {
position = i;
break;
}
}
}
return position;
}
/**
* Retrieves text from the system clipboard.
*
* @return the text contents of the clipboard or an empty string if no text
* could be retrieved
*/
public static String getClipboardText() {
String text = "";
try {
final Toolkit toolkit = Toolkit.getDefaultToolkit();
final Clipboard clipboard = toolkit.getSystemClipboard();
text = (String)clipboard.getData(DataFlavor.stringFlavor);
} catch (final Exception e) {
//if (IJ.debugMode) IJ.handleException(e);
}
return text;
}
/**
* Prints the contents of a directory to a dedicated TextWindow displayed at
* the specified location. The location reverts to the center of the screen
* if one of the specified coordinates is invalid).
* <p>
* An error message is displayed in a dialog box if directory could not be
* found or if directory is empty (see {@link #fileExists(File)}).
* <p>
* A {@link bar.FileDrop FileDrop} listener is attached to the
* {@link ij.text.TextWindow TextWindow}, which means that, once displayed,
* the method can be triggered by dragging and dropping files from the
* native file manager.
* <p>
* Some system files (hidden files, <code>Thumbs.db</code>) are excluded
* from the list. If the directory is empty, users are prompted with the
* option to reveal the file in the native file browser (see
* {@link #revealFile(String)}).
* <p>
* Users can double click on a listed file path to have it open by ImageJ.
*
* @param dir
* Path of the directory to be listed
* @param xPos
* The screen x location (from top-left corner) where the
* TextWindow should be displayed
* @param yPos
* The screen y location (from top-left corner) where the
* TextWindow should be displayed
*
* @see #listDirectory(String)
* @see #listDirectory(String, boolean)
*/
public static void listDirectory(String dir, int xPos, int yPos) {
if (!dir.endsWith(File.separator))
dir += File.separator;
final File f = new File(dir);
if (!fileExists(f) || !f.isDirectory())
return;
// Define the FileFilter to exclude system files
final FileFilter filter = new FileFilter() {
@Override
public boolean accept(final File f) {
if (f.isHidden() || f.getName().equals("Thumbs.db"))
return false;
else
return true;
}
};
// Retrieve file list
final File[] files = f.listFiles(filter);
if (files.length == 0) {
if (IJ.showMessageWithCancel("Empty Directory", dir
+ "\nis empty. Open it?"))
revealFile(dir);
return;
}
// Create Window and validate positioning
final int T_WIDTH = 550;
final int T_HEIGHT = 200;
final TextWindow tw = new TextWindow(dir + " [All files]", "", T_WIDTH, T_HEIGHT);
if (xPos > IJ.getScreenSize().getWidth() - (T_WIDTH / 2))
xPos = -1;
if (yPos > IJ.getScreenSize().getHeight() - (T_HEIGHT / 2))
yPos = -1;
if (xPos > 0 && yPos > 0)
tw.setLocation(xPos, yPos);
// Implement drag and drop support. Consider only first file dropped
new FileDrop(tw, new FileDrop.Listener() {
public void filesDropped(final java.io.File[] files) {
try {
final String dir = (files[0].isDirectory()) ? files[0]
.getCanonicalPath() : files[0].getParent();
if (dir == null) {
IJ.error("BAR " + getVersion(),
"Error: Drag and Drop failed...");
return;
}
int xPos, yPos;
try {
final java.awt.Point pos = tw.getLocationOnScreen();
xPos = (int) pos.getX() + 20;
yPos = (int) pos.getY() + 40;
} catch (final java.awt.IllegalComponentStateException e) {
xPos = yPos = -1;
}
listDirectory(dir, xPos, yPos);
} catch (final Exception e) {
IJ.error("BAR " + getVersion(),
"Error: Drag and Drop failed...");
return;
}
}
});
// Populate TextPanel
final TextPanel tp = tw.getTextPanel();
final String HEADING = "Double-click on a filename to open it. Drag & "
+ "drop a folder to generate new lists";
tp.setColumnHeadings(HEADING);
final int padDigits = (int) (Math.log10(files.length) + 1);
for (int i = 0; i < files.length; i++) {
final String fname = (files[i].isDirectory()) ? files[i].getName()
+ File.separator : files[i].getName();
tp.appendWithoutUpdate("" + IJ.pad((i + 1), padDigits) + ": " + dir + fname);
}
// Hack: create an empty row as wide as heading to ensure heading is fully visible
final String spacer = " "
+ " "
+ " ";
tp.appendWithoutUpdate(spacer);
tp.updateDisplay();
IJ.showStatus(String.valueOf(files.length) + " items in " + dir);
}
/**
* Prints the contents of a directory to a dedicated TextWindow displayed on
* the center of the screen.
*
* @param dir
* the path of the directory to be listed
*
* @see #listDirectory(String, int, int)
* @see #listDirectory(String, boolean)
*/
public static void listDirectory(final String dir) {
listDirectory(dir, -1, -1);
}
/**
* Prints the contents of a directory to a dedicated TextWindow allowed to
* be displayed with a slight offset from frontmost window. This "cascade"
* positioning defaults to the center of the screen if frontmost window
* could not be retrieved or is too close to screen boundaries.
*
* @param dir
* the path of the directory to be listed
* @param cascade
* if <code>true</code> {@link ij.text.TextWindow TextWindow}
* "cascades" from ImageJ's
* {@link ij.WindowManager#getFrontWindow() frontmost} window. If
* <code>false</code>, TextWidow is displayed in the center of
* the screen
*
* @see #listDirectory(String, int, int)
* @see #listDirectory(String)
*/
public static void listDirectory(final String dir, final boolean cascade) {
final java.awt.Frame frame = WindowManager.getFrontWindow();
int xPos = -1; int yPos = -1;
if (cascade && frame != null) {
final java.awt.Point pos = frame.getLocationOnScreen();
xPos = (int) pos.getX() + 20;
yPos = (int) pos.getY() + 40;
}
listDirectory(dir, xPos, yPos);
}
/**
* Installs the specified macro file. An error message is displayed in a
* dialog box if file path is invalid.
*
* @param directory
* the directory containing the macro file to be installed
* @param filename
* the filename of the macro file to be installed
*
* @see #fileExists(File)
*/
void installMacroFile(final String directory, final String filename) {
if (directory==null || filename==null) return;
final String path = directory + File.separator + filename;
final File f = new File(path);
if (!fileExists(f)) return;
final MacroInstaller mi = new MacroInstaller();
mi.installFile(path);
}
/**
* Opens the specified file in the IJ2 Script Editor or in the IJ1 built-in
* Editor, if the former cannot be found (vanilla IJ1). No tests assessing
* the existence of specified file/directory are performed.
*
* @param dir
* the directory containing the file to be opened
* @param filename
* the filename of the file to be opened
*
* @see #openIJ2Script(File)
* @see #openIJ1Script(String, String)
*/
public static void openScript(final String dir, final String filename) {
try {
Class.forName("net.imagej.ui.swing.script.TextEditor");
openIJ2Script(new File(dir+filename));
} catch (final ClassNotFoundException e) {
openIJ1Script(dir, filename);
}
}
/**
* Opens the specified file in the ImageJ1 built-in editor. No tests
* assessing the existence of specified file/directory are performed.
*
* @param dir
* the directory containing the file to be opened
* @param filename
* the filename of the file to be opened
*
* @see #openScript(String, String)
* @see #openIJ2Script(File)
*/
public static void openIJ1Script(final String dir, final String filename) {
final Editor ed = (Editor)IJ.runPlugIn("ij.plugin.frame.Editor", "");
if (ed!=null) ed.open(dir, filename);
}
/**
* Opens the specified file in the ImageJ2 Script Editor. No tests assessing
* the existence of the specified file are performed.
*
* @param file
* the file to be opened
*
* @see #openScript(String, String)
* @see #openIJ1Script(String, String)
*/
public static void openIJ2Script(final File file){
// retrieve the ImageJ application context
// https://github.com/imagej/imagej-tutorials/tree/master/call-modern-from-legacy
final Context context = (Context)IJ.runPlugIn("org.scijava.Context", "");
final TextEditor editor = new TextEditor(context);
final Tab tab = editor.open(file);
editor.setVisible(true);
tab.setVisible(true);
}
/**
* Opens the specified file in the "Snippets" directory of BAR. No tests
* assessing the existence of the specified file are performed.
*
* @param filename
* the filename of the script to be opened
*
* @see #getSnippetsDir()
* @see #openScript(String, String)
*/
public static void openSnippet(final String filename) {
openScript(SNIPPETS_DIR , filename);
}
/**
* Opens the specified file in the "lib" directory of BAR. No tests
* assessing the existence of the specified file are performed.
*
* @param filename
* the filename of the <code>lib/</code> file to be opened
*
* @see #openScript(String, String)
* @see #getLibDir()
*/
public static void openLib(final String filename) {
openScript(LIB_DIR, filename);
}
/**
* Tests whether a file or directory exists. An error
* {@link ij.IJ#showMessage message} is displayed in a dialog box if file
* cannot be found
*
* @param file
* the File to be tested
* @return true, if successful.
*
* @see #fileExists(String)
*/
public static boolean fileExists(final File file) {
final boolean valid = file.exists();
if (!valid) {
IJ.showMessage("Invalid file path",
"Path not found:\n" + splitFilenameAcrossLines(file.toString(), 65)
+ "\n \nThe file may have been moved, renamed or deleted. If it has been\n"
+ "deleted and is part of your ImageJ installation, you can use the\n"
+ "updater to re-install it.");
}
return valid;
}
// http://stackoverflow.com/questions/7528045/
static String splitFilenameAcrossLines(String filename, int maxLineLength) {
final String[] tokens = filename.split(File.separator);
final StringBuilder output = new StringBuilder(filename.length());
int lineLength = 0;
for (int i = 0; i < tokens.length; i++) {
String word = tokens[i];
if (lineLength + (File.separator + word).length() > maxLineLength) {
if (i > 0)
output.append(File.separator).append("\n");
lineLength = 0;
}
if (i < tokens.length - 1
&& (lineLength + (word + File.separator).length() + tokens[i + 1].length() <= maxLineLength))
word += File.separator;
output.append(word);
lineLength += word.length();
}
return output.toString();
}
/**
* Tests whether a file or directory exists at the specified path. An error
* message is displayed in a dialog box if file path is invalid
*
* @param filepath
* the file path to be tested
* @return <code>true</code>, if successful
*
* @see #fileExists(File)
*/
public static boolean fileExists(final String filepath) {
return fileExists(new File(filepath));
}
/**
* "Reveals" the file associated with the specified file path in the
* operating system. Described in {@link #revealFile(File)}
*
* @param filePath
* the file path to be opened by the operating system
*
* @see #fileExists(File)
*/
public static void revealFile(final String filePath) {
final File file = new File(filePath);
revealFile(file);
}
/**
* "Reveals" the specified file path in the operating system. If
* <code>file</code> is a directory, opens it in the file manager of the
* operating system, otherwise the application associated with the file type
* will be launched. An error message is displayed in a dialog box if file
* path is invalid, or if the operating system could not be detected.
*
* @param file
* the file to be opened by the operating system
*
* @see #fileExists(File)
*/
public static void revealFile(final File file) {
if (!fileExists(file))
return;
boolean supportedOS = false;
if (Desktop.isDesktopSupported()) {
try {
final Desktop desktop = Desktop.getDesktop();
if (desktop.isSupported(Desktop.Action.OPEN)) {
desktop.open(file);
supportedOS = true;
}
} catch (final Exception e) {
IJ.handleException(e);
supportedOS = false;
}
}
if (!supportedOS) {
String cmd;
if (IJ.isLinux())
cmd = "xdg-open "; //gnome-open should also be tried?
else if (IJ.isMacOSX())
cmd = "open ";
else if (IJ.isWindows())
cmd = "cmd /c start ";
else {
IJ.error("This command does not support your OS. Please report this bug at\n"
+ SRC_URL);
return;
}
// URIs seem to be the most cross-platform effective way of dealing with
// spaces in file paths. However, triple slashes seem to be required for
// proper handling of local files (at least in ubuntu 14.10). This does
// not seem to be the case with MW (wine) or Mac OS that seem to accept
// 'file:/' just fine. Since we are dealing with URIs we could use
// ij.plugin.BrowserLauncher.openURL(uri). Unfortunately that does not
// seem to work with linux, at least in Ubuntu 14.10 (fresh install)
String path = file.getPath();
if (path.contains(" ")) {
path = file.toURI().normalize().toString();
if (path.indexOf("file:///")==-1)
path = path.replace("file:/", "file:///");
}
try {
Runtime.getRuntime().exec(cmd + path);
} catch (final Exception e) {
IJ.handleException(e);
}
}
}
/**
* Returns the path to <code>BAR/Analysis/</code>.
*
* @return the absolute path to the "Analysis" directory
*/
public static String getAnalysisDir() {
return BAR_DIR + "Analysis" + File.separator;
}
/**
* Returns the path to <code>BAR/Annotation/</code>.
*
* @return the absolute path to the "Annotation" directory
*/
public static String getAnnotationDir() {
return BAR_DIR + "Annotation" + File.separator;
}
/**
* Returns the path to <code>BAR/Data_Analysis/</code>.
*
* @return the absolute path to the "Data_Analysis" directory
*/
public static String getDataAnalysisDir() {
return BAR_DIR + "Data_Analysis" + File.separator;
}
/**
* Returns the path to <code>BAR/lib/</code>.
*
* @return the absolute path to the "lib" directory
*/
public static String getLibDir() {
return LIB_DIR;
}
/**
* Returns the path to <code>BAR/Morphometry/</code>.
*
* @return the absolute path to the "Morphometry" directory
*/
public static String getMorphometryDir() {
return BAR_DIR + "Morphometry" + File.separator;
}
/**
* Returns the path to the root directory of BAR.
*
* @return the absolute path to the root directory of BAR
*/
public static String getBARDir() {
return BAR_DIR;
}
/**
* Returns the path to <code>BAR/Segmentation/</code>.
*
* @return the absolute path to the "Segmentation" directory
*/
public static String getSegmentationDir() {
return BAR_DIR + "Segmentation" + File.separator;
}
/**
* Returns the path to <code>Bar/Snippets/</code>.
*
* @return the absolute path to the "Snippets" directory
*/
public static String getSnippetsDir() {
return SNIPPETS_DIR;
}
/**
* Returns the BAR version as displayed in the "About..." dialog
*
* @return the version of BAR
*/
public static String getVersion() {
return VERSION;
}
/**
* Returns the URL of BAR's API.
*
* @return the API (javadoc) URL
*/
public static String getJavadocURL() {
return API_URL;
}
/**
* Returns the URL of BAR's documentation page.
*
* @return the documentation URL
*/
public static String getDocURL() {
return DOC_URL;
}
/**
* Returns the URL of BAR's Git repository.
*
* @return the GitHub URL of BAR
*/
public static String getSourceURL() {
return SRC_URL;
}
/**
* Checks if the ImageJ "Results" table contains valid data. If the
* "Results" table is not open or is empty, the user is prompted with
* alternatives to retrieve one, including: 1) Importing a new file; 2)
* Running a <a href=
* "https://github.com/tferr/Scripts/blob/master/Data_Analysis/Clipboard_to_Results.py"
* target="_blank"> BAR script </a> that tries to import data from the
* system clipboard; or 3) Importing a demo dataset populated by random
* (Gaussian) values.
*
* @return A populated Results table or <code>null</code> if all attempts
* were unsuccessful
*
* @see #loadDemoResults()
*
*/
public static ResultsTable getResultsTable() {
ResultsTable rt = ResultsTable.getResultsTable();
final boolean[] thirdAction = { false };
if (ResultsTable.getResultsWindow() == null || rt.getCounter() == 0) {
final GenericDialog gd = new GenericDialog("No Data in Results Table");
gd.addMessage("Import new file, or try to retrieve data from clipboard?");
gd.enableYesNoCancel("Import file", "Read clipboard");
gd.addHelp("");
gd.setHelpLabel("Use demo data");
gd.addDialogListener(new ij.gui.DialogListener() {
public boolean dialogItemChanged(final GenericDialog gd, final java.awt.AWTEvent e) {
if (e != null && e.toString().contains("demo")) {
gd.dispose();
thirdAction[0] = true;
}
return true;
}
});
gd.hideCancelButton();
gd.showDialog();
if (gd.wasCanceled()) {
return null;
} else if (gd.wasOKed()) {
Opener.openResultsTable("");
} else if (thirdAction[0]) {
loadDemoResults();
} else {
if (fileExists(new File(getDataAnalysisDir() + "Clipboard_to_Results.py")))
IJ.run("Clipboard to Results");
}
}
rt = ResultsTable.getResultsTable();
if (ResultsTable.getResultsWindow() == null || rt.getCounter() == 0)
rt = null;
return rt;
}
/**
* Populates the ImageJ "Results" table with random, Gaussian ("normally")
* distributed values. Useful for demonstrating/testing scripts that read
* data from the "Results" table.
*
* @see #getResultsTable()
*/
public static void loadDemoResults() {
final ResultsTable rt = new ResultsTable();
final double[] m1MeanSD = { 200, 50 };
final double[] m2MeanSD = { 250, 50 };
final double[] a1MeanSD = { 350, 100 };
final double[] a2MeanSD = { 300, 100 };
final double[] xyMeanSD = { 500, 100 };
double value;
for (int i = 0; i < 50; i++) {
rt.incrementCounter();
value = new Random().nextGaussian();
rt.setLabel("Type I", i);
rt.setValue("Mean", i, m1MeanSD[0] + value * m1MeanSD[1]);
rt.setValue("Area", i, a1MeanSD[0] + value * a1MeanSD[1]);
rt.setValue("X", i, xyMeanSD[0] + new Random().nextGaussian() * xyMeanSD[1]);
rt.setValue("Y", i, xyMeanSD[0] + new Random().nextGaussian() * xyMeanSD[1]);
}
for (int i = 50; i < 100; i++) {
rt.incrementCounter();
value = new Random().nextGaussian();
rt.setLabel("Type II", i);
rt.setValue("Mean", i, m2MeanSD[0] + value * m2MeanSD[1]);
rt.setValue("Area", i, a2MeanSD[0] + value * a2MeanSD[1]);
rt.setValue("X", i, xyMeanSD[0] + new Random().nextGaussian() * xyMeanSD[1]);
rt.setValue("Y", i, xyMeanSD[0] + new Random().nextGaussian() * xyMeanSD[1]);
}
rt.show("Results");
}
}