views:

293

answers:

1

Greetings All,

Is there a way to expand the Java memory-mapped byte buffer such that the new size is reflected back to the mapped file on disk ?

Thank you !

A: 

No, you will need to adjust the size of the underlying file and recreate the Memory Mapped Byte Buffer.

RandomAccessFile file = new RandomAccessFile(/* some file */);
MappedByteBuffer buffer = file.getChannel().map(MapMode.READ_WRITE, 0, file.length());

// Some stuff happens...

// adjust the size
file.setLength(newLength);

// recreate the memory mapped buffer
buffer = file.getChannel().map(MapMode.READ_WRITE, 0, file.length());

Note: Setting the file length has some slightly odd behaviour. If you write to the file via the map at a specific position that is beyond the end of the file (either using map.position() or map.putX(position, ...)) the values will be appended to the end of the file and not written at the position you expect (on linux at least). If this is undesired behaviour you will need to append data to the file in order to truly grow the file.

Michael Barker
Would you please explain the odd behavior in other words ?Is it not expected to append to the end of file if I write beyond the end of it (via the mapped buffer assuming it maps the whole file size) ?
geeko
Start with a file 50 bytes in size. Call setLength(1000) to increase the size of the file. Then create a new map from the file (file.getChannel().map(..., 0, 1000). If on the new MappedByteBuffer you call putByte(500, (byte) 'x') the value 'x' will appear as the 50th byte in the file (0-based index) not at position 500 (maybe not odd, but potentially unexpected behaviour).
Michael Barker
i can see what you mean.thank you michael.
geeko