-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathStoppableReader.java
69 lines (61 loc) · 2.19 KB
/
StoppableReader.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
/**
* Copyright (C) 2002 Michael Green <[email protected]>
*
* Copyright (C) 2002 Paul Kube <[email protected]>
*
* Copyright (C) 2005 Owen Astrachan <[email protected]>
*
* Copyright (C) 2011 Hoa Long Tam <[email protected]> and Armin Samii
*
* This file is part of CS Boggle.
*
* CS Boggle 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, either version 3 of the License, or (at your option) any later
* version.
*
* CS Boggle 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.
*
* You should have received a copy of the GNU General Public License along with
* CS boggle. If not, see <http://www.gnu.org/licenses/>.
*/
import java.io.InputStream;
import java.util.Scanner;
import javax.swing.JOptionPane;
import javax.swing.ProgressMonitor;
import javax.swing.ProgressMonitorInputStream;
public class StoppableReader {
public static ProgressMonitorInputStream getMonitorableStream(
InputStream stream, String message) {
if (stream == null) {
System.out.println("whoops");
}
final ProgressMonitorInputStream pmis =
new ProgressMonitorInputStream(null, message, stream);
ProgressMonitor progress = pmis.getProgressMonitor();
progress.setMillisToDecideToPopup(1);
progress.setMillisToPopup(1);
return pmis;
}
public static void doProcess(final ProgressMonitorInputStream pmis,
final LexiconInterface lex, String message) {
final ProgressMonitor progress = pmis.getProgressMonitor();
Thread fileReaderThread = new Thread() {
@Override
public void run() {
lex.load(new Scanner(pmis, "UTF-8"));
if (progress.isCanceled()) {
showError("reading cancelled");
}
}
};
fileReaderThread.start();
}
public static void showError(String message) {
JOptionPane.showMessageDialog(null, message, "Boggle Error",
JOptionPane.ERROR_MESSAGE);
}
}