Class: FFI::Struct

Inherits:
Object
  • Object
show all
Defined in:
ext/ffi_c/Struct.c,
lib/ffi/struct.rb,
ext/ffi_c/Struct.c

Overview

A FFI::Struct means to mirror a C struct.

A Struct is defined as:

class MyStruct < FFI::Struct
  layout :value1, :int,
         :value2, :double
end

and is used as:

my_struct = MyStruct.new
my_struct[:value1] = 12

For more information, see github.com/ffi/ffi/wiki/Structs

Direct Known Subclasses

ManagedStruct, Union

Defined Under Namespace

Classes: InlineArray, ManagedStructConverter

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.alignmentFixnum

Returns Struct alignment.

Returns:

  • (Fixnum)

    Struct alignment



164
165
166
# File 'lib/ffi/struct.rb', line 164

def self.alignment
  @layout.alignment
end

.auto_ptrObject



225
226
227
# File 'lib/ffi/struct.rb', line 225

def self.auto_ptr
  @managed_type ||= Type::Mapped.new(ManagedStructConverter.new(self))
end

.by_ref(flags = :inout) ⇒ Object



203
204
205
# File 'lib/ffi/struct.rb', line 203

def self.by_ref(flags = :inout)
  self.ptr(flags)
end

.by_valueObject



199
200
201
# File 'lib/ffi/struct.rb', line 199

def self.by_value
  self.val
end

.inObject



183
184
185
# File 'lib/ffi/struct.rb', line 183

def self.in
  ptr(:in)
end

.layoutStructLayout .layout(*spec) ⇒ StructLayout

Overloads:

  • .layoutStructLayout

    Get struct layout.

    Returns:

  • .layout(*spec) ⇒ StructLayout
    Note:

    Creating a layout from a hash spec is supported only for Ruby 1.9.

    Create struct layout from spec.

    Examples:

    Creating a layout from an array spec

    class MyStruct < Struct
      layout :field1, :int,
             :field2, :pointer,
             :field3, :string
    end

    Creating a layout from an array spec with offset

    class MyStructWithOffset < Struct
      layout :field1, :int,
             :field2, :pointer, 6,  # set offset to 6 for this field
             :field3, :string
    end

    Creating a layout from a hash spec (Ruby 1.9 only)

    class MyStructFromHash < Struct
      layout :field1 => :int,
             :field2 => :pointer,
             :field3 => :string
    end

    Creating a layout with pointers to functions

    class MyFunctionTable < Struct
      layout :function1, callback([:int, :int], :int),
             :function2, callback([:pointer], :void),
             :field3, :string
    end

    Parameters:

    • spec (Array<Symbol, Integer>, Array(Hash))

    Returns:

Returns:



266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
# File 'lib/ffi/struct.rb', line 266

def layout(*spec)
  #raise RuntimeError, "struct layout already defined for #{self.inspect}" if defined?(@layout)
  return @layout if spec.size == 0

  builder = StructLayoutBuilder.new
  builder.union = self < Union
  builder.packed = @packed if defined?(@packed)
  builder.alignment = @min_alignment if defined?(@min_alignment)

  if spec[0].kind_of?(Hash)
    hash_layout(builder, spec)
  else
    array_layout(builder, spec)
  end
  builder.size = @size if defined?(@size) && @size > builder.size
  cspec = builder.build
  @layout = cspec unless self == Struct
  @size = cspec.size
  return cspec
end

.membersObject



169
170
171
# File 'lib/ffi/struct.rb', line 169

def self.members
  @layout.members
end

.offset_of(name) ⇒ Numeric

Get the offset of a field.

Returns:

  • (Numeric)


179
180
181
# File 'lib/ffi/struct.rb', line 179

def self.offset_of(name)
  @layout.offset_of(name)
end

.offsetsArray<Array(Symbol, Numeric)>

Get an array of tuples (field name, offset of the field).

Returns:

  • (Array<Array(Symbol, Numeric)>)

    Array<Array(Symbol, Numeric)>



174
175
176
# File 'lib/ffi/struct.rb', line 174

def self.offsets
  @layout.offsets
end

.outObject



187
188
189
# File 'lib/ffi/struct.rb', line 187

def self.out
  ptr(:out)
end

.ptr(flags = :inout) ⇒ Object



191
192
193
# File 'lib/ffi/struct.rb', line 191

def self.ptr(flags = :inout)
  @ref_data_type ||= Type::Mapped.new(StructByReference.new(self))
end

.sizeNumeric

Get struct size

Returns:

  • (Numeric)


151
152
153
# File 'lib/ffi/struct.rb', line 151

def self.size
  defined?(@layout) ? @layout.size : defined?(@size) ? @size : 0
end

.size=(size) ⇒ size

set struct size

Parameters:

  • size (Numeric)

Returns:

Raises:

  • (ArgumentError)


158
159
160
161
# File 'lib/ffi/struct.rb', line 158

def self.size=(size)
  raise ArgumentError, "Size already set" if defined?(@size) || defined?(@layout)
  @size = size
end

.valObject



195
196
197
# File 'lib/ffi/struct.rb', line 195

def self.val
  @val_data_type ||= StructByValue.new(self)
end

Instance Method Details

#alignFixnum

Returns Struct alignment.

Returns:

  • (Fixnum)

    Struct alignment



113
114
115
# File 'lib/ffi/struct.rb', line 113

def alignment
  self.class.alignment
end

#alignmentFixnum

Returns Struct alignment.

Returns:

  • (Fixnum)

    Struct alignment



110
111
112
# File 'lib/ffi/struct.rb', line 110

def alignment
  self.class.alignment
end

#clearself

Clear the struct content.

Returns:

  • (self)


138
139
140
141
# File 'lib/ffi/struct.rb', line 138

def clear
  pointer.clear
  self
end

#membersArray<Symbol>

Get list of field names.

Returns:

  • (Array<Symbol>)


121
122
123
# File 'lib/ffi/struct.rb', line 121

def members
  self.class.members
end

#offset_of(name) ⇒ Numeric

Get the offset of a field.

Returns:

  • (Numeric)


116
117
118
# File 'lib/ffi/struct.rb', line 116

def offset_of(name)
  self.class.offset_of(name)
end

#offsetsArray<Array(Symbol, Numeric)>

Get an array of tuples (field name, offset of the field).

Returns:

  • (Array<Array(Symbol, Numeric)>)

    Array<Array(Symbol, Numeric)>



132
133
134
# File 'lib/ffi/struct.rb', line 132

def offsets
  self.class.offsets
end

#sizeNumeric

Get struct size

Returns:

  • (Numeric)


105
106
107
# File 'lib/ffi/struct.rb', line 105

def size
  self.class.size
end

#to_ptrAbstractMemory

Get Pointer to struct content.

Returns:



145
146
147
# File 'lib/ffi/struct.rb', line 145

def to_ptr
  pointer
end

#valuesArray

Get array of values from Struct fields.

Returns:

  • (Array)


127
128
129
# File 'lib/ffi/struct.rb', line 127

def values
  members.map { |m| self[m] }
end