class IO::Buffer
IO::Buffer is a efficient zero-copy buffer for input/output. There are typical use cases:
-
Create an empty buffer with
::new, fill it with buffer usingcopyorset_value,set_string, get buffer withget_stringor write it directly to some file withwrite. -
Create a buffer mapped to some string with
::for, then it could be used both for reading withget_stringorget_value, and writing (writing will change the source string, too). -
Create a buffer mapped to some file with
::map, then it could be used for reading and writing the underlying file. -
Create a string of a fixed size with
::string, thenreadinto it, or modify it usingset_value.
Interaction with string and file memory is performed by efficient low-level C mechanisms like memcpy.
The class is meant to be an utility for implementing more high-level mechanisms like Fiber::Scheduler#io_read and Fiber::Scheduler#io_write and parsing binary protocols.
Examples of Usage
Empty buffer:
buffer = IO::Buffer.new(8) # create empty 8-byte buffer # => # #<IO::Buffer 0x0000555f5d1a5c50+8 INTERNAL> # ... buffer # => # <IO::Buffer 0x0000555f5d156ab0+8 INTERNAL> # 0x00000000 00 00 00 00 00 00 00 00 buffer.set_string('test', 2) # put there bytes of the "test" string, starting from offset 2 # => 4 buffer.get_string # get the result # => "\x00\x00test\x00\x00"
Buffer from string:
string = 'data' IO::Buffer.for(string) do |buffer| buffer # => # #<IO::Buffer 0x00007f3f02be9b18+4 SLICE> # 0x00000000 64 61 74 61 data buffer.get_string(2) # read content starting from offset 2 # => "ta" buffer.set_string('---', 1) # write content, starting from offset 1 # => 3 buffer # => # #<IO::Buffer 0x00007f3f02be9b18+4 SLICE> # 0x00000000 64 2d 2d 2d d--- string # original string changed, too # => "d---" end
Buffer from file:
File.write('test.txt', 'test data') # => 9 buffer = IO::Buffer.map(File.open('test.txt'), nil, 0, IO::Buffer::READONLY) # => # #<IO::Buffer 0x00007f3f0768c000+9 EXTERNAL MAPPED FILE SHARED READONLY> # ... buffer.get_string(5, 2) # read 2 bytes, starting from offset 5 # => "da" buffer.set_string('---', 1) # attempt to write # in `set_string': Buffer is not writable! (IO::Buffer::AccessError) # To create writable file-mapped buffer # Open file for read-write, pass size, offset, and flags=0 buffer = IO::Buffer.map(File.open('test.txt', 'r+'), 9, 0, 0) buffer.set_string('---', 1) # => 3 -- bytes written File.read('test.txt') # => "t--- data"
<strong>The class is experimental and the interface is subject to change, this is especially true of file mappings which may be removed entirely in the future.</strong>
Constants
- BIG_ENDIAN
-
Refers to big endian byte order, where the most significant byte is stored first. See
get_valuefor more details. - DEFAULT_SIZE
-
The default buffer size, typically a (small) multiple of the
PAGE_SIZE. Can be explicitly specified by setting the RUBY_IO_BUFFER_DEFAULT_SIZE environment variable. - EXTERNAL
-
Indicates that the memory in the buffer is owned by someone else. See
external?for more details. - HOST_ENDIAN
-
Refers to the byte order of the host machine. See
get_valuefor more details. - INTERNAL
-
Indicates that the memory in the buffer is owned by the buffer. See
internal?for more details. - LITTLE_ENDIAN
-
Refers to little endian byte order, where the least significant byte is stored first. See
get_valuefor more details. - LOCKED
-
Indicates that the memory in the buffer is locked and cannot be resized or freed. See
locked?andlockedfor more details. - MAPPED
-
Indicates that the memory in the buffer is mapped by the operating system. See
mapped?for more details. - NETWORK_ENDIAN
-
Refers to network byte order, which is the same as big endian. See
get_valuefor more details. - PAGE_SIZE
-
The operating system page size. Used for efficient page-aligned memory allocations.
- PRIVATE
-
Indicates that the memory in the buffer is mapped privately and changes won’t be replicated to the underlying file. See #private? for more details.
- READONLY
-
Indicates that the memory in the buffer is read only, and attempts to modify it will fail. See
readonly?for more details.
Public Class Methods
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 127
def self.for: (String) -> Buffer
Creates a zero-copy IO::Buffer from the given string’s memory. Without a block a frozen internal copy of the string is created efficiently and used as the buffer source. When a block is provided, the buffer is associated directly with the string’s internal buffer and updating the buffer will update the string.
Until free is invoked on the buffer, either explicitly or via the garbage collector, the source string will be locked and cannot be modified.
If the string is frozen, it will create a read-only buffer which cannot be modified. If the string is shared, it may trigger a copy-on-write when using the block form.
string = 'test' buffer = IO::Buffer.for(string) buffer.external? #=> true buffer.get_string(0, 1) # => "t" string # => "test" buffer.resize(100) # in `resize': Cannot resize external buffer! (IO::Buffer::AccessError) IO::Buffer.for(string) do |buffer| buffer.set_string("T") string # => "Test" end
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 174
def self.map: (File file, ?Integer? size, ?Integer offset, ?Integer flags) -> Buffer
Create an IO::Buffer for reading from file by memory-mapping the file. file should be a File instance, opened for reading or reading and writing.
Optional size and offset of mapping can be specified. Trying to map an empty file or specify size of 0 will raise an error. Valid values for offset are system-dependent.
By default, the buffer is writable and expects the file to be writable. It is also shared, so several processes can use the same mapping.
You can pass IO::Buffer::READONLY in flags argument to make a read-only buffer; this allows to work with files opened only for reading. Specifying IO::Buffer::PRIVATE in flags creates a private mapping, which will not impact other processes or the underlying file. It also allows updating a buffer created from a read-only file.
File.write('test.txt', 'test') buffer = IO::Buffer.map(File.open('test.txt'), nil, 0, IO::Buffer::READONLY) # => #<IO::Buffer 0x00000001014a0000+4 EXTERNAL MAPPED FILE SHARED READONLY> buffer.readonly? # => true buffer.get_string # => "test" buffer.set_string('b', 0) # 'IO::Buffer#set_string': Buffer is not writable! (IO::Buffer::AccessError) # create read/write mapping: length 4 bytes, offset 0, flags 0 buffer = IO::Buffer.map(File.open('test.txt', 'r+'), 4, 0) buffer.set_string('b', 0) # => 1 # Check it File.read('test.txt') # => "best"
Note that some operating systems may not have cache coherency between mapped buffers and file reads.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 887
def initialize: (?Integer size, ?Integer flags) -> void
Create a new zero-filled IO::Buffer of size bytes. By default, the buffer will be internal: directly allocated chunk of the memory. But if the requested size is more than OS-specific IO::Buffer::PAGE_SIZE, the buffer would be allocated using the virtual memory mechanism (anonymous mmap on Unix, VirtualAlloc on Windows). The behavior can be forced by passing IO::Buffer::MAPPED as a second parameter.
buffer = IO::Buffer.new(4) # => # #<IO::Buffer 0x000055b34497ea10+4 INTERNAL> # 0x00000000 00 00 00 00 .... buffer.get_string(0, 1) # => "\x00" buffer.set_string("test") buffer # => # #<IO::Buffer 0x000055b34497ea10+4 INTERNAL> # 0x00000000 74 65 73 74 test
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 189
def self.string: (int) { (Buffer) -> void } -> String
Creates a new string of the given length and yields a zero-copy IO::Buffer instance to the block which uses the string as a source. The block is expected to write to the buffer and the string will be returned.
IO::Buffer.string(4) do |buffer| buffer.set_string("Ruby") end # => "Ruby"
Public Instance Methods
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 198
def <=>: (Buffer) -> Integer
Buffers are compared by size and exact contents of the memory they are referencing using memcmp.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 231
def clear: (?Integer value, ?Integer offset, ?Integer length) -> self
Fill buffer with value, starting with offset and going for length bytes.
buffer = IO::Buffer.for('test').dup # => # <IO::Buffer 0x00007fca40087c38+4 INTERNAL> # 0x00000000 74 65 73 74 test buffer.clear # => # <IO::Buffer 0x00007fca40087c38+4 INTERNAL> # 0x00000000 00 00 00 00 .... buf.clear(1) # fill with 1 # => # <IO::Buffer 0x00007fca40087c38+4 INTERNAL> # 0x00000000 01 01 01 01 .... buffer.clear(2, 1, 2) # fill with 2, starting from offset 1, for 2 bytes # => # <IO::Buffer 0x00007fca40087c38+4 INTERNAL> # 0x00000000 01 02 02 01 .... buffer.clear(2, 1) # fill with 2, starting from offset 1 # => # <IO::Buffer 0x00007fca40087c38+4 INTERNAL> # 0x00000000 01 02 02 02 ....
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 301
def copy: (Buffer source, ?Integer offset, ?Integer length, ?Integer source_offset) -> Integer
Efficiently copy from a source IO::Buffer into the buffer, at offset using memmove. For copying String instances, see set_string.
buffer = IO::Buffer.new(32) # => # #<IO::Buffer 0x0000555f5ca22520+32 INTERNAL> # 0x00000000 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ # 0x00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ * buffer.copy(IO::Buffer.for("test"), 8) # => 4 -- size of buffer copied buffer # => # #<IO::Buffer 0x0000555f5cf8fe40+32 INTERNAL> # 0x00000000 00 00 00 00 00 00 00 00 74 65 73 74 00 00 00 00 ........test.... # 0x00000010 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 ................ *
copy can be used to put buffer into strings associated with buffer:
string = "data: " # => "data: " buffer = IO::Buffer.for(string) do |buffer| buffer.copy(IO::Buffer.for("test"), 5) end # => 4 string # => "data:test"
Attempt to copy into a read-only buffer will fail:
File.write('test.txt', 'test') buffer = IO::Buffer.map(File.open('test.txt'), nil, 0, IO::Buffer::READONLY) buffer.copy(IO::Buffer.for("test"), 8) # in `copy': Buffer is not writable! (IO::Buffer::AccessError)
See ::map for details of creation of mutable file mappings, this will work:
buffer = IO::Buffer.map(File.open('test.txt', 'r+')) buffer.copy(IO::Buffer.for("boom"), 0) # => 4 File.read('test.txt') # => "boom"
Attempt to copy the buffer which will need place outside of buffer’s bounds will fail:
buffer = IO::Buffer.new(2) buffer.copy(IO::Buffer.for('test'), 0) # in `copy': Specified offset+length is bigger than the buffer size! (ArgumentError)
It is safe to copy between memory regions that overlaps each other. In such case, the data is copied as if the data was first copied from the source buffer to a temporary buffer, and then copied from the temporary buffer to the destination buffer.
buffer = IO::Buffer.new(10) buffer.set_string("0123456789") buffer.copy(buffer, 3, 7) # => 7 buffer # => # #<IO::Buffer 0x000056494f8ce440+10 INTERNAL> # 0x00000000 30 31 32 30 31 32 33 34 35 36 0120123456
() → bool
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 311
def empty?: () -> bool
() → bool
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 324
def external?: () -> bool
The buffer is external if it references the memory which is not allocated or mapped by the buffer itself.
A buffer created using ::for has an external reference to the string’s memory.
External buffer can’t be resized.
() → self
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 352
def free: () -> self
If the buffer references memory, release it back to the operating system. * for a mapped buffer (e.g. from file): unmap. * for a buffer created from scratch: free memory. * for a buffer created from string: undo the association.
After the buffer is freed, no further operations can’t be performed on it.
You can resize a freed buffer to re-allocate it.
buffer = IO::Buffer.for('test') buffer.free # => #<IO::Buffer 0x0000000000000000+0 NULL> buffer.get_value(:U8, 0) # in `get_value': The buffer is not allocated! (IO::Buffer::AllocationError) buffer.get_string # in `get_string': The buffer is not allocated! (IO::Buffer::AllocationError) buffer.null? # => true
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 369
def get_string: (?Integer offset, ?Integer length, ?Encoding encoding) -> String
Read a chunk or all of the buffer into a string, in the specified encoding. If no encoding is provided Encoding::BINARY is used.
buffer = IO::Buffer.for('test') buffer.get_string # => "test" buffer.get_string(2) # => "st" buffer.get_string(2, 1) # => "s"
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 410
def get_value: (int_get_type, Integer offset) -> Integer
| (float_get_type, Integer offset) -> Float
Read from buffer a value of type at offset. buffer_type should be one of symbols:
-
:U8: unsigned integer, 1 byte -
:S8: signed integer, 1 byte -
:u16: unsigned integer, 2 bytes, little-endian -
:U16: unsigned integer, 2 bytes, big-endian -
:s16: signed integer, 2 bytes, little-endian -
:S16: signed integer, 2 bytes, big-endian -
:u32: unsigned integer, 4 bytes, little-endian -
:U32: unsigned integer, 4 bytes, big-endian -
:s32: signed integer, 4 bytes, little-endian -
:S32: signed integer, 4 bytes, big-endian -
:u64: unsigned integer, 8 bytes, little-endian -
:U64: unsigned integer, 8 bytes, big-endian -
:s64: signed integer, 8 bytes, little-endian -
:S64: signed integer, 8 bytes, big-endian -
:u128: unsigned integer, 16 bytes, little-endian -
:U128: unsigned integer, 16 bytes, big-endian -
:s128: signed integer, 16 bytes, little-endian -
:S128: signed integer, 16 bytes, big-endian -
:f32: float, 4 bytes, little-endian -
:F32: float, 4 bytes, big-endian -
:f64: double, 8 bytes, little-endian -
:F64: double, 8 bytes, big-endian
A buffer type refers specifically to the type of binary buffer that is stored in the buffer. For example, a :u32 buffer type is a 32-bit unsigned integer in little-endian format.
string = [1.5].pack('f') # => "\x00\x00\xC0?" IO::Buffer.for(string).get_value(:f32, 0) # => 1.5
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 437
def hexdump: () -> String
Returns a human-readable string representation of the buffer. The exact format is subject to change.
buffer = IO::Buffer.for("Hello World") puts buffer.hexdump # 0x00000000 48 65 6c 6c 6f 20 57 6f 72 6c 64 Hello World
As buffers are usually fairly big, you may want to limit the output by specifying the offset and length:
puts buffer.hexdump(6, 5) # 0x00000006 57 6f 72 6c 64 World
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 452
def inspect: () -> String
Inspect the buffer and report useful information about it’s internal state. Only a limited portion of the buffer will be displayed in a hexdump style format.
buffer = IO::Buffer.for("Hello World") puts buffer.inspect # #<IO::Buffer 0x000000010198ccd8+11 EXTERNAL READONLY SLICE> # 0x00000000 48 65 6c 6c 6f 20 57 6f 72 6c 64 Hello World
() → bool
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 471
def internal?: () -> bool
If the buffer is internal, meaning it references memory allocated by the buffer itself.
An internal buffer is not associated with any external memory (e.g. string) or file mapping.
Internal buffers are created using ::new and is the default when the requested size is less than the IO::Buffer::PAGE_SIZE and it was not requested to be mapped on creation.
Internal buffers can be resized, and such an operation will typically invalidate all slices, but not always.
[A] () { (IO::Buffer) → A } → A
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 503
def locked: [A] () { (IO::Buffer) -> A } -> A
Allows to process a buffer in exclusive way, for concurrency-safety. While the block is performed, the buffer is considered locked, and no other code can enter the lock. Also, locked buffer can’t be changed with resize or free.
The following operations acquire a lock: resize, free.
Locking is not thread safe. It is designed as a safety net around non-blocking system calls. You can only share a buffer between threads with appropriate synchronisation techniques.
buffer = IO::Buffer.new(4) buffer.locked? #=> false Fiber.schedule do buffer.locked do buffer.write(io) # theoretical system call interface end end Fiber.schedule do # in `locked': Buffer already locked! (IO::Buffer::LockedError) buffer.locked do buffer.set_string("test", 0) end end
() → bool
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 520
def locked?: () -> bool
If the buffer is locked, meaning it is inside locked block execution. Locked buffer can’t be resized or freed, and another lock can’t be acquired on it.
Locking is not thread safe, but is a semantic used to ensure buffers don’t move while being used by a system call.
buffer.locked do buffer.write(io) # theoretical system call interface end
() → bool
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 535
def mapped?: () -> bool
If the buffer is mapped, meaning it references memory mapped by the buffer.
Mapped buffers are either anonymous, if created by ::new with the IO::Buffer::MAPPED flag or if the size was at least IO::Buffer::PAGE_SIZE, or backed by a file if created with ::map.
Mapped buffers can usually be resized, and such an operation will typically invalidate all slices, but not always.
() → bool
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 552
def null?: () -> bool
(untyped, untyped, untyped) → untyped
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 585
def pread: (untyped, untyped, untyped) -> untyped
Read at least length bytes from the io starting at the specified from position, into the buffer starting at offset. If an error occurs, return -errno.
If length is not given or nil, it defaults to the size of the buffer minus the offset, i.e. the entire buffer.
If length is zero, exactly one pread operation will occur.
If offset is not given, it defaults to zero, i.e. the beginning of the buffer.
IO::Buffer.for('test') do |buffer| p buffer # => # <IO::Buffer 0x00007fca40087c38+4 SLICE> # 0x00000000 74 65 73 74 test # take 2 bytes from the beginning of urandom, # put them in buffer starting from position 2 buffer.pread(File.open('/dev/urandom', 'rb'), 0, 2, 2) p buffer # => # <IO::Buffer 0x00007f3bc65f2a58+4 EXTERNAL SLICE> # 0x00000000 05 35 73 74 te.5 end
(untyped, untyped, untyped) → untyped
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 612
def pwrite: (untyped, untyped, untyped) -> untyped
Write at least length bytes from the buffer starting at offset, into the io starting at the specified from position. If an error occurs, return -errno.
If length is not given or nil, it defaults to the size of the buffer minus the offset, i.e. the entire buffer.
If length is zero, exactly one pwrite operation will occur.
If offset is not given, it defaults to zero, i.e. the beginning of the buffer.
If the from position is beyond the end of the file, the gap will be filled with null (0 value) bytes.
out = File.open('output.txt', File::RDWR) # open for read/write, no truncation IO::Buffer.for('1234567').pwrite(out, 2, 3, 1)
This leads to 234 (3 bytes, starting from position 1) being written into output.txt, starting from file position 2.
(untyped, untyped) → untyped
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 641
def read: (untyped, untyped) -> untyped
Read at least length bytes from the io, into the buffer starting at offset. If an error occurs, return -errno.
If length is not given or nil, it defaults to the size of the buffer minus the offset, i.e. the entire buffer.
If length is zero, exactly one read operation will occur.
If offset is not given, it defaults to zero, i.e. the beginning of the buffer.
IO::Buffer.for('test') do |buffer| p buffer # => # <IO::Buffer 0x00007fca40087c38+4 SLICE> # 0x00000000 74 65 73 74 test buffer.read(File.open('/dev/urandom', 'rb'), 2) p buffer # => # <IO::Buffer 0x00007f3bc65f2a58+4 EXTERNAL SLICE> # 0x00000000 05 35 73 74 .5st end
() → bool
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 652
def readonly?: () -> bool
If the buffer is read only, meaning the buffer cannot be modified using
set_value, set_string or copy and similar.
Frozen strings and read-only files create read-only buffers.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 671
def resize: (Integer) -> self
Resizes a buffer to a new_size bytes, preserving its content. Depending on the old and new size, the memory area associated with the buffer might be either extended, or rellocated at different address with content being copied.
buffer = IO::Buffer.new(4) buffer.set_string("test", 0) buffer.resize(8) # resize to 8 bytes # => # #<IO::Buffer 0x0000555f5d1a1630+8 INTERNAL> # 0x00000000 74 65 73 74 00 00 00 00 test....
External buffer (created with ::for), and locked buffer can not be resized.
(*untyped) → untyped
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 697
def set_string: (*untyped) -> untyped
Efficiently copy from a source String into the buffer, at offset using memmove.
buf = IO::Buffer.new(8) # => # #<IO::Buffer 0x0000557412714a20+8 INTERNAL> # 0x00000000 00 00 00 00 00 00 00 00 ........ # set buffer starting from offset 1, take 2 bytes starting from string's # second buf.set_string('test', 1, 2, 1) # => 2 buf # => # #<IO::Buffer 0x0000557412714a20+8 INTERNAL> # 0x00000000 00 65 73 00 00 00 00 00 .es.....
See also copy for examples of how buffer writing might be used for changing associated strings and files.
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 731
def set_value: (int_get_type | float_get_type, Integer offset, Float | Integer value) -> Integer
Write to a buffer a value of type at offset. type should be one of symbols described in get_value.
buffer = IO::Buffer.new(8) # => # #<IO::Buffer 0x0000555f5c9a2d50+8 INTERNAL> # 0x00000000 00 00 00 00 00 00 00 00 buffer.set_value(:U8, 1, 111) # => 1 buffer # => # #<IO::Buffer 0x0000555f5c9a2d50+8 INTERNAL> # 0x00000000 00 6f 00 00 00 00 00 00 .o......
Note that if the type is integer and value is Float, the implicit truncation is performed:
buffer = IO::Buffer.new(8) buffer.set_value(:U32, 0, 2.5) buffer # => # #<IO::Buffer 0x0000555f5c9a2d50+8 INTERNAL> # 0x00000000 00 00 00 02 00 00 00 00 # ^^ the same as if we'd pass just integer 2
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 740
def size: () -> Integer
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 793
def slice: (Integer offset, Integer length) -> Buffer
Produce another IO::Buffer which is a slice (or view into) the current one starting at offset bytes and going for length bytes.
The slicing happens without copying of memory, and the slice keeps being associated with the original buffer’s source (string, or file), if any.
If the offset is not given, it will be zero. If the offset is negative, it will raise an ArgumentError.
If the length is not given, the slice will be as long as the original buffer minus the specified offset. If the length is negative, it will raise an ArgumentError.
Raises RuntimeError if the offset+length is out of the current buffer’s bounds.
string = 'test' buffer = IO::Buffer.for(string).dup slice = buffer.slice # => # #<IO::Buffer 0x0000000108338e68+4 SLICE> # 0x00000000 74 65 73 74 test buffer.slice(2) # => # #<IO::Buffer 0x0000000108338e6a+2 SLICE> # 0x00000000 73 74 st slice = buffer.slice(1, 2) # => # #<IO::Buffer 0x00007fc3d34ebc49+2 SLICE> # 0x00000000 65 73 es # Put "o" into 0s position of the slice slice.set_string('o', 0) slice # => # #<IO::Buffer 0x00007fc3d34ebc49+2 SLICE> # 0x00000000 6f 73 os # it is also visible at position 1 of the original buffer buffer # => # #<IO::Buffer 0x00007fc3d31e2d80+4 INTERNAL> # 0x00000000 74 6f 73 74 tost
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 805
def to_s: () -> String
Short representation of the buffer. It includes the address, size and symbolic flags. This format is subject to change.
puts IO::Buffer.new(4) # uses to_s internally # #<IO::Buffer 0x000055769f41b1a0+4 INTERNAL>
() → Buffer
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 826
def transfer: () -> Buffer
Transfers ownership of the underlying memory to a new buffer, causing the current buffer to become uninitialized.
buffer = IO::Buffer.new('test') other = buffer.transfer other # => # #<IO::Buffer 0x00007f136a15f7b0+4 SLICE> # 0x00000000 74 65 73 74 test buffer # => # #<IO::Buffer 0x0000000000000000+0 NULL> buffer.null? # => true
() → bool
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 837
def valid?: () -> bool
Returns whether the buffer buffer is accessible.
A buffer becomes invalid if it is a slice of another buffer (or string) which has been freed or re-allocated at a different address.
(untyped, untyped) → untyped
Source
# File vendor/bundle/ruby/4.0.0/gems/rbs-4.0.3/core/io/buffer.rbs, line 859
def write: (untyped, untyped) -> untyped
Write at least length bytes from the buffer starting at offset, into the io. If an error occurs, return -errno.
If length is not given or nil, it defaults to the size of the buffer minus the offset, i.e. the entire buffer.
If length is zero, exactly one write operation will occur.
If offset is not given, it defaults to zero, i.e. the beginning of the buffer.
out = File.open('output.txt', 'wb') IO::Buffer.for('1234567').write(out, 3)
This leads to 123 being written into output.txt