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
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
|
// 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 java.io.BufferedInputStream;
import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.UnsupportedEncodingException;
import java.net.HttpURLConnection;
import java.net.MalformedURLException;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.net.URLConnection;
import java.net.URLDecoder;
import java.security.AccessController;
import java.security.PrivilegedAction;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.concurrent.ConcurrentHashMap;
import java.util.jar.JarOutputStream;
import java.util.jar.Pack200;
import java.util.jar.Pack200.Unpacker;
import java.util.zip.GZIPInputStream;
import net.sourceforge.jnlp.DownloadOptions;
import net.sourceforge.jnlp.Version;
import net.sourceforge.jnlp.event.DownloadEvent;
import net.sourceforge.jnlp.event.DownloadListener;
import net.sourceforge.jnlp.runtime.JNLPRuntime;
import net.sourceforge.jnlp.util.StreamUtils;
import net.sourceforge.jnlp.util.WeakList;
/**
* This class tracks the downloading of various resources of a
* JNLP file to local files in the cache. It can be used to
* download icons, jnlp and extension files, jars, and jardiff
* files using the version based protocol or any file using the
* basic download protocol (jardiff and version not implemented
* yet).<p>
*
* The resource tracker can be configured to prefetch resources,
* which are downloaded in the order added to the media
* tracker.<p>
*
* Multiple threads are used to download and cache resources that
* are actively being waited for (blocking a caller) or those that
* have been started downloading by calling the startDownload
* method. Resources that are prefetched are downloaded one at a
* time and only if no other trackers have requested downloads.
* This allows the tracker to start downloading many items without
* using many system resources, but still quickly download items
* as needed.<p>
*
* @author <a href="mailto:jmaxwell@users.sourceforge.net">Jon A. Maxwell (JAM)</a> - initial author
* @version $Revision: 1.22 $
*/
public class ResourceTracker {
// todo: use event listener arrays instead of lists
// todo: see if there is a way to set the socket options just
// for use by the tracker so checks for updates don't hang for
// a long time.
// todo: ability to restart/retry a hung download
// todo: move resource downloading/processing code into Resource
// class, threading stays in ResourceTracker
// todo: get status method? and some way to convey error status
// to the caller.
// todo: might make a tracker be able to download more than one
// version of a resource, but probably not very useful.
// defines
// ResourceTracker.Downloader (download threads)
// separately locks on (in order of aquire order, ie, sync on prefetch never syncs on lock):
// lock, prefetch, this.resources, each resource, listeners
/** notified on initialization or download of a resource */
private static final Object lock = new Object(); // used to lock static structures
// shortcuts
private static final int UNINITIALIZED = Resource.UNINITIALIZED;
private static final int CONNECT = Resource.CONNECT;
private static final int CONNECTING = Resource.CONNECTING;
private static final int CONNECTED = Resource.CONNECTED;
private static final int DOWNLOAD = Resource.DOWNLOAD;
private static final int DOWNLOADING = Resource.DOWNLOADING;
private static final int DOWNLOADED = Resource.DOWNLOADED;
private static final int ERROR = Resource.ERROR;
private static final int STARTED = Resource.STARTED;
// normalization of url
private static final char PATH_DELIMITER_MARK = '/';
private static final String PATH_DELIMITER = "" + PATH_DELIMITER_MARK;
private static final char QUERY_DELIMITER_MARK = '&';
private static final String QUERY_DELIMITER = "" + QUERY_DELIMITER_MARK;
private static final char QUERY_MARK = '?';
private static final char HREF_MARK = '#';
private static final String UTF8 = "utf-8";
/** max threads */
private static final int maxThreads = 5;
/** running threads */
private static int threads = 0;
/** weak list of resource trackers with resources to prefetch */
private static WeakList<ResourceTracker> prefetchTrackers =
new WeakList<ResourceTracker>();
/** resources requested to be downloaded */
private static ArrayList<Resource> queue = new ArrayList<Resource>();
private static ConcurrentHashMap<Resource, DownloadOptions> downloadOptions =
new ConcurrentHashMap<Resource, DownloadOptions>();
/** resource trackers threads are working for (used for load balancing across multi-tracker downloads) */
private static ArrayList<ResourceTracker> active =
new ArrayList<ResourceTracker>(); //
/** the resources known about by this resource tracker */
private List<Resource> resources = new ArrayList<Resource>();
/** download listeners for this tracker */
private List<DownloadListener> listeners = new ArrayList<DownloadListener>();
/** whether to download parts before requested */
private boolean prefetch;
/**
* Creates a resource tracker that does not prefetch resources.
*/
public ResourceTracker() {
this(false);
}
/**
* Creates a resource tracker.
*
* @param prefetch whether to download resources before requested.
*/
public ResourceTracker(boolean prefetch) {
this.prefetch = prefetch;
if (prefetch) {
synchronized (prefetchTrackers) {
prefetchTrackers.add(this);
prefetchTrackers.trimToSize();
}
}
}
/**
* Add a resource identified by the specified location and
* version. The tracker only downloads one version of a given
* resource per instance (ie cannot download both versions 1 and
* 2 of a resource in the same tracker).
*
* @param location the location of the resource
* @param version the resource version
* @param updatePolicy whether to check for updates if already in cache
*/
public void addResource(URL location, Version version, DownloadOptions options, UpdatePolicy updatePolicy) {
if (location == null)
throw new IllegalResourceDescriptorException("location==null");
try {
location = normalizeUrl(location, JNLPRuntime.isDebug());
} catch (Exception ex) {
System.err.println("Normalization of " + location.toString() + " have failed");
ex.printStackTrace();
}
Resource resource = Resource.getResource(location, version, updatePolicy);
boolean downloaded = false;
synchronized (resources) {
if (resources.contains(resource))
return;
resource.addTracker(this);
resources.add(resource);
}
if (options == null) {
options = new DownloadOptions(false, false);
}
downloadOptions.put(resource, options);
// checkCache may take a while (loads properties file). this
// should really be synchronized on resources, but the worst
// case should be that the resource will be updated once even
// if unnecessary.
downloaded = checkCache(resource, updatePolicy);
synchronized (lock) {
if (!downloaded)
if (prefetch && threads == 0) // existing threads do pre-fetch when queue empty
startThread();
}
}
/**
* Removes a resource from the tracker. This method is useful
* to allow memory to be reclaimed, but calling this method is
* not required as resources are reclaimed when the tracker is
* collected.
*
* @throws IllegalResourceDescriptorException if the resource is not being tracked
*/
public void removeResource(URL location) {
synchronized (resources) {
Resource resource = getResource(location);
if (resource != null) {
resources.remove(resource);
resource.removeTracker(this);
}
// should remove from queue? probably doesn't matter
}
}
/**
* Check the cache for a resource, and initialize the resource
* as already downloaded if found. <p>
*
* @param updatePolicy whether to check for updates if already in cache
* @return whether the resource are already downloaded
*/
private boolean checkCache(Resource resource, UpdatePolicy updatePolicy) {
if (!CacheUtil.isCacheable(resource.location, resource.downloadVersion)) {
// pretend that they are already downloaded; essentially
// they will just 'pass through' the tracker as if they were
// never added (for example, not affecting the total download size).
synchronized (resource) {
resource.changeStatus(0, DOWNLOADED | CONNECTED | STARTED);
}
fireDownloadEvent(resource);
return true;
}
if (updatePolicy != UpdatePolicy.ALWAYS && updatePolicy != UpdatePolicy.FORCE) { // save loading entry props file
CacheEntry entry = new CacheEntry(resource.location, resource.downloadVersion);
if (entry.isCached() && !updatePolicy.shouldUpdate(entry)) {
if (JNLPRuntime.isDebug())
System.out.println("not updating: " + resource.location);
synchronized (resource) {
resource.localFile = CacheUtil.getCacheFile(resource.location, resource.downloadVersion);
resource.size = resource.localFile.length();
resource.transferred = resource.localFile.length();
resource.changeStatus(0, DOWNLOADED | CONNECTED | STARTED);
}
fireDownloadEvent(resource);
return true;
}
}
if (updatePolicy == UpdatePolicy.FORCE) { // ALWAYS update
// When we are "always" updating, we update for each instance. Reset resource status.
resource.changeStatus(Integer.MAX_VALUE, 0);
}
// may or may not be cached, but check update when connection
// is open to possibly save network communication time if it
// has to be downloaded, and allow this call to return quickly
return false;
}
/**
* Adds the listener to the list of objects interested in
* receivind DownloadEvents.<p>
*
* @param listener the listener to add.
*/
public void addDownloadListener(DownloadListener listener) {
synchronized (listeners) {
if (!listeners.contains(listener))
listeners.add(listener);
}
}
/**
* Removes a download listener.
*
* @param listener the listener to remove.
*/
public void removeDownloadListener(DownloadListener listener) {
synchronized (listeners) {
listeners.remove(listener);
}
}
/**
* Fires the download event corresponding to the resource's
* state. This method is typicall called by the Resource itself
* on each tracker that is monitoring the resource. Do not call
* this method with any locks because the listeners may call
* back to this ResourceTracker.
*/
protected void fireDownloadEvent(Resource resource) {
DownloadListener l[] = null;
synchronized (listeners) {
l = listeners.toArray(new DownloadListener[0]);
}
int status;
synchronized (resource) {
status = resource.status;
}
DownloadEvent event = new DownloadEvent(this, resource);
for (DownloadListener dl : l) {
if (0 != ((ERROR | DOWNLOADED) & status))
dl.downloadCompleted(event);
else if (0 != (DOWNLOADING & status))
dl.downloadStarted(event);
else if (0 != (CONNECTING & status))
dl.updateStarted(event);
}
}
/**
* Returns a URL pointing to the cached location of the
* resource, or the resource itself if it is a non-cacheable
* resource.<p>
*
* If the resource has not downloaded yet, the method will block
* until it has been transferred to the cache.<p>
*
* @param location the resource location
* @return the resource, or null if it could not be downloaded
* @throws IllegalResourceDescriptorException if the resource is not being tracked
* @see CacheUtil#isCacheable
*/
public URL getCacheURL(URL location) {
try {
File f = getCacheFile(location);
if (f != null)
// TODO: Should be toURI().toURL()
return f.toURL();
} catch (MalformedURLException ex) {
if (JNLPRuntime.isDebug())
ex.printStackTrace();
}
return location;
}
/**
* Returns a file containing the downloaded resource. If the
* resource is non-cacheable then null is returned unless the
* resource is a local file (the original file is returned).<p>
*
* If the resource has not downloaded yet, the method will block
* until it has been transferred to the cache.<p>
*
* @param location the resource location
* @return a local file containing the resource, or null
* @throws IllegalResourceDescriptorException if the resource is not being tracked
* @see CacheUtil#isCacheable
*/
public File getCacheFile(URL location) {
try {
Resource resource = getResource(location);
if (!resource.isSet(DOWNLOADED | ERROR))
waitForResource(location, 0);
if (resource.isSet(ERROR))
return null;
if (resource.localFile != null)
return resource.localFile;
if (location.getProtocol().equalsIgnoreCase("file")) {
File file = new File(location.toURI().getPath());
if (file.exists())
return file;
}
return null;
} catch (InterruptedException ex) {
if (JNLPRuntime.isDebug())
ex.printStackTrace();
return null; // need an error exception to throw
} catch (URISyntaxException e) {
e.printStackTrace();
return null;
}
}
/**
* Returns an input stream that reads the contents of the
* resource. For non-cacheable resources, an InputStream that
* reads from the source location is returned. Otherwise the
* InputStream reads the cached resource.<p>
*
* This method will block while the resource is downloaded to
* the cache.
*
* @throws IOException if there was an error opening the stream
* @throws IllegalResourceDescriptorException if the resource is not being tracked
*/
public InputStream getInputStream(URL location) throws IOException {
try {
Resource resource = getResource(location);
if (!resource.isSet(DOWNLOADED | ERROR))
waitForResource(location, 0);
if (resource.localFile != null)
return new FileInputStream(resource.localFile);
return resource.location.openStream();
} catch (InterruptedException ex) {
throw new IOException("wait was interrupted");
}
}
/**
* Wait for a group of resources to be downloaded and made
* available locally.
*
* @param urls the resources to wait for
* @param timeout the time in ms to wait before returning, 0 for no timeout
* @return whether the resources downloaded before the timeout
* @throws IllegalResourceDescriptorException if the resource is not being tracked
*/
public boolean waitForResources(URL urls[], long timeout) throws InterruptedException {
Resource resources[] = new Resource[urls.length];
synchronized (resources) {
// keep the lock so getResource doesn't have to aquire it each time
for (int i = 0; i < urls.length; i++) {
resources[i] = getResource(urls[i]);
}
}
if (resources.length > 0)
return wait(resources, timeout);
return true;
}
/**
* Wait for a particular resource to be downloaded and made
* available.
*
* @param location the resource to wait for
* @param timeout the timeout, or 0 to wait until completed
* @return whether the resource downloaded before the timeout
* @throws InterruptedException if another thread interrupted the wait
* @throws IllegalResourceDescriptorException if the resource is not being tracked
*/
public boolean waitForResource(URL location, long timeout) throws InterruptedException {
return wait(new Resource[] { getResource(location) }, timeout);
}
/**
* Returns the number of bytes downloaded for a resource.
*
* @param location the resource location
* @return the number of bytes transferred
* @throws IllegalResourceDescriptorException if the resource is not being tracked
*/
public long getAmountRead(URL location) {
// not atomic b/c transferred is a long, but so what (each
// byte atomic? so probably won't affect anything...)
return getResource(location).transferred;
}
/**
* Returns whether a resource is available for use (ie, can be
* accessed with the getCacheFile method).
*
* @throws IllegalResourceDescriptorException if the resource is not being tracked
*/
public boolean checkResource(URL location) {
return getResource(location).isSet(DOWNLOADED | ERROR); // isSet atomic
}
/**
* Starts loading the resource if it is not already being
* downloaded or already cached. Resources started downloading
* using this method may download faster than those prefetched
* by the tracker because the tracker will only prefetch one
* resource at a time to conserve system resources.
*
* @return true if the resource is already downloaded (or an error occurred)
* @throws IllegalResourceDescriptorException if the resource is not being tracked
*/
public boolean startResource(URL location) {
Resource resource = getResource(location);
return startResource(resource);
}
/**
* Sets the resource status to connect and download, and
* enqueues the resource if not already started.
*
* @return true if the resource is already downloaded (or an error occurred)
* @throws IllegalResourceDescriptorException if the resource is not being tracked
*/
private boolean startResource(Resource resource) {
boolean enqueue = false;
synchronized (resource) {
if (resource.isSet(ERROR))
return true;
enqueue = !resource.isSet(STARTED);
if (!resource.isSet(CONNECTED | CONNECTING))
resource.changeStatus(0, CONNECT | STARTED);
if (!resource.isSet(DOWNLOADED | DOWNLOADING))
resource.changeStatus(0, DOWNLOAD | STARTED);
if (!resource.isSet(DOWNLOAD | CONNECT))
enqueue = false;
}
if (enqueue)
queueResource(resource);
return !enqueue;
}
/**
* Returns the number of total size in bytes of a resource, or
* -1 it the size is not known.
*
* @param location the resource location
* @return the number of bytes, or -1
* @throws IllegalResourceDescriptorException if the resource is not being tracked
*/
public long getTotalSize(URL location) {
return getResource(location).size; // atomic
}
/**
* Start a new download thread if there are not too many threads
* already running.<p>
*
* Calls to this method should be synchronized on lock.
*/
protected void startThread() {
if (threads < maxThreads) {
threads++;
Thread thread = new Thread(new Downloader(), "DownloaderThread" + threads);
thread.start();
}
}
/**
* A thread is ending, called by the thread itself.<p>
*
* Calls to this method should be synchronized.
*/
private void endThread() {
threads--;
if (threads < 0) {
// this should never happen but try to recover
threads = 0;
if (queue.size() > 0) // if any on queue make sure a thread is running
startThread(); // look into whether this could create a loop
throw new RuntimeException("tracker threads < 0");
}
if (threads == 0) {
synchronized (prefetchTrackers) {
queue.trimToSize(); // these only accessed by threads so no sync needed
active.clear(); // no threads so no trackers actively downloading
active.trimToSize();
prefetchTrackers.trimToSize();
}
}
}
/**
* Add a resource to the queue and start a thread to download or
* initialize it.
*/
private void queueResource(Resource resource) {
synchronized (lock) {
if (!resource.isSet(CONNECT | DOWNLOAD))
throw new IllegalResourceDescriptorException("Invalid resource state (resource: " + resource + ")");
queue.add(resource);
startThread();
}
}
/**
* Process the resource by either downloading it or initializing
* it.
*/
private void processResource(Resource resource) {
boolean doConnect = false;
boolean doDownload = false;
synchronized (resource) {
if (resource.isSet(CONNECTING))
doConnect = true;
}
if (doConnect)
initializeResource(resource);
synchronized (resource) {
// return to queue if we just initalized but it still needs
// to download (not cached locally / out of date)
if (resource.isSet(DOWNLOAD)) // would be DOWNLOADING if connected before this method
queueResource(resource);
if (resource.isSet(DOWNLOADING))
doDownload = true;
}
if (doDownload)
downloadResource(resource);
}
/**
* Downloads a resource to a file, uncompressing it if required
*
* @param resource the resource to download
*/
private void downloadResource(Resource resource) {
resource.fireDownloadEvent(); // fire DOWNLOADING
CacheEntry origEntry = new CacheEntry(resource.location, resource.downloadVersion); // This is where the jar file will be.
origEntry.lock();
try {
// create out second in case in does not exist
URL realLocation = resource.getDownloadLocation();
URLConnection con = realLocation.openConnection();
con.addRequestProperty("Accept-Encoding", "pack200-gzip, gzip");
con.connect();
/*
* We dont really know what we are downloading. If we ask for
* foo.jar, the server might send us foo.jar.pack.gz or foo.jar.gz
* instead. So we save the file with the appropriate extension
*/
URL downloadLocation = resource.location;
String contentEncoding = con.getContentEncoding();
if (JNLPRuntime.isDebug()) {
System.err.println("Downloading" + resource.location + " using " +
realLocation + " (encoding : " + contentEncoding + ")");
}
boolean packgz = "pack200-gzip".equals(contentEncoding) ||
realLocation.getPath().endsWith(".pack.gz");
boolean gzip = "gzip".equals(contentEncoding);
// It's important to check packgz first. If a stream is both
// pack200 and gz encoded, then con.getContentEncoding() could
// return ".gz", so if we check gzip first, we would end up
// treating a pack200 file as a jar file.
if (packgz) {
downloadLocation = new URL(downloadLocation.toString() + ".pack.gz");
} else if (gzip) {
downloadLocation = new URL(downloadLocation.toString() + ".gz");
}
File downloadLocationFile = CacheUtil.getCacheFile(downloadLocation, resource.downloadVersion);
CacheEntry downloadEntry = new CacheEntry(downloadLocation, resource.downloadVersion);
File finalFile = CacheUtil.getCacheFile(resource.location, resource.downloadVersion); // This is where extracted version will be, or downloaded file if not compressed.
if (!downloadEntry.isCurrent(con)) {
// Make sure we don't re-download the file. however it will wait as if it was downloading.
// (This is fine because file is not ready yet anyways)
byte buf[] = new byte[1024];
int rlen;
InputStream in = new BufferedInputStream(con.getInputStream());
OutputStream out = CacheUtil.getOutputStream(downloadLocation, resource.downloadVersion);
while (-1 != (rlen = in.read(buf))) {
resource.transferred += rlen;
out.write(buf, 0, rlen);
}
in.close();
out.close();
// explicitly close the URLConnection.
if (con instanceof HttpURLConnection)
((HttpURLConnection) con).disconnect();
/*
* If the file was compressed, uncompress it.
*/
if (packgz) {
downloadEntry.initialize(con);
GZIPInputStream gzInputStream = new GZIPInputStream(new FileInputStream(CacheUtil
.getCacheFile(downloadLocation, resource.downloadVersion)));
InputStream inputStream = new BufferedInputStream(gzInputStream);
JarOutputStream outputStream = new JarOutputStream(new FileOutputStream(CacheUtil
.getCacheFile(resource.location, resource.downloadVersion)));
Unpacker unpacker = Pack200.newUnpacker();
unpacker.unpack(inputStream, outputStream);
outputStream.close();
inputStream.close();
gzInputStream.close();
} else if (gzip) {
downloadEntry.initialize(con);
GZIPInputStream gzInputStream = new GZIPInputStream(new FileInputStream(CacheUtil
.getCacheFile(downloadLocation, resource.downloadVersion)));
InputStream inputStream = new BufferedInputStream(gzInputStream);
BufferedOutputStream outputStream = new BufferedOutputStream(new FileOutputStream(CacheUtil
.getCacheFile(resource.location, resource.downloadVersion)));
while (-1 != (rlen = inputStream.read(buf))) {
outputStream.write(buf, 0, rlen);
}
outputStream.close();
inputStream.close();
gzInputStream.close();
}
} else {
resource.transferred = downloadLocationFile.length();
}
if (!downloadLocationFile.getPath().equals(finalFile.getPath())) {
downloadEntry.markForDelete();
downloadEntry.store();
}
resource.changeStatus(DOWNLOADING, DOWNLOADED);
synchronized (lock) {
lock.notifyAll(); // wake up wait's to check for completion
}
resource.fireDownloadEvent(); // fire DOWNLOADED
} catch (Exception ex) {
if (JNLPRuntime.isDebug())
ex.printStackTrace();
resource.changeStatus(0, ERROR);
synchronized (lock) {
lock.notifyAll(); // wake up wait's to check for completion
}
resource.fireDownloadEvent(); // fire ERROR
} finally {
origEntry.unlock();
}
}
/**
* Open a URL connection and get the content length and other
* fields.
*/
private void initializeResource(Resource resource) {
resource.fireDownloadEvent(); // fire CONNECTING
CacheEntry entry = new CacheEntry(resource.location, resource.requestVersion);
entry.lock();
try {
File localFile = CacheUtil.getCacheFile(resource.location, resource.downloadVersion);
// connect
URL finalLocation = findBestUrl(resource);
if (finalLocation == null) {
System.err.println("Attempted to download " + resource.location + ", but failed to connect!");
throw new NullPointerException("finalLocation == null"); // Caught below
}
resource.setDownloadLocation(finalLocation);
URLConnection connection = finalLocation.openConnection(); // this won't change so should be okay unsynchronized
connection.addRequestProperty("Accept-Encoding", "pack200-gzip, gzip");
int size = connection.getContentLength();
boolean current = CacheUtil.isCurrent(resource.location, resource.requestVersion, connection) && resource.getUpdatePolicy() != UpdatePolicy.FORCE;
if (!current) {
if (entry.isCached()) {
entry.markForDelete();
entry.store();
// Old entry will still exist. (but removed at cleanup)
localFile = CacheUtil.makeNewCacheFile(resource.location, resource.downloadVersion);
CacheEntry newEntry = new CacheEntry(resource.location, resource.requestVersion);
newEntry.lock();
entry.unlock();
entry = newEntry;
}
}
synchronized (resource) {
resource.localFile = localFile;
// resource.connection = connection;
resource.size = size;
resource.changeStatus(CONNECT | CONNECTING, CONNECTED);
// check if up-to-date; if so set as downloaded
if (current)
resource.changeStatus(DOWNLOAD | DOWNLOADING, DOWNLOADED);
}
// update cache entry
if (!current)
entry.initialize(connection);
entry.setLastUpdated(System.currentTimeMillis());
entry.store();
synchronized (lock) {
lock.notifyAll(); // wake up wait's to check for completion
}
resource.fireDownloadEvent(); // fire CONNECTED
// explicitly close the URLConnection.
if (connection instanceof HttpURLConnection)
((HttpURLConnection) connection).disconnect();
} catch (Exception ex) {
if (JNLPRuntime.isDebug())
ex.printStackTrace();
resource.changeStatus(0, ERROR);
synchronized (lock) {
lock.notifyAll(); // wake up wait's to check for completion
}
resource.fireDownloadEvent(); // fire ERROR
} finally {
entry.unlock();
}
}
/**
* Connects to the given URL, and grabs a response code if the URL uses
* the HTTP protocol, or returns an arbitrary valid HTTP response code.
*
* @return the response code if HTTP connection, or HttpURLConnection.HTTP_OK if not.
* @throws IOException
*/
private static int getUrlResponseCode(URL url, Map<String, String> requestProperties, String requestMethod) throws IOException {
URLConnection connection = url.openConnection();
for (Map.Entry<String, String> property : requestProperties.entrySet()){
connection.addRequestProperty(property.getKey(), property.getValue());
}
if (connection instanceof HttpURLConnection) {
HttpURLConnection httpConnection = (HttpURLConnection)connection;
httpConnection.setRequestMethod(requestMethod);
int responseCode = httpConnection.getResponseCode();
/* Fully consuming current request helps with connection re-use
* See http://docs.oracle.com/javase/1.5.0/docs/guide/net/http-keepalive.html */
StreamUtils.consumeAndCloseInputStream(httpConnection.getInputStream());
return responseCode;
}
return HttpURLConnection.HTTP_OK /* return a valid response code */;
}
/**
* Returns the 'best' valid URL for the given resource.
* This first adjusts the file name to take into account file versioning
* and packing, if possible.
*
* @param resource the resource
* @return the best URL, or null if all failed to resolve
*/
private URL findBestUrl(Resource resource) {
DownloadOptions options = downloadOptions.get(resource);
if (options == null) {
options = new DownloadOptions(false, false);
}
List<URL> urls = new ResourceUrlCreator(resource, options).getUrls();
if (JNLPRuntime.isDebug()) {
System.err.println("All possible urls for " +
resource.toString() + " : " + urls);
}
for (URL url : urls) {
try {
Map<String, String> requestProperties = new HashMap<String, String>();
requestProperties.put("Accept-Encoding", "pack200-gzip, gzip");
int responseCode = getUrlResponseCode(url, requestProperties, "HEAD");
if (responseCode == HttpURLConnection.HTTP_NOT_IMPLEMENTED ) {
System.err.println("NOTE: The server does not appear to support HEAD requests, falling back to GET requests.");
/* Fallback: use GET request in the rare case the server does not support HEAD requests */
responseCode = getUrlResponseCode(url, requestProperties, "GET");
}
/* Check if within valid response code range */
if (responseCode >= 200 && responseCode < 300) {
if (JNLPRuntime.isDebug()) {
System.err.println("best url for " + resource.toString() + " is " + url.toString());
}
return url; /* This is the best URL */
}
} catch (IOException e) {
// continue to next candidate
if (JNLPRuntime.isDebug()) {
System.err.println("While processing " + url.toString() + " for resource " + resource.toString() + " got " + e);
}
}
}
/* No valid URL, return null */
return null;
}
/**
* Pick the next resource to download or initialize. If there
* are no more resources requested then one is taken from a
* resource tracker with prefetch enabled.<p>
*
* The resource state is advanced before it is returned
* (CONNECT->CONNECTING).<p>
*
* Calls to this method should be synchronized on lock.<p>
*
* @return the resource to initialize or download, or null
*/
private static Resource selectNextResource() {
Resource result;
// pick from queue
result = selectByFlag(queue, CONNECT, ERROR); // connect but not error
if (result == null)
result = selectByFlag(queue, DOWNLOAD, ERROR | CONNECT | CONNECTING);
// remove from queue if found
if (result != null)
queue.remove(result);
// prefetch if nothing found so far and this is the last thread
if (result == null && threads == 1)
result = getPrefetch();
if (result == null)
return null;
synchronized (result) {
if (result.isSet(CONNECT)) {
result.changeStatus(CONNECT, CONNECTING);
} else if (result.isSet(DOWNLOAD)) {
// only download if *not* connecting, when done connecting
// select next will pick up the download part. This makes
// all requested connects happen before any downloads, so
// the size is known as early as possible.
result.changeStatus(DOWNLOAD, DOWNLOADING);
}
}
return result;
}
/**
* Returns the next resource to be prefetched before
* requested.<p>
*
* Calls to this method should be synchronized on lock.<p>
*/
private static Resource getPrefetch() {
Resource result = null;
Resource alternate = null;
// first find one to initialize
synchronized (prefetchTrackers) {
for (int i = 0; i < prefetchTrackers.size() && result == null; i++) {
ResourceTracker tracker = prefetchTrackers.get(i);
if (tracker == null)
continue;
synchronized (tracker.resources) {
result = selectByFlag(tracker.resources, UNINITIALIZED, ERROR);
if (result == null && alternate == null)
alternate = selectByFlag(tracker.resources, CONNECTED, ERROR | DOWNLOADED | DOWNLOADING | DOWNLOAD);
}
}
}
// if none to initialize, switch to download
if (result == null)
result = alternate;
if (result == null)
return null;
synchronized (result) {
ResourceTracker tracker = result.getTracker();
if (tracker == null)
return null; // GC of tracker happened between above code and here
// prevents startResource from putting it on queue since
// we're going to return it.
result.changeStatus(0, STARTED);
tracker.startResource(result);
}
return result;
}
/**
* Selects a resource from the source list that has the
* specified flag set.<p>
*
* Calls to this method should be synchronized on lock and
* source list.<p>
*/
private static Resource selectByFlag(List<Resource> source, int flag,
int notflag) {
Resource result = null;
int score = Integer.MAX_VALUE;
for (Resource resource : source) {
boolean selectable = false;
synchronized (resource) {
if (resource.isSet(flag) && !resource.isSet(notflag))
selectable = true;
}
if (selectable) {
int activeCount = 0;
for (ResourceTracker rt : active) {
if (rt == resource.getTracker())
activeCount++;
}
// try to spread out the downloads so that a slow host
// won't monopolize the downloads
if (activeCount < score) {
result = resource;
score = activeCount;
}
}
}
return result;
}
/**
* Return the resource matching the specified URL.
*
* @throws IllegalResourceDescriptorException if the resource is not being tracked
*/
private Resource getResource(URL location) {
synchronized (resources) {
for (Resource resource : resources) {
if (CacheUtil.urlEquals(resource.location, location))
return resource;
}
}
throw new IllegalResourceDescriptorException("Location does not specify a resource being tracked.");
}
/**
* Wait for some resources.
*
* @param resources the resources to wait for
* @param timeout the timeout, or 0 to wait until completed
* @returns true if the resources were downloaded or had errors,
* false if the timeout was reached
* @throws InterruptedException if another thread interrupted the wait
*/
private boolean wait(Resource resources[], long timeout) throws InterruptedException {
long startTime = System.currentTimeMillis();
// start them downloading / connecting in background
for (Resource resource : resources) {
startResource(resource);
}
// wait for completion
while (true) {
boolean finished = true;
synchronized (lock) {
// check for completion
for (Resource resource : resources) {
//NetX Deadlocking may be solved by removing this
//synch block.
synchronized (resource) {
if (!resource.isSet(DOWNLOADED | ERROR)) {
finished = false;
break;
}
}
}
if (finished)
return true;
// wait
long waitTime = 0;
if (timeout > 0) {
waitTime = timeout - (System.currentTimeMillis() - startTime);
if (waitTime <= 0)
return false;
}
lock.wait(waitTime);
}
}
}
// inner classes
/**
* This class downloads and initializes the queued resources.
*/
private class Downloader implements Runnable {
Resource resource = null;
public void run() {
while (true) {
synchronized (lock) {
// remove from active list, used for load balancing
if (resource != null)
active.remove(resource.getTracker());
resource = selectNextResource();
if (resource == null) {
endThread();
break;
}
// add to active list, used for load balancing
active.add(resource.getTracker());
}
try {
// Resource processing involves writing to files
// (cache entry trackers, the files themselves, etc.)
// and it therefore needs to be privileged
final Resource fResource = resource;
AccessController.doPrivileged(new PrivilegedAction<Void>() {
public Void run() {
processResource(fResource);
return null;
}
});
} catch (Exception ex) {
if (JNLPRuntime.isDebug())
ex.printStackTrace();
}
}
// should have a finally in case some exception is thrown by
// selectNextResource();
}
};
public static URL normalizeUrl(URL u, boolean debug) throws MalformedURLException, UnsupportedEncodingException, URISyntaxException {
if (u == null) {
return null;
}
String protocol = u.getProtocol();
if (protocol == null || "file".equals(protocol)) {
return u;
}
if (u.getPath() == null) {
return u;
}
//Decode the URL before encoding
URL decodedURL = new URL(URLDecoder.decode(u.toString(), UTF8));
//Create URI with the decoded URL
URI uri = new URI(decodedURL.getProtocol(), null, decodedURL.getHost(), decodedURL.getPort(), decodedURL.getPath(), decodedURL.getQuery(), null);
//Returns the encoded URL
URL encodedURL = new URL(uri.toASCIIString());
return encodedURL;
}
}
|