# # This file is part of ruby-ffi. # # This code is free software: you can redistribute it and/or modify it under # the terms of the GNU Lesser General Public License version 3 only, as # published by the Free Software Foundation. # # This code is distributed in the hope that it will be useful, but WITHOUT # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or # FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License # version 3 for more details. # # You should have received a copy of the GNU Lesser General Public License # version 3 along with this work. If not, see . # require File.expand_path(File.join(File.dirname(__FILE__), "spec_helper")) describe "Custom type definitions" do it "attach_function with custom typedef" do module CustomTypedef extend FFI::Library ffi_lib TestLibrary::PATH typedef :uint, :fubar_t attach_function :ret_u32, [ :fubar_t ], :fubar_t end CustomTypedef.ret_u32(0x12345678).should eq 0x12345678 end it "variadic invoker with custom typedef" do module VariadicCustomTypedef extend FFI::Library ffi_lib TestLibrary::PATH typedef :uint, :fubar_t attach_function :pack_varargs, [ :buffer_out, :string, :varargs ], :void end buf = FFI::Buffer.new :uint, 10 VariadicCustomTypedef.pack_varargs(buf, "i", :fubar_t, 0x12345678) buf.get_int64(0).should eq 0x12345678 end it "Callback with custom typedef parameter" do module CallbackCustomTypedef extend FFI::Library ffi_lib TestLibrary::PATH typedef :uint, :fubar3_t callback :cbIrV, [ :fubar3_t ], :void attach_function :testCallbackU32rV, :testClosureIrV, [ :cbIrV, :fubar3_t ], :void end i = 0 CallbackCustomTypedef.testCallbackU32rV(0xdeadbeef) { |v| i = v } i.should eq 0xdeadbeef end module StructCustomTypedef extend FFI::Library ffi_lib TestLibrary::PATH typedef :uint, :fubar3_t class S < FFI::Struct layout :a, :fubar3_t end end it "Struct with custom typedef field" do s = StructCustomTypedef::S.new s[:a] = 0x12345678 s.pointer.get_uint(0).should eq 0x12345678 end it "attach_function after a typedef should not reject normal types" do lambda do Module.new do extend FFI::Library # enum() will insert a custom typedef called :foo for the enum enum :foo, [ :a, :b ] typedef :int, :bar ffi_lib TestLibrary::PATH attach_function :ptr_ret_int32_t, [ :string, :foo ], :bar end end.should_not raise_error end it "detects the correct type for size_t" do lambda do Module.new do extend FFI::Library ffi_lib "c" # read(2) is a standard UNIX function attach_function :read, [:int, :pointer, :size_t], :ssize_t end end.should_not raise_error end end