forked from lance-format/lance
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBlobFile.java
More file actions
executable file
·98 lines (81 loc) · 2.95 KB
/
BlobFile.java
File metadata and controls
executable file
·98 lines (81 loc) · 2.95 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
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.lance;
import java.io.Closeable;
import java.io.IOException;
/**
* BlobFile: a file-like abstraction for a single blob, aligned with Lance Rust/Python semantics.
* Read-only: methods include read, readUpTo, readRange, seek, tell, size, close. All delegate to
* JNI.
*
* <p>Usage example (try-with-resources for automatic resource management):
*
* <pre>{@code
* try (BlobFile blob = dataset.takeBlob()) {
* long size = blob.size();
* byte[] data = blob.read(); // Read all content
* blob.seek(1024);
* byte[] partial = blob.readUpTo(512); // Read 512 bytes from position 1024
* } catch (IOException e) {
* // Handle IO errors
* }
* }</pre>
*
* Auto-closes after try block, no manual close needed.
*/
public final class BlobFile implements Closeable {
static {
JniLoader.ensureLoaded();
}
/** Opaque native handle managed by lance-jni. */
@SuppressWarnings("FieldCanBeLocal")
private long nativeBlobHandle;
/** Default no-arg constructor used by JNI to attach native handle. */
public BlobFile() {}
/** Read all remaining bytes from current cursor to end. */
public byte[] read() throws IOException {
return nativeRead();
}
/** Read up to len bytes from the current cursor. */
public byte[] readUpTo(int len) throws IOException {
if (len < 0) throw new IllegalArgumentException("len must be non-negative");
return nativeReadUpTo(len);
}
/** Seek to a new cursor position. */
public void seek(long newCursor) throws IOException {
if (newCursor < 0) throw new IllegalArgumentException("newCursor must be non-negative");
nativeSeek(newCursor);
}
/** Return current cursor position. */
public long tell() throws IOException {
return nativeTell();
}
/** Return blob size in bytes. */
public long size() {
return nativeSize();
}
/** Close BlobFile and release associated resources. */
@Override
public void close() throws IOException {
nativeClose();
}
// ===== JNI bindings =====
private native byte[] nativeRead() throws IOException;
private native byte[] nativeReadUpTo(int len) throws IOException;
private native byte[] nativeReadRange(long offset, int len) throws IOException;
private native void nativeSeek(long newCursor) throws IOException;
private native long nativeTell() throws IOException;
private native long nativeSize();
private native void nativeClose() throws IOException;
}