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
|
// 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.*;
import java.net.*;
import java.util.*;
import net.sourceforge.jnlp.*;
import net.sourceforge.jnlp.runtime.*;
import net.sourceforge.jnlp.util.*;
/**
* Information about a single resource to download.
* This class tracks the downloading of various resources of a
* JNLP file to local files. 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.<p>
*
* Resources can be put into download groups by specifying a part
* name for the resource. The resource tracker can also be
* configured to prefetch resources, which are downloaded in the
* order added to the media tracker.<p>
*
* @author <a href="mailto:jmaxwell@users.sourceforge.net">Jon A. Maxwell (JAM)</a> - initial author
* @version $Revision: 1.9 $
*/
public class Resource {
// todo: fix resources to handle different versions
// todo: IIRC, any resource is checked for being up-to-date
// only once, regardless of UpdatePolicy. verify and fix.
/** status bits */
public static final int UNINITIALIZED = 0;
public static final int CONNECT = 1;
public static final int CONNECTING = 2;
public static final int CONNECTED = 4;
public static final int DOWNLOAD = 8;
public static final int DOWNLOADING = 16;
public static final int DOWNLOADED = 32;
public static final int ERROR = 64;
public static final int STARTED = 128; // enqueued or being worked on
/** list of weak references of resources currently in use */
private static WeakList<Resource> resources = new WeakList<Resource>();
/** weak list of trackers monitoring this resource */
private WeakList<ResourceTracker> trackers = new WeakList<ResourceTracker>();
/** the remote location of the resource */
URL location;
/** the local file downloaded to */
File localFile;
/** the requested version */
Version requestVersion;
/** the version downloaded from server */
Version downloadVersion;
/** connection to resource */
URLConnection connection;
/** amount in bytes transferred */
long transferred = 0;
/** total size of the resource, or -1 if unknown */
long size = -1;
/** the status of the resource */
int status = UNINITIALIZED;
/** Update policy for this resource */
UpdatePolicy updatePolicy;
/**
* Create a resource.
*/
private Resource(URL location, Version requestVersion, UpdatePolicy updatePolicy) {
this.location = location;
this.requestVersion = requestVersion;
this.updatePolicy = updatePolicy;
}
/**
* Return a shared Resource object representing the given
* location and version.
*/
public static Resource getResource(URL location, Version requestVersion, UpdatePolicy updatePolicy) {
synchronized (resources) {
Resource resource = new Resource(location, requestVersion, updatePolicy);
int index = resources.indexOf(resource);
if (index >= 0) { // return existing object
Resource result = resources.get(index);
if (result != null)
return result;
}
resources.add(resource);
resources.trimToSize();
return resource;
}
}
/**
* Returns the remote location of the resource.
*/
public URL getLocation() {
return location;
}
/**
* Returns the tracker that first created or monitored the
* resource, or null if no trackers are monitoring the resource.
*/
ResourceTracker getTracker() {
synchronized (trackers) {
List<ResourceTracker> t = trackers.hardList();
if (t.size() > 0)
return t.get(0);
return null;
}
}
/**
* Returns true if any of the specified flags are set.
*/
public boolean isSet(int flag) {
if (flag == UNINITIALIZED)
return status == UNINITIALIZED;
else
return (status & flag) != 0;
}
/**
* Returns the update policy for this resource
*
* @return The update policy
*/
public UpdatePolicy getUpdatePolicy() {
return this.updatePolicy;
}
/**
* Returns a human-readable status string.
*/
private String getStatusString(int flag) {
StringBuffer result = new StringBuffer();
if (flag == 0) result.append("<> ");
if ((flag & CONNECT) != 0) result.append("CONNECT ");
if ((flag & CONNECTING) != 0) result.append("CONNECTING ");
if ((flag & CONNECTED) != 0) result.append("CONNECTED ");
if ((flag & DOWNLOAD) != 0) result.append("DOWNLOAD ");
if ((flag & DOWNLOADING) != 0) result.append("DOWNLOADING ");
if ((flag & DOWNLOADED) != 0) result.append("DOWNLOADED ");
if ((flag & ERROR) != 0) result.append("ERROR ");
if ((flag & STARTED) != 0) result.append("STARTED ");
return result.deleteCharAt(result.length()-1).toString();
}
/**
* Changes the status by clearing the flags in the first
* parameter and setting the flags in the second. This method
* is synchronized on this resource.
*/
public void changeStatus(int clear, int add) {
int orig = 0;
synchronized(this) {
orig = status;
this.status &= ~clear;
this.status |= add;
}
if (JNLPRuntime.isDebug())
if (status != orig) {
System.out.print("Status: "+getStatusString(status));
if ((status & ~orig) != 0)
System.out.print(" +("+getStatusString(status & ~orig)+")");
if ((~status & orig) != 0)
System.out.print(" -("+getStatusString(~status & orig)+")");
System.out.println(" @ "+location.getPath());
}
}
/**
* Removes the tracker to the list of trackers monitoring this
* resource.
*/
public void removeTracker(ResourceTracker tracker) {
synchronized (trackers) {
trackers.remove(tracker);
trackers.trimToSize();
}
}
/**
* Adds the tracker to the list of trackers monitoring this
* resource.
*/
public void addTracker(ResourceTracker tracker) {
synchronized (trackers) {
// prevent GC between contains and add
List<ResourceTracker> t = trackers.hardList();
if (!t.contains(tracker))
trackers.add(tracker);
trackers.trimToSize();
}
}
/**
* Instructs the trackers monitoring this resource to fire a
* download event.
*/
protected void fireDownloadEvent() {
List<ResourceTracker> send;
synchronized (trackers) {
send = trackers.hardList();
}
for (int i=0; i < send.size(); i++) {
ResourceTracker rt = send.get(i);
rt.fireDownloadEvent(this);
}
}
public boolean equals(Object other) {
if (other instanceof Resource) {
// this prevents the URL handler from looking up the IP
// address and doing name resolution; much faster so less
// time spent in synchronized addResource determining if
// Resource is already in a tracker, and better for offline
// mode on some OS.
return CacheUtil.urlEquals(location, ((Resource)other).location);
}
return false;
}
public String toString() {
return "location="+location.toString() + " state="+getStatusString(status);
}
}
|