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
|
// Copyright (C) 2001-2003 Jon A. Maxwell (JAM)
//
// This library is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public
// License as published by the Free Software Foundation; either
// version 2.1 of the License, or (at your option) any later version.
//
// This library 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
// Lesser General Public License for more details.
//
// You should have received a copy of the GNU Lesser General Public
// License along with this library; if not, write to the Free Software
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
package net.sourceforge.jnlp.cache;
import static net.sourceforge.jnlp.runtime.Translator.R;
import java.awt.*;
import java.awt.event.*;
import java.net.*;
import java.util.*;
import java.util.List;
import javax.swing.*;
import javax.swing.Timer;
import javax.jnlp.*;
import net.sourceforge.jnlp.runtime.*;
import net.sourceforge.jnlp.util.ImageResources;
import net.sourceforge.jnlp.util.ScreenFinder;
/**
* Show the progress of downloads.
*
* @author <a href="mailto:jmaxwell@users.sourceforge.net">Jon A. Maxwell (JAM)</a> - initial author
* @version $Revision: 1.3 $
*/
public class DefaultDownloadIndicator implements DownloadIndicator {
// todo: rewrite this to cut down on size/complexity; smarter
// panels (JList, renderer) understand resources instead of
// nested panels and grid-bag mess.
// todo: fix bug where user closes download box and it
// never(?) reappears.
// todo: UI for user to cancel/restart download
// todo: this should be synchronized at some point but conflicts
// aren't very likely.
private static String downloading = R("CDownloading");
private static String complete = R("CComplete");
/** time to wait after completing but before window closes */
private static final int CLOSE_DELAY = 750;
/** the display window */
private static JFrame frame;
private static final Object frameMutex = new Object();
/** shared constraint */
static GridBagConstraints vertical;
static GridBagConstraints verticalNoClean;
static GridBagConstraints verticalIndent;
static {
vertical = new GridBagConstraints();
vertical.gridwidth = GridBagConstraints.REMAINDER;
vertical.weightx = 1.0;
vertical.fill = GridBagConstraints.HORIZONTAL;
vertical.anchor = GridBagConstraints.WEST;
verticalNoClean = new GridBagConstraints();
verticalNoClean.weightx = 1.0;
verticalIndent = (GridBagConstraints) vertical.clone();
verticalIndent.insets = new Insets(0, 10, 3, 0);
}
/**
* Return the update rate.
*/
public int getUpdateRate() {
return 150; //ms
}
/**
* Return the initial delay before obtaining a listener.
*/
public int getInitialDelay() {
return 300; //ms
}
/**
* Return a download service listener that displays the progress
* in a shared download info window.
*
* @param app the downloading application, or null if N/A
* @param downloadName name identifying the download to the user
* @param resources initial urls to display (not required)
*/
public DownloadServiceListener getListener(ApplicationInstance app, String downloadName, URL resources[]) {
DownloadPanel result = new DownloadPanel(downloadName);
synchronized (frameMutex) {
if (frame == null) {
frame=createDownloadIndicatorFrame(true);
}
if (resources != null) {
for (URL url : resources) {
result.addProgressPanel(url, null);
}
}
frame.getContentPane().add(result, vertical);
frame.pack();
placeFrameToLowerRight();
result.addComponentListener(new ComponentAdapter() {
@Override
public void componentResized(ComponentEvent e) {
placeFrameToLowerRight();
}
});
frame.setVisible(true);
return result;
}
}
public static JFrame createDownloadIndicatorFrame(boolean undecorated) throws HeadlessException {
JFrame f = new JFrame(downloading + "...");
f.setUndecorated(undecorated);
f.setIconImages(ImageResources.INSTANCE.getApplicationImages());
f.getContentPane().setLayout(new GridBagLayout());
return f;
}
/**
* This places indicator to lower right corner of active monitor.
*/
private static void placeFrameToLowerRight() throws HeadlessException {
Rectangle bounds = ScreenFinder.getCurrentScreenSizeWithoutBounds();
frame.setLocation(bounds.width+bounds.x - frame.getWidth(),
bounds.height+bounds.y - frame.getHeight());
}
/**
* Remove a download service listener that was obtained by
* calling the getDownloadListener method from the shared
* download info window.
*/
public void disposeListener(final DownloadServiceListener listener) {
if (!(listener instanceof DownloadPanel))
return;
ActionListener hider = new ActionListener() {
public void actionPerformed(ActionEvent evt) {
synchronized(frameMutex) {
frame.getContentPane().remove((DownloadPanel) listener);
frame.pack();
if (frame.getContentPane().getComponentCount() == 0) {
frame.setVisible(false);
frame.dispose();
frame = null;
}
}
}
};
Timer timer = new Timer(CLOSE_DELAY, hider);
timer.setRepeats(false);
timer.start();
}
/**
* Groups the url progress in a panel.
*/
static class DownloadPanel extends JPanel implements DownloadServiceListener {
private final DownloadPanel self;
private static enum States{
ONE_JAR, COLLAPSED, DETAILED;
}
private static final String DETAILS=R("ButShowDetails");
private static final String HIDE_DETAILS=R("ButHideDetails");
/** the download name */
private String downloadName;
/** Downloading part: */
private JLabel header = new JLabel();
/** Show/hide detailsButton button: */
private final JButton detailsButton;
private static final URL magnifyGlassUrl = ClassLoader.getSystemResource("net/sourceforge/jnlp/resources/showDownloadDetails.png");
private static final URL redCrossUrl = ClassLoader.getSystemResource("net/sourceforge/jnlp/resources/hideDownloadDetails.png");
private static final Icon magnifyGlassIcon = new ImageIcon(magnifyGlassUrl);
private static final Icon redCrossIcon = new ImageIcon(redCrossUrl);
/** used instead of detailsButton button in case of one jar*/
private JLabel delimiter = new JLabel("");
/** all already created progress bars*/
private List<ProgressPanel> progressPanels = new ArrayList<ProgressPanel>();
private States state=States.ONE_JAR;
private ProgressPanel mainProgressPanel;
/** list of URLs being downloaded */
private List<URL> urls = new ArrayList<URL>();
/** list of ProgressPanels */
private List<ProgressPanel> panels = new ArrayList<ProgressPanel>();
/**
* Create a new download panel for with the specified download
* name.
*/
protected DownloadPanel(String downloadName) {
self = this;
setLayout(new GridBagLayout());
this.downloadName = downloadName;
this.add(header, verticalNoClean);
header.setFont(header.getFont().deriveFont(Font.BOLD));
this.add(delimiter, vertical);
detailsButton = new JButton(magnifyGlassIcon);
int w = magnifyGlassIcon.getIconWidth();
int h = magnifyGlassIcon.getIconHeight();
detailsButton.setPreferredSize(new Dimension(w + 2, h + 2));
detailsButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
if (state == States.DETAILED) {
state = States.COLLAPSED;
detailsButton.setToolTipText(DETAILS);
detailsButton.setIcon(magnifyGlassIcon);
for (ProgressPanel progressPanel : progressPanels) {
remove(progressPanel);
}
add(mainProgressPanel, verticalIndent);
recreateFrame(true);
} else {
state = States.DETAILED;
detailsButton.setToolTipText(HIDE_DETAILS);
detailsButton.setIcon(redCrossIcon);
remove(mainProgressPanel);
for (ProgressPanel progressPanel : progressPanels) {
add(progressPanel, verticalIndent);
}
recreateFrame(false);
}
}
public void recreateFrame(boolean undecorated) throws HeadlessException {
JFrame oldFrame = frame;
frame = createDownloadIndicatorFrame(undecorated);
frame.getContentPane().add(self, vertical);
synchronized (frameMutex) {
frame.pack();
placeFrameToLowerRight();
}
frame.setVisible(true);
oldFrame.dispose();
}
});
setOverallPercent(0);
}
/**
* Add a ProgressPanel for a URL.
*/
protected void addProgressPanel(URL url, String version) {
if (!urls.contains(url)) {
ProgressPanel panel = new ProgressPanel(url, version);
if (state != States.COLLAPSED) {
add(panel, verticalIndent);
}
progressPanels.add(panel);
urls.add(url);
panels.add(panel);
//download indicator does not know about added jars
//When only one jar is added to downlaod queue then its progress is
//shown, and there is no show detail button.
//When second one is added, then it already knows that there will
//be two or more jars, so it swap to collapsed state in count of two.
//no later, no sooner
if (panels.size() == 2){
remove(panels.get(0));
remove(panels.get(1));
remove(delimiter);
add(detailsButton,vertical);
mainProgressPanel=new ProgressPanel();
add(mainProgressPanel, verticalIndent);
state=States.COLLAPSED;
}
synchronized (frameMutex) {
frame.pack();
placeFrameToLowerRight();
}
}
}
/**
* Update the download progress of a url.
*/
protected void update(final URL url, final String version,
final long readSoFar, final long total,
final int overallPercent) {
Runnable r = new Runnable() {
public void run() {
if (!urls.contains(url))
addProgressPanel(url, version);
setOverallPercent(overallPercent);
ProgressPanel panel = panels.get(urls.indexOf(url));
panel.setProgress(readSoFar, total);
panel.repaint();
}
};
SwingUtilities.invokeLater(r);
}
/**
* Sets the overall percent completed.
* should be called via invokeLater
*/
public void setOverallPercent(int percent) {
// don't get whole string from resource and sub in
// values because it'll be doing a MessageFormat for
// each update.
header.setText(downloading + " " + downloadName + ": " + percent + "% " + complete + ".");
Container c = header.getParent();
//we need to adapt both panels and also frame to new length of header text
while (c != null) {
c.invalidate();
c.validate();
if (c instanceof Window){
((Window) c).pack();
}
c=c.getParent();
}
if (mainProgressPanel != null) {
mainProgressPanel.setProgress(percent, 100);
mainProgressPanel.repaint();
}
}
/**
* Called when a download failed.
*/
public void downloadFailed(URL url, String version) {
update(url, version, -1, -1, -1);
}
/**
* Called when a download has progressed.
*/
public void progress(URL url, String version, long readSoFar, long total, int overallPercent) {
update(url, version, readSoFar, total, overallPercent);
}
/**
* Called when an archive is patched.
*/
public void upgradingArchive(URL url, String version, int patchPercent, int overallPercent) {
update(url, version, patchPercent, 100, overallPercent);
}
/**
* Called when a download is being validated.
*/
public void validating(URL url, String version, long entry, long total, int overallPercent) {
update(url, version, entry, total, overallPercent);
}
};
/**
* A progress bar with the URL next to it.
*/
static class ProgressPanel extends JPanel {
private JPanel bar = new JPanel();
private long total;
private long readSoFar;
private Dimension size = new Dimension(80, 15);
ProgressPanel() {
bar.setMinimumSize(size);
bar.setPreferredSize(size);
bar.setOpaque(false);
setLayout(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
styleGridBagConstraints(gbc);
add(bar, gbc);
}
ProgressPanel(URL url, String version) {
this(" " + url.getHost() + "/" + url.getFile(),version);
}
ProgressPanel(String caption, String version) {
JLabel location = new JLabel(caption);
bar.setMinimumSize(size);
bar.setPreferredSize(size);
bar.setOpaque(false);
setLayout(new GridBagLayout());
GridBagConstraints gbc = new GridBagConstraints();
gbc.weightx = 0.0;
gbc.fill = GridBagConstraints.NONE;
gbc.gridwidth = GridBagConstraints.RELATIVE;
add(bar, gbc);
styleGridBagConstraints(gbc);
add(location, gbc);
}
public void setProgress(long readSoFar, long total) {
this.readSoFar = readSoFar;
this.total = total;
}
public void paintComponent(Graphics g) {
super.paintComponent(g);
int x = bar.getX();
int y = bar.getY();
int h = bar.getHeight();
int w = bar.getWidth();
if (readSoFar <= 0 || total <= 0) {
// make barber pole
} else {
double progress = (double) readSoFar / (double) total;
int divide = (int) (w * progress);
g.setColor(Color.white);
g.fillRect(x, y, w, h);
g.setColor(Color.blue);
g.fillRect(x + 1, y + 1, divide - 1, h - 1);
}
}
private void styleGridBagConstraints(GridBagConstraints gbc) {
gbc.insets = new Insets(0, 3, 0, 0);
gbc.weightx = 1.0;
gbc.fill = GridBagConstraints.HORIZONTAL;
gbc.gridwidth = GridBagConstraints.REMAINDER;
gbc.anchor = GridBagConstraints.WEST;
}
};
}
|