forked from saalfeldlab/n5
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpKeyValueAccess.java
More file actions
455 lines (373 loc) · 14.6 KB
/
Copy pathHttpKeyValueAccess.java
File metadata and controls
455 lines (373 loc) · 14.6 KB
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
/*-
* #%L
* Not HDF5
* %%
* Copyright (C) 2017 - 2025 Stephan Saalfeld
* %%
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
* #L%
*/
package org.janelia.saalfeldlab.n5;
import org.apache.commons.io.IOUtils;
import org.apache.commons.lang3.function.TriFunction;
import org.janelia.saalfeldlab.n5.N5Exception.N5IOException;
import org.janelia.saalfeldlab.n5.http.ListResponseParser;
import org.janelia.saalfeldlab.n5.readdata.ReadData;
import java.io.Closeable;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.OutputStream;
import java.io.Reader;
import java.io.Writer;
import java.net.HttpURLConnection;
import java.net.URI;
import java.net.URISyntaxException;
import java.net.URL;
import java.nio.channels.NonWritableChannelException;
import java.nio.charset.StandardCharsets;
import java.util.ArrayList;
/**
* A read-only {@link KeyValueAccess} implementation using HTTP. As a result, calling <code>lockForWriting</code>, <code>createDirectories</code>, or <code>delete</code> will throw an {@link N5Exception}.
* <p>
* The behavior of <code>list</code>, <code>listDirectories</code>, and <code>isDirectory</code> will depend on the server configuration. See the documentation of those methods for details.
* <p>
* Methods that take a "normalPath" as an argument expect absolute URIs.
*/
public class HttpKeyValueAccess implements KeyValueAccess {
public static final String HEAD = "HEAD";
public static final String GET = "GET";
public static final String RANGE = "Range";
public static final String ACCEPT_RANGE = "Accept-Range";
public static final String BYTES = "bytes";
private int readTimeoutMilliseconds;
private int connectionTimeoutMilliseconds;
private ListResponseParser listResponseParser = ListResponseParser.defaultListParser();
private ListResponseParser listDirectoryResponseParser = ListResponseParser.defaultDirectoryListParser();
/**
* Opens an {@link HttpKeyValueAccess}
*
* @throws N5IOException if the access could not be created
*/
public HttpKeyValueAccess() {
readTimeoutMilliseconds = 5000;
connectionTimeoutMilliseconds = 5000;
}
public void setReadTimeout(int readTimeoutMilliseconds) {
this.readTimeoutMilliseconds = readTimeoutMilliseconds;
}
public void setConnectionTimeout(int connectionTimeoutMilliseconds) {
this.connectionTimeoutMilliseconds = connectionTimeoutMilliseconds;
}
public void setListParser(final ListResponseParser parser) {
listResponseParser = parser;
}
public void setListDirectoryParser(final ListResponseParser parser) {
listDirectoryResponseParser = parser;
}
@Override
public String normalize(final String path) {
return N5URI.normalizeGroupPath(path);
}
@Override
public URI uri(final String normalPath) throws URISyntaxException {
return new URI(normalPath);
}
/**
* Test whether the {@code normalPath} exists.
* <p>
* Removes leading slash from {@code normalPath}, and then checks whether
* either {@code path} or {@code path + "/"} is a key.
*
* @param normalPath is expected to be in normalized form, no further efforts are
* made to normalize it.
* @return {@code true} if {@code path} exists, {@code false} otherwise
*/
@Override
public boolean exists(final String normalPath) {
try {
requireValidHttpResponse(normalPath, "HEAD", "Error checking existence: " + normalPath, true);
return true;
} catch (N5Exception.N5NoSuchKeyException e) {
return false;
}
}
@Override public long size(String normalPath) {
final HttpURLConnection head = requireValidHttpResponse(normalPath, "HEAD", "Error checking existence: " + normalPath, true);
return head.getContentLengthLong();
}
/**
* Test whether the path is a directory.
* <p>
* Appends trailing "/" to {@code normalPath} if there is none, removes
* leading "/", and then checks whether resulting {@code path} is a key.
*
* @param normalPath is expected to be in normalized form, no further efforts are
* made to normalize it.
* @return {@code true} if {@code path} (with trailing "/") exists as a key,
* {@code false} otherwise
*/
@Override
public boolean isDirectory(final String normalPath) {
try {
requireValidHttpResponse(getDirectoryPath(normalPath), HEAD, (code, msg,http) -> {
final N5Exception cause = validExistsResponse(code, "Error checking directory: " + normalPath, msg, true);
if (code >= 300 && code < 400) {
final String redirectLocation = http.getHeaderField("Location");
if (!(redirectLocation.endsWith("/") || redirectLocation.endsWith("index.html")))
return new N5Exception.N5NoSuchKeyException("Found File at " + normalPath + " but was not directory");
return null;
}
return cause;
});
return true;
} catch (N5Exception e) {
return false;
}
}
private static String getDirectoryPath(String normalPath) {
final String directoryNormalPath;
if (normalPath.endsWith("/"))
directoryNormalPath = normalPath;
else
directoryNormalPath = normalPath + "/";
return directoryNormalPath;
}
/**
* Test whether the path is a file.
* <p>
* Checks whether {@code normalPath} has no trailing "/", then removes
* leading "/" and checks whether the resulting {@code path} is a key.
*
* @param normalPath is expected to be in normalized form, no further efforts are
* made to normalize it.
* @return {@code true} if {@code path} exists as a key and has no trailing
* slash, {@code false} otherwise
*/
@Override
public boolean isFile(final String normalPath) {
/* Files must not end in `/` And Don't accept a redirect to a location ending in `/` */
try {
requireValidHttpResponse(getFilePath(normalPath), HEAD, (code, msg, http) -> {
final N5Exception cause = validExistsResponse(code, "Error accessing file: " + normalPath, msg, true);
if (code >= 300 && code < 400) {
final String redirectLocation = http.getHeaderField("Location");
if (redirectLocation.endsWith("/") || redirectLocation.endsWith("index.html"))
return new N5Exception.N5NoSuchKeyException("Found key at " + normalPath + " but was directory");
}
return cause;
});
return true;
} catch (N5Exception e) {
return false;
}
}
private static String getFilePath(String normalPath) {
final String fileNormalPath = normalPath.replaceAll("/+$", "");
return fileNormalPath;
}
private HttpURLConnection httpRequest(String normalPath, String method) throws IOException {
final URL url = URI.create(normalPath).toURL();
final HttpURLConnection connection = (HttpURLConnection)url.openConnection();
connection.setReadTimeout(readTimeoutMilliseconds);
connection.setConnectTimeout(connectionTimeoutMilliseconds);
connection.setRequestMethod(method);
return connection;
}
@Override
public ReadData createReadData(final String normalPath) {
return new KeyValueAccessReadData(new HttpLazyRead(normalPath));
}
public LockedChannel lockForReading(final String normalPath) throws N5IOException {
//TODO Caleb: Maybe check exists lazily when attempting to read
try {
if (!exists(normalPath))
throw new N5Exception.N5NoSuchKeyException("Key does not exist: " + normalPath);
return new HttpObjectChannel(uri(normalPath), 0, -1);
} catch (URISyntaxException e) {
throw new N5Exception("Invalid URI Syntax", e);
}
}
@Override
public LockedChannel lockForWriting(final String normalPath) throws N5IOException {
throw new N5Exception("HttpKeyValueAccess is read-only");
}
/**
* List all 'directory'-like children of a path.
* <p>
* Will throw an N5IOException both if a connection to the server can not be established, or the server does not allow listing.
*
* @param normalPath
* is expected to be in normalized form, no further
* efforts are made to normalize it.
* @return the directories
* @throws N5IOException
* if an error occurs during listing
*/
@Override
public String[] listDirectories(final String normalPath) throws N5IOException {
return queryListEntries(normalPath, listDirectoryResponseParser, true);
}
/**
* List all children of a path.
* <p>
* Will throw an N5IOException both if a connection to the server can not be
* established, or the server does not allow listing.
*
* @param normalPath
* is expected to be in normalized form, no further efforts are
* made to normalize it.
* @return the the child paths
* @throws N5IOException
* if an error occurs during listing
*/
@Override
public String[] list(final String normalPath) throws N5IOException {
return queryListEntries(normalPath, listResponseParser, true);
}
private String[] queryListEntries(String normalPath, ListResponseParser parser, boolean allowRedirect) throws N5IOException{
final HttpURLConnection http = requireValidHttpResponse(normalPath, GET, "Error listing directory at " + normalPath, allowRedirect);
try {
final String listResponse = responseToString(http.getInputStream());
return parser.parseListResponse(listResponse);
} catch (IOException e) {
throw new N5IOException("Error listing directory at " + normalPath, e);
}
}
private static N5Exception validExistsResponse(int code, String responseMsg, String message, boolean allowRedirect) {
if (code >= 200 && code < (allowRedirect ? 400 : 300)) return null;
final RuntimeException cause = new RuntimeException(message + "( "+ responseMsg + ")(" + code + ")");
if (code == 404)
return new N5Exception.N5NoSuchKeyException(message, cause);
return new N5Exception(message, cause);
}
private HttpURLConnection requireValidHttpResponse(String uri, String method, String message, boolean allowRedirect) throws N5Exception {
return requireValidHttpResponse(uri, method, (code, msg, http) -> validExistsResponse(code, msg, message, allowRedirect));
}
private HttpURLConnection requireValidHttpResponse(String uri, String method, TriFunction<Integer, String, HttpURLConnection, N5Exception> filterCode) throws N5Exception {
final int code;
final HttpURLConnection http;
final String responseMsg;
try {
http = httpRequest(uri, method);
code = http.getResponseCode();
responseMsg = http.getResponseMessage();
} catch (IOException e) {
throw new N5IOException("Could not validate HTTP Response", e);
}
final N5Exception cause = filterCode.apply(code, responseMsg, http);
if (cause != null) throw cause;
return http;
}
private String responseToString(InputStream inputStream) throws IOException {
return IOUtils.toString(inputStream, StandardCharsets.UTF_8.name());
}
@Override
public void createDirectories(final String normalPath) {
throw new N5Exception("HttpKeyValueAccess is read-only");
}
@Override
public void delete(final String normalPath) {
throw new N5Exception("HttpKeyValueAccess is read-only");
}
private class HttpObjectChannel implements LockedChannel {
protected final URI uri;
private final long startByte;
private final long size;
private final ArrayList<Closeable> resources = new ArrayList<>();
protected HttpObjectChannel(final URI uri, long startByte, long size) {
this.uri = uri;
this.startByte = startByte;
this.size = size;
}
private boolean isPartialRead() {
return startByte > 0 || (size >= 0 && size != Long.MAX_VALUE);
}
@Override
public InputStream newInputStream() throws N5IOException {
try {
HttpURLConnection conn = (HttpURLConnection)uri.toURL().openConnection();
if (isPartialRead()) {
conn.setRequestProperty(RANGE, rangeString());
final String acceptRanges = conn.getHeaderField(ACCEPT_RANGE);
if (acceptRanges == null || !acceptRanges.equals(BYTES)) {
conn.disconnect();
conn = (HttpURLConnection)uri.toURL().openConnection();
return ReadData.from(conn.getInputStream()).materialize().slice(startByte, size).inputStream();
}
}
return conn.getInputStream();
} catch (IOException e) {
throw new N5IOException("Could not open stream for " + uri, e);
}
}
private String rangeString() {
final String lastByte = (size > 0) ? Long.toString(startByte + size - 1) : "";
return String.format("%s=%d-%s", BYTES, startByte, lastByte);
}
@Override
public Reader newReader() throws N5IOException {
final InputStreamReader reader = new InputStreamReader(newInputStream(), StandardCharsets.UTF_8);
synchronized (resources) {
resources.add(reader);
}
return reader;
}
@Override
public OutputStream newOutputStream() throws N5IOException {
throw new NonWritableChannelException();
}
@Override
public Writer newWriter() throws N5IOException {
throw new NonWritableChannelException();
}
@Override
public void close() throws IOException {
synchronized (resources) {
for (final Closeable resource : resources) {
resource.close();
}
resources.clear();
}
}
}
private class HttpLazyRead implements LazyRead {
private final String normalKey;
HttpLazyRead(String normalKey) {
this.normalKey = normalKey;
}
@Override
public long size() {
return HttpKeyValueAccess.this.size(normalKey);
}
@Override
public ReadData materialize(long offset, long length) {
try (final HttpObjectChannel ch = new HttpObjectChannel(uri(normalKey), offset, length)) {
return ReadData.from(ch.newInputStream()).materialize();
} catch (IOException e) {
throw new N5IOException(e);
} catch (URISyntaxException e) {
throw new N5Exception(e);
}
}
}
}