Class: Prism::LibRubyParser::PrismBuffer
- Inherits:
-
Object
- Object
- Prism::LibRubyParser::PrismBuffer
- Defined in:
- lib/prism/ffi.rb
Overview
This object represents a pm_buffer_t. We only use it as an opaque pointer, so it doesn’t need to know the fields of pm_buffer_t.
Constant Summary collapse
- SIZEOF =
:nodoc:
LibRubyParser.pm_buffer_sizeof
Instance Attribute Summary collapse
-
#pointer ⇒ Object
readonly
Returns the value of attribute pointer.
Class Method Summary collapse
-
.with ⇒ Object
Initialize a new buffer and yield it to the block.
Instance Method Summary collapse
-
#initialize(pointer) ⇒ PrismBuffer
constructor
A new instance of PrismBuffer.
- #length ⇒ Object
- #read ⇒ Object
- #value ⇒ Object
Constructor Details
#initialize(pointer) ⇒ PrismBuffer
Returns a new instance of PrismBuffer.
116 117 118 |
# File 'lib/prism/ffi.rb', line 116 def initialize(pointer) @pointer = pointer end |
Instance Attribute Details
#pointer ⇒ Object (readonly)
Returns the value of attribute pointer.
114 115 116 |
# File 'lib/prism/ffi.rb', line 114 def pointer @pointer end |
Class Method Details
.with ⇒ Object
Initialize a new buffer and yield it to the block. The buffer will be automatically freed when the block returns.
134 135 136 137 138 139 140 141 |
# File 'lib/prism/ffi.rb', line 134 def self.with FFI::MemoryPointer.new(SIZEOF) do |pointer| raise unless LibRubyParser.pm_buffer_init(pointer) return yield new(pointer) ensure LibRubyParser.pm_buffer_free(pointer) end end |
Instance Method Details
#length ⇒ Object
124 125 126 |
# File 'lib/prism/ffi.rb', line 124 def length LibRubyParser.pm_buffer_length(pointer) end |
#read ⇒ Object
128 129 130 |
# File 'lib/prism/ffi.rb', line 128 def read value.read_string(length) end |
#value ⇒ Object
120 121 122 |
# File 'lib/prism/ffi.rb', line 120 def value LibRubyParser.pm_buffer_value(pointer) end |