alinta-ffi 1.9.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (195) hide show
  1. checksums.yaml +7 -0
  2. data/COPYING +49 -0
  3. data/LICENSE +24 -0
  4. data/README.md +112 -0
  5. data/Rakefile +243 -0
  6. data/ext/ffi_c/AbstractMemory.c +1109 -0
  7. data/ext/ffi_c/AbstractMemory.h +175 -0
  8. data/ext/ffi_c/ArrayType.c +162 -0
  9. data/ext/ffi_c/ArrayType.h +59 -0
  10. data/ext/ffi_c/Buffer.c +365 -0
  11. data/ext/ffi_c/Call.c +517 -0
  12. data/ext/ffi_c/Call.h +110 -0
  13. data/ext/ffi_c/ClosurePool.c +283 -0
  14. data/ext/ffi_c/ClosurePool.h +57 -0
  15. data/ext/ffi_c/DataConverter.c +91 -0
  16. data/ext/ffi_c/DynamicLibrary.c +339 -0
  17. data/ext/ffi_c/DynamicLibrary.h +98 -0
  18. data/ext/ffi_c/Function.c +998 -0
  19. data/ext/ffi_c/Function.h +87 -0
  20. data/ext/ffi_c/FunctionInfo.c +271 -0
  21. data/ext/ffi_c/LastError.c +184 -0
  22. data/ext/ffi_c/LastError.h +47 -0
  23. data/ext/ffi_c/LongDouble.c +63 -0
  24. data/ext/ffi_c/LongDouble.h +51 -0
  25. data/ext/ffi_c/MappedType.c +168 -0
  26. data/ext/ffi_c/MappedType.h +59 -0
  27. data/ext/ffi_c/MemoryPointer.c +197 -0
  28. data/ext/ffi_c/MemoryPointer.h +53 -0
  29. data/ext/ffi_c/MethodHandle.c +358 -0
  30. data/ext/ffi_c/MethodHandle.h +55 -0
  31. data/ext/ffi_c/Platform.c +129 -0
  32. data/ext/ffi_c/Platform.h +45 -0
  33. data/ext/ffi_c/Pointer.c +508 -0
  34. data/ext/ffi_c/Pointer.h +63 -0
  35. data/ext/ffi_c/Struct.c +829 -0
  36. data/ext/ffi_c/Struct.h +106 -0
  37. data/ext/ffi_c/StructByReference.c +190 -0
  38. data/ext/ffi_c/StructByReference.h +50 -0
  39. data/ext/ffi_c/StructByValue.c +150 -0
  40. data/ext/ffi_c/StructByValue.h +55 -0
  41. data/ext/ffi_c/StructLayout.c +698 -0
  42. data/ext/ffi_c/Thread.c +352 -0
  43. data/ext/ffi_c/Thread.h +95 -0
  44. data/ext/ffi_c/Type.c +397 -0
  45. data/ext/ffi_c/Type.h +62 -0
  46. data/ext/ffi_c/Types.c +139 -0
  47. data/ext/ffi_c/Types.h +89 -0
  48. data/ext/ffi_c/Variadic.c +304 -0
  49. data/ext/ffi_c/compat.h +78 -0
  50. data/ext/ffi_c/extconf.rb +71 -0
  51. data/ext/ffi_c/ffi.c +98 -0
  52. data/ext/ffi_c/libffi.bsd.mk +40 -0
  53. data/ext/ffi_c/libffi.darwin.mk +105 -0
  54. data/ext/ffi_c/libffi.gnu.mk +32 -0
  55. data/ext/ffi_c/libffi.mk +18 -0
  56. data/ext/ffi_c/libffi.vc.mk +26 -0
  57. data/ext/ffi_c/libffi.vc64.mk +26 -0
  58. data/ext/ffi_c/rbffi.h +57 -0
  59. data/ext/ffi_c/rbffi_endian.h +59 -0
  60. data/ext/ffi_c/win32/stdbool.h +8 -0
  61. data/ext/ffi_c/win32/stdint.h +201 -0
  62. data/ffi.gemspec +23 -0
  63. data/gen/Rakefile +30 -0
  64. data/lib/ffi.rb +20 -0
  65. data/lib/ffi/autopointer.rb +203 -0
  66. data/lib/ffi/buffer.rb +4 -0
  67. data/lib/ffi/callback.rb +4 -0
  68. data/lib/ffi/enum.rb +296 -0
  69. data/lib/ffi/errno.rb +43 -0
  70. data/lib/ffi/ffi.rb +44 -0
  71. data/lib/ffi/io.rb +62 -0
  72. data/lib/ffi/library.rb +590 -0
  73. data/lib/ffi/managedstruct.rb +84 -0
  74. data/lib/ffi/memorypointer.rb +1 -0
  75. data/lib/ffi/platform.rb +164 -0
  76. data/lib/ffi/platform/aarch64-linux/types.conf +104 -0
  77. data/lib/ffi/platform/arm-linux/types.conf +104 -0
  78. data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
  79. data/lib/ffi/platform/i386-darwin/types.conf +100 -0
  80. data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
  81. data/lib/ffi/platform/i386-gnu/types.conf +107 -0
  82. data/lib/ffi/platform/i386-linux/types.conf +103 -0
  83. data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
  84. data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
  85. data/lib/ffi/platform/i386-solaris/types.conf +122 -0
  86. data/lib/ffi/platform/i386-windows/types.conf +105 -0
  87. data/lib/ffi/platform/ia64-linux/types.conf +104 -0
  88. data/lib/ffi/platform/mips-linux/types.conf +102 -0
  89. data/lib/ffi/platform/mips64el-linux/types.conf +104 -0
  90. data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
  91. data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
  92. data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
  93. data/lib/ffi/platform/powerpc-linux/types.conf +100 -0
  94. data/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
  95. data/lib/ffi/platform/s390-linux/types.conf +102 -0
  96. data/lib/ffi/platform/s390x-linux/types.conf +102 -0
  97. data/lib/ffi/platform/sparc-linux/types.conf +102 -0
  98. data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
  99. data/lib/ffi/platform/sparc64-linux/types.conf +102 -0
  100. data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
  101. data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
  102. data/lib/ffi/platform/x86_64-darwin/types.conf +126 -0
  103. data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
  104. data/lib/ffi/platform/x86_64-linux/types.conf +102 -0
  105. data/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
  106. data/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
  107. data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
  108. data/lib/ffi/platform/x86_64-windows/types.conf +120 -0
  109. data/lib/ffi/pointer.rb +161 -0
  110. data/lib/ffi/struct.rb +371 -0
  111. data/lib/ffi/struct_layout_builder.rb +227 -0
  112. data/lib/ffi/tools/const_generator.rb +229 -0
  113. data/lib/ffi/tools/generator.rb +60 -0
  114. data/lib/ffi/tools/generator_task.rb +36 -0
  115. data/lib/ffi/tools/struct_generator.rb +194 -0
  116. data/lib/ffi/tools/types_generator.rb +134 -0
  117. data/lib/ffi/types.rb +194 -0
  118. data/lib/ffi/union.rb +43 -0
  119. data/lib/ffi/variadic.rb +78 -0
  120. data/lib/ffi/version.rb +4 -0
  121. data/libtest/Benchmark.c +52 -0
  122. data/libtest/BoolTest.c +34 -0
  123. data/libtest/BufferTest.c +31 -0
  124. data/libtest/ClosureTest.c +205 -0
  125. data/libtest/EnumTest.c +51 -0
  126. data/libtest/FunctionTest.c +70 -0
  127. data/libtest/GNUmakefile +149 -0
  128. data/libtest/GlobalVariable.c +62 -0
  129. data/libtest/LastErrorTest.c +21 -0
  130. data/libtest/NumberTest.c +132 -0
  131. data/libtest/PointerTest.c +63 -0
  132. data/libtest/ReferenceTest.c +23 -0
  133. data/libtest/StringTest.c +34 -0
  134. data/libtest/StructTest.c +243 -0
  135. data/libtest/UnionTest.c +43 -0
  136. data/libtest/VariadicTest.c +99 -0
  137. data/spec/ffi/LICENSE.SPECS +22 -0
  138. data/spec/ffi/async_callback_spec.rb +35 -0
  139. data/spec/ffi/bitmask_spec.rb +575 -0
  140. data/spec/ffi/bool_spec.rb +32 -0
  141. data/spec/ffi/buffer_spec.rb +279 -0
  142. data/spec/ffi/callback_spec.rb +773 -0
  143. data/spec/ffi/custom_param_type.rb +37 -0
  144. data/spec/ffi/custom_type_spec.rb +74 -0
  145. data/spec/ffi/dup_spec.rb +52 -0
  146. data/spec/ffi/enum_spec.rb +423 -0
  147. data/spec/ffi/errno_spec.rb +20 -0
  148. data/spec/ffi/ffi_spec.rb +28 -0
  149. data/spec/ffi/fixtures/Benchmark.c +52 -0
  150. data/spec/ffi/fixtures/BitmaskTest.c +51 -0
  151. data/spec/ffi/fixtures/BoolTest.c +34 -0
  152. data/spec/ffi/fixtures/BufferTest.c +31 -0
  153. data/spec/ffi/fixtures/ClosureTest.c +205 -0
  154. data/spec/ffi/fixtures/EnumTest.c +51 -0
  155. data/spec/ffi/fixtures/FunctionTest.c +142 -0
  156. data/spec/ffi/fixtures/GNUmakefile +149 -0
  157. data/spec/ffi/fixtures/GlobalVariable.c +62 -0
  158. data/spec/ffi/fixtures/LastErrorTest.c +21 -0
  159. data/spec/ffi/fixtures/NumberTest.c +132 -0
  160. data/spec/ffi/fixtures/PipeHelper.h +21 -0
  161. data/spec/ffi/fixtures/PipeHelperPosix.c +41 -0
  162. data/spec/ffi/fixtures/PipeHelperWindows.c +72 -0
  163. data/spec/ffi/fixtures/PointerTest.c +63 -0
  164. data/spec/ffi/fixtures/ReferenceTest.c +23 -0
  165. data/spec/ffi/fixtures/StringTest.c +34 -0
  166. data/spec/ffi/fixtures/StructTest.c +243 -0
  167. data/spec/ffi/fixtures/UnionTest.c +43 -0
  168. data/spec/ffi/fixtures/VariadicTest.c +99 -0
  169. data/spec/ffi/fixtures/classes.rb +438 -0
  170. data/spec/ffi/function_spec.rb +97 -0
  171. data/spec/ffi/io_spec.rb +16 -0
  172. data/spec/ffi/library_spec.rb +286 -0
  173. data/spec/ffi/long_double.rb +30 -0
  174. data/spec/ffi/managed_struct_spec.rb +68 -0
  175. data/spec/ffi/memorypointer_spec.rb +78 -0
  176. data/spec/ffi/number_spec.rb +247 -0
  177. data/spec/ffi/platform_spec.rb +114 -0
  178. data/spec/ffi/pointer_spec.rb +285 -0
  179. data/spec/ffi/rbx/attach_function_spec.rb +34 -0
  180. data/spec/ffi/rbx/memory_pointer_spec.rb +198 -0
  181. data/spec/ffi/rbx/spec_helper.rb +6 -0
  182. data/spec/ffi/rbx/struct_spec.rb +18 -0
  183. data/spec/ffi/spec_helper.rb +93 -0
  184. data/spec/ffi/string_spec.rb +118 -0
  185. data/spec/ffi/strptr_spec.rb +50 -0
  186. data/spec/ffi/struct_by_ref_spec.rb +43 -0
  187. data/spec/ffi/struct_callback_spec.rb +69 -0
  188. data/spec/ffi/struct_initialize_spec.rb +35 -0
  189. data/spec/ffi/struct_packed_spec.rb +50 -0
  190. data/spec/ffi/struct_spec.rb +882 -0
  191. data/spec/ffi/typedef_spec.rb +91 -0
  192. data/spec/ffi/union_spec.rb +67 -0
  193. data/spec/ffi/variadic_spec.rb +132 -0
  194. data/spec/spec.opts +4 -0
  195. metadata +309 -0
@@ -0,0 +1,229 @@
1
+ require 'tempfile'
2
+ require 'open3'
3
+
4
+ module FFI
5
+
6
+ # ConstGenerator turns C constants into ruby values.
7
+ #
8
+ # @example a simple example for stdio
9
+ # cg = FFI::ConstGenerator.new('stdio') do |gen|
10
+ # gen.const(:SEEK_SET)
11
+ # gen.const('SEEK_CUR')
12
+ # gen.const('seek_end') # this constant does not exist
13
+ # end # #calculate called automatically at the end of the block
14
+ #
15
+ # cg['SEEK_SET'] # => 0
16
+ # cg['SEEK_CUR'] # => 1
17
+ # cg['seek_end'] # => nil
18
+ # cg.to_ruby # => "SEEK_SET = 0\nSEEK_CUR = 1\n# seek_end not available"
19
+ class ConstGenerator
20
+ @options = {}
21
+ attr_reader :constants
22
+
23
+ # Creates a new constant generator that uses +prefix+ as a name, and an
24
+ # options hash.
25
+ #
26
+ # The only option is +:required+, which if set to +true+ raises an error if a
27
+ # constant you have requested was not found.
28
+ #
29
+ # @param [#to_s] prefix
30
+ # @param [Hash] options
31
+ # @return
32
+ # @option options [Boolean] :required
33
+ # @overload initialize(prefix, options)
34
+ # @overload initialize(prefix, options) { |gen| ... }
35
+ # @yieldparam [ConstGenerator] gen new generator is passed to the block
36
+ # When passed a block, {#calculate} is automatically called at the end of
37
+ # the block, otherwise you must call it yourself.
38
+ def initialize(prefix = nil, options = {})
39
+ @includes = ['stdio.h', 'stddef.h']
40
+ @constants = {}
41
+ @prefix = prefix
42
+
43
+ @required = options[:required]
44
+ @options = options
45
+
46
+ if block_given? then
47
+ yield self
48
+ calculate self.class.options.merge(options)
49
+ end
50
+ end
51
+ # Set class options
52
+ # These options are merged with {#initialize} options when it is called with a block.
53
+ # @param [Hash] options
54
+ # @return [Hash] class options
55
+ def self.options=(options)
56
+ @options = options
57
+ end
58
+ # Get class options.
59
+ # @return [Hash] class options
60
+ def self.options
61
+ @options
62
+ end
63
+ # @param [String] name
64
+ # @return constant value (converted if a +converter+ was defined).
65
+ # Access a constant by name.
66
+ def [](name)
67
+ @constants[name].converted_value
68
+ end
69
+
70
+ # Request the value for C constant +name+.
71
+ #
72
+ # @param [#to_s] name C constant name
73
+ # @param [String] format a printf format string to print the value out
74
+ # @param [String] cast a C cast for the value
75
+ # @param ruby_name alternate ruby name for {#to_ruby}
76
+ #
77
+ # @overload const(name, format=nil, cast='', ruby_name=nil, converter=nil)
78
+ # +converter+ is a Method or a Proc.
79
+ # @param [#call] converter convert the value from a string to the appropriate
80
+ # type for {#to_ruby}.
81
+ # @overload const(name, format=nil, cast='', ruby_name=nil) { |value| ... }
82
+ # Use a converter block. This block convert the value from a string to the
83
+ # appropriate type for {#to_ruby}.
84
+ # @yieldparam value constant value
85
+ def const(name, format = nil, cast = '', ruby_name = nil, converter = nil,
86
+ &converter_proc)
87
+ format ||= '%d'
88
+ cast ||= ''
89
+
90
+ if converter_proc and converter then
91
+ raise ArgumentError, "Supply only converter or converter block"
92
+ end
93
+
94
+ converter = converter_proc if converter.nil?
95
+
96
+ const = Constant.new name, format, cast, ruby_name, converter
97
+ @constants[name.to_s] = const
98
+ return const
99
+ end
100
+
101
+ # Calculate constants values.
102
+ # @param [Hash] options
103
+ # @option options [String] :cppflags flags for C compiler
104
+ # @return [nil]
105
+ # @raise if a constant is missing and +:required+ was set to +true+ (see {#initialize})
106
+ def calculate(options = {})
107
+ binary = File.join Dir.tmpdir, "rb_const_gen_bin_#{Process.pid}"
108
+
109
+ Tempfile.open("#{@prefix}.const_generator") do |f|
110
+ @includes.each do |inc|
111
+ f.puts "#include <#{inc}>"
112
+ end
113
+ f.puts "\nint main(int argc, char **argv)\n{"
114
+
115
+ @constants.each_value do |const|
116
+ f.puts <<-EOF
117
+ #ifdef #{const.name}
118
+ printf("#{const.name} #{const.format}\\n", #{const.cast}#{const.name});
119
+ #endif
120
+ EOF
121
+ end
122
+
123
+ f.puts "\n\treturn 0;\n}"
124
+ f.flush
125
+
126
+ output = `gcc #{options[:cppflags]} -D_DARWIN_USE_64_BIT_INODE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -x c -Wall -Werror #{f.path} -o #{binary} 2>&1`
127
+
128
+ unless $?.success? then
129
+ output = output.split("\n").map { |l| "\t#{l}" }.join "\n"
130
+ raise "Compilation error generating constants #{@prefix}:\n#{output}"
131
+ end
132
+ end
133
+
134
+ output = `#{binary}`
135
+ File.unlink(binary + (FFI::Platform.windows? ? ".exe" : ""))
136
+ output.each_line do |line|
137
+ line =~ /^(\S+)\s(.*)$/
138
+ const = @constants[$1]
139
+ const.value = $2
140
+ end
141
+
142
+ missing_constants = @constants.select do |name, constant|
143
+ constant.value.nil?
144
+ end.map { |name,| name }
145
+
146
+ if @required and not missing_constants.empty? then
147
+ raise "Missing required constants for #{@prefix}: #{missing_constants.join ', '}"
148
+ end
149
+ end
150
+
151
+ # Dump constants to +io+.
152
+ # @param [#puts] io
153
+ # @return [nil]
154
+ def dump_constants(io)
155
+ @constants.each do |name, constant|
156
+ name = [@prefix, name].join '.' if @prefix
157
+ io.puts "#{name} = #{constant.converted_value}"
158
+ end
159
+ end
160
+
161
+ # Outputs values for discovered constants. If the constant's value was
162
+ # not discovered it is not omitted.
163
+ # @return [String]
164
+ def to_ruby
165
+ @constants.sort_by { |name,| name }.map do |name, constant|
166
+ if constant.value.nil? then
167
+ "# #{name} not available"
168
+ else
169
+ constant.to_ruby
170
+ end
171
+ end.join "\n"
172
+ end
173
+
174
+ # Add additional C include file(s) to calculate constants from.
175
+ # @note +stdio.h+ and +stddef.h+ automatically included
176
+ # @param [List<String>, Array<String>] i include file(s)
177
+ # @return [Array<String>] array of include files
178
+ def include(*i)
179
+ @includes |= i.flatten
180
+ end
181
+
182
+ end
183
+
184
+ # This class hold constants for {ConstGenerator}
185
+ class ConstGenerator::Constant
186
+
187
+ attr_reader :name, :format, :cast
188
+ attr_accessor :value
189
+
190
+ # @param [#to_s] name
191
+ # @param [String] format a printf format string to print the value out
192
+ # @param [String] cast a C cast for the value
193
+ # @param ruby_name alternate ruby name for {#to_ruby}
194
+ # @param [#call] converter convert the value from a string to the appropriate
195
+ # type for {#to_ruby}.
196
+ def initialize(name, format, cast, ruby_name = nil, converter=nil)
197
+ @name = name
198
+ @format = format
199
+ @cast = cast
200
+ @ruby_name = ruby_name
201
+ @converter = converter
202
+ @value = nil
203
+ end
204
+
205
+ # Return constant value (converted if a +converter+ was defined).
206
+ # @return constant value.
207
+ def converted_value
208
+ if @converter
209
+ @converter.call(@value)
210
+ else
211
+ @value
212
+ end
213
+ end
214
+
215
+ # get constant ruby name
216
+ # @return [String]
217
+ def ruby_name
218
+ @ruby_name || @name
219
+ end
220
+
221
+ # Get an evaluable string from constant.
222
+ # @return [String]
223
+ def to_ruby
224
+ "#{ruby_name} = #{converted_value}"
225
+ end
226
+
227
+ end
228
+
229
+ end
@@ -0,0 +1,60 @@
1
+ module FFI
2
+
3
+ # @private
4
+ class Generator
5
+
6
+ def initialize(ffi_name, rb_name, options = {})
7
+ @ffi_name = ffi_name
8
+ @rb_name = rb_name
9
+ @options = options
10
+ @name = File.basename rb_name, '.rb'
11
+
12
+ file = File.read @ffi_name
13
+
14
+ new_file = file.gsub(/^( *)@@@(.*?)@@@/m) do
15
+ @constants = []
16
+ @structs = []
17
+
18
+ indent = $1
19
+ original_lines = $2.count "\n"
20
+
21
+ instance_eval $2, @ffi_name, $`.count("\n")
22
+
23
+ new_lines = []
24
+ @constants.each { |c| new_lines << c.to_ruby }
25
+ @structs.each { |s| new_lines << s.generate_layout }
26
+
27
+ new_lines = new_lines.join("\n").split "\n" # expand multiline blocks
28
+ new_lines = new_lines.map { |line| indent + line }
29
+
30
+ padding = original_lines - new_lines.length
31
+ new_lines += [nil] * padding if padding >= 0
32
+
33
+ new_lines.join "\n"
34
+ end
35
+
36
+ open @rb_name, 'w' do |f|
37
+ f.puts "# This file is generated by rake. Do not edit."
38
+ f.puts
39
+ f.puts new_file
40
+ end
41
+ end
42
+
43
+ def constants(options = {}, &block)
44
+ @constants << FFI::ConstGenerator.new(@name, @options.merge(options), &block)
45
+ end
46
+
47
+ def struct(options = {}, &block)
48
+ @structs << FFI::StructGenerator.new(@name, @options.merge(options), &block)
49
+ end
50
+
51
+ ##
52
+ # Utility converter for constants
53
+
54
+ def to_s
55
+ proc { |obj| obj.to_s.inspect }
56
+ end
57
+
58
+ end
59
+ end
60
+
@@ -0,0 +1,36 @@
1
+ begin
2
+ require 'ffi/struct_generator'
3
+ require 'ffi/const_generator'
4
+ require 'ffi/generator'
5
+ rescue LoadError
6
+ # from Rakefile
7
+ require 'lib/ffi/struct_generator'
8
+ require 'lib/ffi/const_generator'
9
+ require 'lib/ffi/generator'
10
+ end
11
+
12
+ require 'rake'
13
+ require 'rake/tasklib'
14
+ require 'tempfile'
15
+
16
+ ##
17
+ # Rake task that calculates C structs for FFI::Struct.
18
+
19
+ # @private
20
+ class FFI::Generator::Task < Rake::TaskLib
21
+
22
+ def initialize(rb_names)
23
+ task :clean do rm_f rb_names end
24
+
25
+ rb_names.each do |rb_name|
26
+ ffi_name = "#{rb_name}.ffi"
27
+
28
+ file rb_name => ffi_name do |t|
29
+ puts "Generating #{rb_name}..." if Rake.application.options.trace
30
+
31
+ FFI::Generator.new ffi_name, rb_name
32
+ end
33
+ end
34
+ end
35
+
36
+ end
@@ -0,0 +1,194 @@
1
+ require 'tempfile'
2
+
3
+ module FFI
4
+
5
+ ##
6
+ # Generates an FFI Struct layout.
7
+ #
8
+ # Given the @@@ portion in:
9
+ #
10
+ # module Zlib::ZStream < FFI::Struct
11
+ # @@@
12
+ # name "struct z_stream_s"
13
+ # include "zlib.h"
14
+ #
15
+ # field :next_in, :pointer
16
+ # field :avail_in, :uint
17
+ # field :total_in, :ulong
18
+ #
19
+ # # ...
20
+ # @@@
21
+ # end
22
+ #
23
+ # StructGenerator will create the layout:
24
+ #
25
+ # layout :next_in, :pointer, 0,
26
+ # :avail_in, :uint, 4,
27
+ # :total_in, :ulong, 8,
28
+ # # ...
29
+ #
30
+ # StructGenerator does its best to pad the layout it produces to preserve
31
+ # line numbers. Place the struct definition as close to the top of the file
32
+ # for best results.
33
+
34
+ class StructGenerator
35
+ @options = {}
36
+ attr_accessor :size
37
+ attr_reader :fields
38
+
39
+ def initialize(name, options = {})
40
+ @name = name
41
+ @struct_name = nil
42
+ @includes = []
43
+ @fields = []
44
+ @found = false
45
+ @size = nil
46
+
47
+ if block_given? then
48
+ yield self
49
+ calculate self.class.options.merge(options)
50
+ end
51
+ end
52
+ def self.options=(options)
53
+ @options = options
54
+ end
55
+ def self.options
56
+ @options
57
+ end
58
+ def calculate(options = {})
59
+ binary = File.join Dir.tmpdir, "rb_struct_gen_bin_#{Process.pid}"
60
+
61
+ raise "struct name not set" if @struct_name.nil?
62
+
63
+ Tempfile.open("#{@name}.struct_generator") do |f|
64
+ f.puts "#include <stdio.h>"
65
+
66
+ @includes.each do |inc|
67
+ f.puts "#include <#{inc}>"
68
+ end
69
+
70
+ f.puts "#include <stddef.h>\n\n"
71
+ f.puts "int main(int argc, char **argv)\n{"
72
+ f.puts " #{@struct_name} s;"
73
+ f.puts %[ printf("sizeof(#{@struct_name}) %u\\n", (unsigned int) sizeof(#{@struct_name}));]
74
+
75
+ @fields.each do |field|
76
+ f.puts <<-EOF
77
+ printf("#{field.name} %u %u\\n", (unsigned int) offsetof(#{@struct_name}, #{field.name}),
78
+ (unsigned int) sizeof(s.#{field.name}));
79
+ EOF
80
+ end
81
+
82
+ f.puts "\n return 0;\n}"
83
+ f.flush
84
+
85
+ output = `gcc #{options[:cppflags]} #{options[:cflags]} -D_DARWIN_USE_64_BIT_INODE -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -x c -Wall -Werror #{f.path} -o #{binary} 2>&1`
86
+
87
+ unless $?.success? then
88
+ @found = false
89
+ output = output.split("\n").map { |l| "\t#{l}" }.join "\n"
90
+ raise "Compilation error generating struct #{@name} (#{@struct_name}):\n#{output}"
91
+ end
92
+ end
93
+
94
+ output = `#{binary}`.split "\n"
95
+ File.unlink(binary + (FFI::Platform.windows? ? ".exe" : ""))
96
+ sizeof = output.shift
97
+ unless @size
98
+ m = /\s*sizeof\([^)]+\) (\d+)/.match sizeof
99
+ @size = m[1]
100
+ end
101
+
102
+ line_no = 0
103
+ output.each do |line|
104
+ md = line.match(/.+ (\d+) (\d+)/)
105
+ @fields[line_no].offset = md[1].to_i
106
+ @fields[line_no].size = md[2].to_i
107
+
108
+ line_no += 1
109
+ end
110
+
111
+ @found = true
112
+ end
113
+
114
+ def field(name, type=nil)
115
+ field = Field.new(name, type)
116
+ @fields << field
117
+ return field
118
+ end
119
+
120
+ def found?
121
+ @found
122
+ end
123
+
124
+ def dump_config(io)
125
+ io.puts "rbx.platform.#{@name}.sizeof = #{@size}"
126
+
127
+ @fields.each { |field| io.puts field.to_config(@name) }
128
+ end
129
+
130
+ def generate_layout
131
+ buf = ""
132
+
133
+ @fields.each_with_index do |field, i|
134
+ if buf.empty?
135
+ buf << "layout :#{field.name}, :#{field.type}, #{field.offset}"
136
+ else
137
+ buf << " :#{field.name}, :#{field.type}, #{field.offset}"
138
+ end
139
+
140
+ if i < @fields.length - 1
141
+ buf << ",\n"
142
+ end
143
+ end
144
+
145
+ buf
146
+ end
147
+
148
+ def get_field(name)
149
+ @fields.find { |f| name == f.name }
150
+ end
151
+
152
+ def include(i)
153
+ @includes << i
154
+ end
155
+
156
+ def name(n)
157
+ @struct_name = n
158
+ end
159
+
160
+ end
161
+
162
+ ##
163
+ # A field in a Struct.
164
+
165
+ class StructGenerator::Field
166
+
167
+ attr_reader :name
168
+ attr_reader :type
169
+ attr_reader :offset
170
+ attr_accessor :size
171
+
172
+ def initialize(name, type)
173
+ @name = name
174
+ @type = type
175
+ @offset = nil
176
+ @size = nil
177
+ end
178
+
179
+ def offset=(o)
180
+ @offset = o
181
+ end
182
+
183
+ def to_config(name)
184
+ buf = []
185
+ buf << "rbx.platform.#{name}.#{@name}.offset = #{@offset}"
186
+ buf << "rbx.platform.#{name}.#{@name}.size = #{@size}"
187
+ buf << "rbx.platform.#{name}.#{@name}.type = #{@type}" if @type
188
+ buf
189
+ end
190
+
191
+ end
192
+
193
+ end
194
+