Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@jaxenter
Last active October 5, 2018 21:14
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 11 You must be signed in to fork a gist
  • Save jaxenter/ccfa6c76da767459c255 to your computer and use it in GitHub Desktop.
Save jaxenter/ccfa6c76da767459c255 to your computer and use it in GitHub Desktop.
Source code to "High-speed, multi-threaded virtual memory in Java" on JAXenter.com http://jaxenter.com/high-speed-multi-threaded-virtual-memory-in-java.1-46188.html
/*
Full source code to article on JAXenter.com:
http://jaxenter.com/high-speed-multi-threaded-virtual-memory-in-java.1-46188.html
===============
Copyright (c) 2013, Dr Alexander J Turner
All rights reserved.
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 OWNER 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.
The views and conclusions contained in the software and documentation are those
of the authors and should not be interpreted as representing official policies,
either expressed or implied, of Dr Turner.
*/
public class MapperCore {
private static AtomicInteger ider=new AtomicInteger();
private List<ByteBuffer> chunks= new ArrayList<>();
private final static long TWOGIG = Integer.MAX_VALUE;
private long length;
private File coreFile;
private RandomAccessFile coreFileAccessor;
private static int getUniqueId() {
return ider.incrementAndGet();
}
public MapperCore(String prefix,long size) throws IOException {
coreFile=new File(prefix+getUniqueId() + ".mem");
// This is a for testing - to avoid the disk filling up
coreFile.deleteOnExit();
// Now create the actual file
coreFileAccessor = new RandomAccessFile(coreFile, "rw");
FileChannel channelMapper=coreFileAccessor.getChannel();
long nChunks=size/TWOGIG;
if(nChunks>Integer.MAX_VALUE)throw new ArithmeticException("Requested File Size Too Large");
length=size;
long countDown=size;
long from=0;
while(countDown>0) {
long len=Math.min(TWOGIG, countDown);
ByteBuffer chunk=channelMapper.map(MapMode.READ_WRITE, from, len);
chunks.add(chunk);
from+=len;
countDown-=len;
}
}
public byte[] get(long offSet,int size) throws IOException {
// Quick and dirty but will go wrong for massive numbers
double a=offSet;
double b=TWOGIG;
byte[] dst=new byte[size];
long whichChunk=(long) Math.floor(a/b);
long withinChunk=offSet-whichChunk*TWOGIG;
// Data does not straddle two chunks
try {
if(TWOGIG-withinChunk>dst.length) {
ByteBuffer chunk=chunks.get((int) whichChunk);
// Allows free threading
ByteBuffer readBuffer = chunk.asReadOnlyBuffer();
readBuffer.position((int) withinChunk);
readBuffer.get(dst, 0, dst.length);
}else {
int l1=(int) (TWOGIG-withinChunk);
int l2=(int) dst.length - l1;
ByteBuffer chunk=chunks.get((int) whichChunk);
// Allows free threading
ByteBuffer readBuffer = chunk.asReadOnlyBuffer();
readBuffer.position((int) withinChunk);
readBuffer.get(dst, 0, l1);
chunk=chunks.get((int) whichChunk+1);
readBuffer = chunk.asReadOnlyBuffer();
readBuffer.position(0);
try {
readBuffer.get(dst, l1, l2);
}catch(java.nio.BufferUnderflowException e){
throw e;
}
}
}catch(IndexOutOfBoundsException i) {
throw new IOException("Out of bounds");
}
return dst;
}
public void put(long offSet,byte[] src) throws IOException {
// Quick and dirty but will go wrong for massive numbers
double a=offSet;
double b=TWOGIG;
long whichChunk=(long) Math.floor(a/b);
long withinChunk=offSet-whichChunk*TWOGIG;
// Data does not straddle two chunks
try {
if(TWOGIG-withinChunk>src.length) {
ByteBuffer chunk=chunks.get((int) whichChunk);
// Allows free threading
ByteBuffer writeBuffer = chunk.duplicate();
writeBuffer.position((int) withinChunk);
writeBuffer.put(src, 0, src.length);
}else {
int l1=(int) (TWOGIG-withinChunk);
int l2=(int) src.length - l1;
ByteBuffer chunk=chunks.get((int) whichChunk);
// Allows free threading
ByteBuffer writeBuffer = chunk.duplicate();
writeBuffer.position((int) withinChunk);
writeBuffer.put(src, 0, l1);
chunk=chunks.get((int) whichChunk+1);
writeBuffer = chunk.duplicate();
writeBuffer.position(0);
writeBuffer.put(src, l1, l2);
}
}catch(IndexOutOfBoundsException i) {
throw new IOException("Out of bounds");
}
}
public void purge() {
if(coreFileAccessor!=null) {
try {
coreFileAccessor.close();
} catch (IOException e) {
e.printStackTrace();
}finally {
coreFile.delete();
}
}
}
public long getSize() {
return length;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment