-
Notifications
You must be signed in to change notification settings - Fork 146
Expand file tree
/
Copy pathArrowSchema.java
More file actions
180 lines (164 loc) · 5.08 KB
/
Copy pathArrowSchema.java
File metadata and controls
180 lines (164 loc) · 5.08 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
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.arrow.c;
import static org.apache.arrow.c.NativeUtil.NULL;
import static org.apache.arrow.util.Preconditions.checkNotNull;
import java.nio.ByteBuffer;
import java.nio.ByteOrder;
import org.apache.arrow.c.jni.JniWrapper;
import org.apache.arrow.memory.ArrowBuf;
import org.apache.arrow.memory.BufferAllocator;
import org.apache.arrow.memory.ReferenceManager;
import org.apache.arrow.memory.util.MemoryUtil;
/**
* C Data Interface ArrowSchema.
*
* <p>Represents a wrapper for the following C structure:
*
* <pre>
* struct ArrowSchema {
* // Array type description
* const char* format;
* const char* name;
* const char* metadata;
* int64_t flags;
* int64_t n_children;
* struct ArrowSchema** children;
* struct ArrowSchema* dictionary;
*
* // Release callback
* void (*release)(struct ArrowSchema*);
* // Opaque producer-specific data
* void* private_data;
* };
* </pre>
*/
public class ArrowSchema implements BaseStruct {
private static final int SIZE_OF = 72;
private static final int INDEX_RELEASE_CALLBACK = 56;
private ArrowBuf data;
/** Snapshot of the ArrowSchema raw data. */
public static class Snapshot {
public long format;
public long name;
public long metadata;
public long flags;
public long n_children;
public long children;
public long dictionary;
public long release;
public long private_data;
/** Initialize empty ArrowSchema snapshot. */
public Snapshot() {
format = NULL;
name = NULL;
metadata = NULL;
flags = NULL;
n_children = NULL;
children = NULL;
dictionary = NULL;
release = NULL;
private_data = NULL;
}
}
/**
* Create ArrowSchema from an existing memory address.
*
* <p>The resulting ArrowSchema does not own the memory.
*
* @param memoryAddress Memory address to wrap
* @return A new ArrowSchema instance
*/
public static ArrowSchema wrap(long memoryAddress) {
return new ArrowSchema(
new ArrowBuf(ReferenceManager.NO_OP, null, ArrowSchema.SIZE_OF, memoryAddress));
}
/**
* Create ArrowSchema by allocating memory.
*
* <p>The resulting ArrowSchema owns the memory.
*
* @param allocator Allocator for memory allocations
* @return A new ArrowSchema instance
*/
public static ArrowSchema allocateNew(BufferAllocator allocator) {
ArrowSchema schema = new ArrowSchema(allocator.buffer(ArrowSchema.SIZE_OF));
schema.markReleased();
return schema;
}
ArrowSchema(ArrowBuf data) {
checkNotNull(data, "ArrowSchema initialized with a null buffer");
this.data = data;
}
/** Mark the schema as released. */
public void markReleased() {
directBuffer().putLong(INDEX_RELEASE_CALLBACK, NULL);
}
@Override
public long memoryAddress() {
checkNotNull(data, "ArrowSchema is already closed");
return data.memoryAddress();
}
@Override
public void release() {
long address = memoryAddress();
JniWrapper.get().releaseSchema(address);
}
@Override
public void close() {
if (data != null) {
data.close();
data = null;
}
}
private ByteBuffer directBuffer() {
return MemoryUtil.directBuffer(memoryAddress(), ArrowSchema.SIZE_OF)
.order(ByteOrder.nativeOrder());
}
/**
* Take a snapshot of the ArrowSchema raw values.
*
* @return snapshot
*/
public Snapshot snapshot() {
ByteBuffer data = directBuffer();
Snapshot snapshot = new Snapshot();
snapshot.format = data.getLong();
snapshot.name = data.getLong();
snapshot.metadata = data.getLong();
snapshot.flags = data.getLong();
snapshot.n_children = data.getLong();
snapshot.children = data.getLong();
snapshot.dictionary = data.getLong();
snapshot.release = data.getLong();
snapshot.private_data = data.getLong();
return snapshot;
}
/** Write values from Snapshot to the underlying ArrowSchema memory buffer. */
public void save(Snapshot snapshot) {
directBuffer()
.putLong(snapshot.format)
.putLong(snapshot.name)
.putLong(snapshot.metadata)
.putLong(snapshot.flags)
.putLong(snapshot.n_children)
.putLong(snapshot.children)
.putLong(snapshot.dictionary)
.putLong(snapshot.release)
.putLong(snapshot.private_data);
}
}