forked from lmdbjava/lmdbjava
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectBufferProxy.java
More file actions
110 lines (97 loc) · 3.59 KB
/
Copy pathDirectBufferProxy.java
File metadata and controls
110 lines (97 loc) · 3.59 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
/*-
* #%L
* LmdbJava
* %%
* Copyright (C) 2016 - 2017 The LmdbJava Open Source Project
* %%
* 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.
* #L%
*/
package org.lmdbjava;
import static java.lang.ThreadLocal.withInitial;
import java.nio.ByteBuffer;
import static java.nio.ByteBuffer.allocateDirect;
import jnr.ffi.Pointer;
import org.agrona.DirectBuffer;
import org.agrona.MutableDirectBuffer;
import org.agrona.concurrent.OneToOneConcurrentArrayQueue;
import org.agrona.concurrent.UnsafeBuffer;
import static org.lmdbjava.UnsafeAccess.UNSAFE;
/**
* A buffer proxy backed by Agrona's {@link DirectBuffer}.
*
* <p>
* This class requires {@link UnsafeAccess} and Agrona must be in the classpath.
*/
public final class DirectBufferProxy extends
BufferProxy<DirectBuffer> {
/**
* The {@link MutableDirectBuffer} proxy. Guaranteed to never be null,
* although a class initialization exception will occur if an attempt is made
* to access this field when unsafe or Agrona is unavailable.
*/
public static final BufferProxy<DirectBuffer> PROXY_DB
= new DirectBufferProxy();
/**
* A thread-safe pool for a given length. If the buffer found is valid (ie not
* of a negative length) then that buffer is used. If no valid buffer is
* found, a new buffer is created.
*/
private static final ThreadLocal<OneToOneConcurrentArrayQueue<DirectBuffer>> BUFFERS
= withInitial(() -> new OneToOneConcurrentArrayQueue<>(16));
@Override
protected DirectBuffer allocate() {
final OneToOneConcurrentArrayQueue<DirectBuffer> q = BUFFERS.get();
final DirectBuffer buffer = q.poll();
if (buffer != null && buffer.capacity() >= 0) {
return buffer;
} else {
final ByteBuffer bb = allocateDirect(0);
return new UnsafeBuffer(bb);
}
}
@Override
protected void deallocate(final DirectBuffer buff) {
final OneToOneConcurrentArrayQueue<DirectBuffer> q = BUFFERS.get();
q.offer(buff);
}
@Override
protected byte[] getBytes(final DirectBuffer buffer) {
final byte[] dest = new byte[buffer.capacity()];
buffer.getBytes(0, dest, 0, buffer.capacity());
return dest;
}
@Override
protected void in(final DirectBuffer buffer, final Pointer ptr,
final long ptrAddr) {
final long addr = buffer.addressOffset();
final long size = buffer.capacity();
UNSAFE.putLong(ptrAddr + STRUCT_FIELD_OFFSET_DATA, addr);
UNSAFE.putLong(ptrAddr + STRUCT_FIELD_OFFSET_SIZE, size);
}
@Override
protected void in(final DirectBuffer buffer, final int size, final Pointer ptr,
final long ptrAddr) {
final long addr = buffer.addressOffset();
UNSAFE.putLong(ptrAddr + STRUCT_FIELD_OFFSET_DATA, addr);
UNSAFE.putLong(ptrAddr + STRUCT_FIELD_OFFSET_SIZE, size);
}
@Override
protected DirectBuffer out(final DirectBuffer buffer, final Pointer ptr,
final long ptrAddr) {
final long addr = UNSAFE.getLong(ptrAddr + STRUCT_FIELD_OFFSET_DATA);
final long size = UNSAFE.getLong(ptrAddr + STRUCT_FIELD_OFFSET_SIZE);
buffer.wrap(addr, (int) size);
return buffer;
}
}