Project

jruby-mmap

0.0
No commit activity in last 3 years
No release in over 3 years
JRuby extension to Java NIO Mmap
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

~> 10
~> 3
 Project Readme

JRuby Mmap

This gem only supports JRuby.

JRuby Mmap is a Java JRuby extension wrapper over the Java NIO memory mapping.

See also

Installation

This gem only supports JRuby.

Add this line to your application's Gemfile:

gem 'jruby-mmap'

And then execute:

$ bundle

Or install it yourself as:

$ gem install jruby-mmap

Building

Building uses Gradle. The build process compiles the Java classes, produces a jar file and copies the jar file in the project lib/jruby-mmap dir.

$ ./gradlew build

Usage

require "jruby-mmap"

BYTE_SIZE = 2048
FILE_PATH = "mmapfile.dat"

mmap = Mmap::ByteBuffer.new(FILE_PATH, BYTE_SIZE)
mmap.put_bytes("foobar")
mmap.close

Non String copying put_bytes

In Ruby there's no concept of byte arrays, for IO, data is ultimately carried as strings. The Mmap::ByteBuffer class exposes two methods for writing bytes to the mmap byte buffer which takes a String as argument:

  • Mmap::ByteBuffer#put_bytes
  • Mmap::ByteBuffer#put_bytes_copy

The former, put_bytes avoids copying the String content by directly passing the String underlying ByteList to the mmap byte buffer put method. This is obviously more efficient but also unsafe in the sense that further mutations of the String object will mutate that ByteList object and potentially create corruption. Invoking put_bytes is typically the last operation performed on that string so in most cases it should just be fine. If you are not sure or have doubts about the unsafe nature of put_bytes you can use put_bytes_copy which copies the string data into a new byte buffer and pass it to the mmap put method.

Tests

$ bundle install
$ bundle exec rspec

Author

Colin Surprenant on GitHub and Twitter.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/colinsurprenant/jruby-mmap.

License and Copyright

JRuby Mmap is released under the Apache License, Version 2.0. See LICENSE.