Skip to content

Commit 30f7e6a

Browse files
committedSep 24, 2017
Add LoggingDemo to demonstrate LoggingPanel and SwingConsolePane
1 parent 6fbd881 commit 30f7e6a

File tree

1 file changed

+131
-0
lines changed

1 file changed

+131
-0
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
/*
2+
* #%L
3+
* SciJava UI components for Java Swing.
4+
* %%
5+
* Copyright (C) 2010 - 2017 Board of Regents of the University of
6+
* Wisconsin-Madison.
7+
* %%
8+
* Redistribution and use in source and binary forms, with or without
9+
* modification, are permitted provided that the following conditions are met:
10+
*
11+
* 1. Redistributions of source code must retain the above copyright notice,
12+
* this list of conditions and the following disclaimer.
13+
* 2. Redistributions in binary form must reproduce the above copyright notice,
14+
* this list of conditions and the following disclaimer in the documentation
15+
* and/or other materials provided with the distribution.
16+
*
17+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
18+
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20+
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
21+
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22+
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23+
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
24+
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
25+
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
26+
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
27+
* POSSIBILITY OF SUCH DAMAGE.
28+
* #L%
29+
*/
30+
31+
package org.scijava.ui.swing.console;
32+
33+
import java.awt.*;
34+
35+
import javax.swing.*;
36+
37+
import net.miginfocom.swing.MigLayout;
38+
39+
import org.scijava.Context;
40+
import org.scijava.command.Command;
41+
import org.scijava.command.CommandService;
42+
import org.scijava.log.DefaultLogger;
43+
import org.scijava.log.LogSource;
44+
import org.scijava.log.Logger;
45+
import org.scijava.plugin.Parameter;
46+
import org.scijava.ui.UIService;
47+
48+
/**
49+
* {@link LoggingDemo} is an example to demonstrate the capabilitie of
50+
* {@link SwingConsolePane} and {@link LoggingPanel}. It shows the scijava gui,
51+
* and starts to example commands. The first command {@link LoggingLoop} print
52+
* "Hello World" and logs a message every second. The second command
53+
* {@link PluginThatLogs} opens a window with it's on {@link LoggingPanel} and
54+
* provides some buttons to emit some example log messages.
55+
*
56+
* @author Matthias Arzt
57+
*/
58+
public class LoggingDemo {
59+
60+
public static void main(String... args) {
61+
Context context = new Context();
62+
UIService ui = context.service(UIService.class);
63+
ui.showUI();
64+
CommandService commandService = context.service(CommandService.class);
65+
commandService.run(PluginThatLogs.class, true);
66+
commandService.run(LoggingLoop.class, true);
67+
}
68+
69+
public static class LoggingLoop implements Command {
70+
71+
@Parameter
72+
private Logger logger;
73+
74+
@Override
75+
public void run() {
76+
while (true) {
77+
logger.warn("Message Text");
78+
System.out.println("Hello World");
79+
try {
80+
Thread.sleep(1000);
81+
} catch (InterruptedException e) {
82+
logger.warn(e);
83+
}
84+
}
85+
}
86+
}
87+
88+
public static class PluginThatLogs implements Command {
89+
90+
@Parameter
91+
private Context context;
92+
93+
@Parameter
94+
private Logger log;
95+
96+
private Logger privateLogger = new DefaultLogger(ignore -> {}, LogSource.newRoot(), 100);
97+
98+
@Override
99+
public void run() {
100+
LoggingPanel panel = new LoggingPanel(context);
101+
Logger subLogger = log.subLogger("");
102+
subLogger.addLogListener(panel);
103+
privateLogger.addLogListener(panel);
104+
105+
JFrame frame = new JFrame("Plugin that logs");
106+
frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
107+
frame.setLayout(new MigLayout("","[grow]","[][grow]"));
108+
frame.add(newButton("log to main window", () -> writeToLogger(log)), "split");
109+
frame.add(newButton("log to both window", () -> writeToLogger(subLogger)));
110+
frame.add(newButton("log to this window", () -> writeToLogger(privateLogger)), "wrap");
111+
frame.add(panel, "grow");
112+
frame.pack();
113+
frame.setVisible(true);
114+
}
115+
116+
private void writeToLogger(Logger log) {
117+
log.error("Error message test");
118+
log.warn("Text describing a warning");
119+
log.info("An Information");
120+
log.debug("Something help debugging");
121+
log.trace("Trace everything");
122+
log.log(42, "Whats the best log level");
123+
}
124+
125+
private Component newButton(String title, Runnable action) {
126+
JButton button = new JButton(title);
127+
button.addActionListener(a -> action.run());
128+
return button;
129+
}
130+
}
131+
}

0 commit comments

Comments
 (0)
Please sign in to comment.