ffi 1.9.3-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
Potentially problematic release.
This version of ffi might be problematic. Click here for more details.
- data/COPYING +49 -0
- data/LICENSE +24 -0
- data/README.md +109 -0
- data/Rakefile +220 -0
- data/ext/ffi_c/AbstractMemory.c +1032 -0
- data/ext/ffi_c/AbstractMemory.h +175 -0
- data/ext/ffi_c/ArrayType.c +162 -0
- data/ext/ffi_c/ArrayType.h +59 -0
- data/ext/ffi_c/Buffer.c +365 -0
- data/ext/ffi_c/Call.c +465 -0
- data/ext/ffi_c/Call.h +93 -0
- data/ext/ffi_c/ClosurePool.c +283 -0
- data/ext/ffi_c/ClosurePool.h +57 -0
- data/ext/ffi_c/DataConverter.c +91 -0
- data/ext/ffi_c/DynamicLibrary.c +333 -0
- data/ext/ffi_c/DynamicLibrary.h +49 -0
- data/ext/ffi_c/Function.c +999 -0
- data/ext/ffi_c/Function.h +87 -0
- data/ext/ffi_c/FunctionInfo.c +271 -0
- data/ext/ffi_c/LastError.c +184 -0
- data/ext/ffi_c/LastError.h +47 -0
- data/ext/ffi_c/LongDouble.c +63 -0
- data/ext/ffi_c/LongDouble.h +51 -0
- data/ext/ffi_c/MappedType.c +168 -0
- data/ext/ffi_c/MappedType.h +59 -0
- data/ext/ffi_c/MemoryPointer.c +197 -0
- data/ext/ffi_c/MemoryPointer.h +53 -0
- data/ext/ffi_c/MethodHandle.c +360 -0
- data/ext/ffi_c/MethodHandle.h +55 -0
- data/ext/ffi_c/Platform.c +121 -0
- data/ext/ffi_c/Platform.h +45 -0
- data/ext/ffi_c/Pointer.c +508 -0
- data/ext/ffi_c/Pointer.h +63 -0
- data/ext/ffi_c/Struct.c +828 -0
- data/ext/ffi_c/Struct.h +106 -0
- data/ext/ffi_c/StructByReference.c +190 -0
- data/ext/ffi_c/StructByReference.h +50 -0
- data/ext/ffi_c/StructByValue.c +150 -0
- data/ext/ffi_c/StructByValue.h +55 -0
- data/ext/ffi_c/StructLayout.c +698 -0
- data/ext/ffi_c/Thread.c +352 -0
- data/ext/ffi_c/Thread.h +95 -0
- data/ext/ffi_c/Type.c +397 -0
- data/ext/ffi_c/Type.h +62 -0
- data/ext/ffi_c/Types.c +139 -0
- data/ext/ffi_c/Types.h +89 -0
- data/ext/ffi_c/Variadic.c +276 -0
- data/ext/ffi_c/compat.h +83 -0
- data/ext/ffi_c/extconf.rb +64 -0
- data/ext/ffi_c/ffi.c +98 -0
- data/ext/ffi_c/libffi.bsd.mk +34 -0
- data/ext/ffi_c/libffi.darwin.mk +95 -0
- data/ext/ffi_c/libffi.gnu.mk +31 -0
- data/ext/ffi_c/libffi.mk +13 -0
- data/ext/ffi_c/libffi.vc.mk +26 -0
- data/ext/ffi_c/libffi.vc64.mk +26 -0
- data/ext/ffi_c/libffi/ChangeLog +4600 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
- data/ext/ffi_c/libffi/ChangeLog.libgcj +40 -0
- data/ext/ffi_c/libffi/ChangeLog.v1 +764 -0
- data/ext/ffi_c/libffi/LICENSE +21 -0
- data/ext/ffi_c/libffi/Makefile.am +196 -0
- data/ext/ffi_c/libffi/Makefile.in +1820 -0
- data/ext/ffi_c/libffi/Makefile.vc +141 -0
- data/ext/ffi_c/libffi/Makefile.vc64 +141 -0
- data/ext/ffi_c/libffi/README +342 -0
- data/ext/ffi_c/libffi/acinclude.m4 +92 -0
- data/ext/ffi_c/libffi/aclocal.m4 +1873 -0
- data/ext/ffi_c/libffi/build-ios.sh +67 -0
- data/ext/ffi_c/libffi/compile +143 -0
- data/ext/ffi_c/libffi/config.guess +1501 -0
- data/ext/ffi_c/libffi/config.sub +1705 -0
- data/ext/ffi_c/libffi/configure +17191 -0
- data/ext/ffi_c/libffi/configure.ac +496 -0
- data/ext/ffi_c/libffi/configure.host +11 -0
- data/ext/ffi_c/libffi/depcomp +630 -0
- data/ext/ffi_c/libffi/doc/libffi.info +593 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +600 -0
- data/ext/ffi_c/libffi/doc/stamp-vti +4 -0
- data/ext/ffi_c/libffi/doc/version.texi +4 -0
- data/ext/ffi_c/libffi/fficonfig.h.in +199 -0
- data/ext/ffi_c/libffi/fficonfig.hw +57 -0
- data/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/ext/ffi_c/libffi/include/Makefile.in +487 -0
- data/ext/ffi_c/libffi/include/ffi.h.in +427 -0
- data/ext/ffi_c/libffi/include/ffi.h.vc +427 -0
- data/ext/ffi_c/libffi/include/ffi.h.vc64 +427 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +126 -0
- data/ext/ffi_c/libffi/install-sh +520 -0
- data/ext/ffi_c/libffi/libffi.pc.in +10 -0
- data/ext/ffi_c/libffi/libtool-version +29 -0
- data/ext/ffi_c/libffi/ltmain.sh +9636 -0
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +176 -0
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +195 -0
- data/ext/ffi_c/libffi/m4/ax_check_compiler_flags.m4 +76 -0
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +63 -0
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
- data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +300 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +215 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +79 -0
- data/ext/ffi_c/libffi/m4/libtool.m4 +7831 -0
- data/ext/ffi_c/libffi/m4/ltoptions.m4 +369 -0
- data/ext/ffi_c/libffi/m4/ltsugar.m4 +123 -0
- data/ext/ffi_c/libffi/m4/ltversion.m4 +23 -0
- data/ext/ffi_c/libffi/m4/lt~obsolete.m4 +98 -0
- data/ext/ffi_c/libffi/man/Makefile.am +8 -0
- data/ext/ffi_c/libffi/man/Makefile.in +466 -0
- data/ext/ffi_c/libffi/man/ffi.3 +31 -0
- data/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +66 -0
- data/ext/ffi_c/libffi/mdate-sh +201 -0
- data/ext/ffi_c/libffi/missing +376 -0
- data/ext/ffi_c/libffi/msvcc.sh +197 -0
- data/ext/ffi_c/libffi/src/alpha/ffi.c +284 -0
- data/ext/ffi_c/libffi/src/alpha/ffitarget.h +48 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +387 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +728 -0
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +65 -0
- data/ext/ffi_c/libffi/src/arm/gentramp.sh +118 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +497 -0
- data/ext/ffi_c/libffi/src/arm/trampoline.S +4450 -0
- data/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +50 -0
- data/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
- data/ext/ffi_c/libffi/src/closures.c +615 -0
- data/ext/ffi_c/libffi/src/cris/ffi.c +383 -0
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +51 -0
- data/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
- data/ext/ffi_c/libffi/src/debug.c +59 -0
- data/ext/ffi_c/libffi/src/dlmalloc.c +5161 -0
- data/ext/ffi_c/libffi/src/frv/eabi.S +128 -0
- data/ext/ffi_c/libffi/src/frv/ffi.c +292 -0
- data/ext/ffi_c/libffi/src/frv/ffitarget.h +57 -0
- data/ext/ffi_c/libffi/src/ia64/ffi.c +582 -0
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +50 -0
- data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
- data/ext/ffi_c/libffi/src/ia64/unix.S +560 -0
- data/ext/ffi_c/libffi/src/java_raw_api.c +356 -0
- data/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +48 -0
- data/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
- data/ext/ffi_c/libffi/src/m68k/ffi.c +288 -0
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m68k/sysv.S +270 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +1036 -0
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +242 -0
- data/ext/ffi_c/libffi/src/mips/n32.S +591 -0
- data/ext/ffi_c/libffi/src/mips/o32.S +381 -0
- data/ext/ffi_c/libffi/src/moxie/eabi.S +128 -0
- data/ext/ffi_c/libffi/src/moxie/ffi.c +276 -0
- data/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +78 -0
- data/ext/ffi_c/libffi/src/pa/hpux32.S +368 -0
- data/ext/ffi_c/libffi/src/pa/linux.S +357 -0
- data/ext/ffi_c/libffi/src/powerpc/aix.S +328 -0
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +445 -0
- data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +383 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +575 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +1448 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1359 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +139 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +187 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +236 -0
- data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +327 -0
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +219 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +177 -0
- data/ext/ffi_c/libffi/src/raw_api.c +254 -0
- data/ext/ffi_c/libffi/src/s390/ffi.c +780 -0
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +62 -0
- data/ext/ffi_c/libffi/src/s390/sysv.S +434 -0
- data/ext/ffi_c/libffi/src/sh/ffi.c +716 -0
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
- data/ext/ffi_c/libffi/src/sh64/ffi.c +468 -0
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
- data/ext/ffi_c/libffi/src/sparc/ffi.c +669 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +68 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +313 -0
- data/ext/ffi_c/libffi/src/sparc/v9.S +307 -0
- data/ext/ffi_c/libffi/src/types.c +77 -0
- data/ext/ffi_c/libffi/src/x86/darwin.S +444 -0
- data/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +644 -0
- data/ext/ffi_c/libffi/src/x86/ffi64.c +635 -0
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +121 -0
- data/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +468 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +426 -0
- data/ext/ffi_c/libffi/src/x86/win32.S +1065 -0
- data/ext/ffi_c/libffi/src/x86/win64.S +468 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +80 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.in +500 -0
- data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +300 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +350 -0
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +263 -0
- data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +32 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +81 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +81 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +82 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_loc_fn0.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +64 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +94 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +96 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +113 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +109 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +124 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +113 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +117 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +97 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +88 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split.c +134 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +117 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +95 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +92 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_dbls_struct.c +66 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double_va.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble.c +105 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_longdouble_va.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_pointer_stack.c +140 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +47 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_abi.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/err_bad_typedef.c +26 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +153 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +58 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +58 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +72 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +342 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +69 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_win32.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +53 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct.c +152 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +161 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +133 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +110 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +112 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +111 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +131 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/promotion.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/pyobjc-tc.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl.c +35 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl1.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_dbl2.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl.c +35 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl1.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl2.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_fl3.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ldl.c +34 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll.c +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sc.c +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_uc.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large.c +145 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_large2.c +148 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium.c +124 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/stret_medium2.c +125 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen_win32.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct6.c +64 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct7.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct8.c +80 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/ffitestcxx.h +96 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +35 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +124 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
- data/ext/ffi_c/libffi/texinfo.tex +7210 -0
- data/ext/ffi_c/rbffi.h +57 -0
- data/ext/ffi_c/rbffi_endian.h +59 -0
- data/ext/ffi_c/win32/stdbool.h +8 -0
- data/ext/ffi_c/win32/stdint.h +201 -0
- data/ffi.gemspec +22 -0
- data/gen/Rakefile +30 -0
- data/lib/ffi.rb +28 -0
- data/lib/ffi/autopointer.rb +194 -0
- data/lib/ffi/buffer.rb +4 -0
- data/lib/ffi/callback.rb +4 -0
- data/lib/ffi/enum.rb +173 -0
- data/lib/ffi/errno.rb +43 -0
- data/lib/ffi/ffi.rb +44 -0
- data/lib/ffi/io.rb +62 -0
- data/lib/ffi/library.rb +499 -0
- data/lib/ffi/managedstruct.rb +84 -0
- data/lib/ffi/memorypointer.rb +1 -0
- data/lib/ffi/platform.rb +148 -0
- data/lib/ffi/platform/arm-linux/types.conf +104 -0
- data/lib/ffi/platform/i386-cygwin/types.conf +3 -0
- data/lib/ffi/platform/i386-darwin/types.conf +100 -0
- data/lib/ffi/platform/i386-freebsd/types.conf +152 -0
- data/lib/ffi/platform/i386-gnu/types.conf +107 -0
- data/lib/ffi/platform/i386-linux/types.conf +103 -0
- data/lib/ffi/platform/i386-netbsd/types.conf +126 -0
- data/lib/ffi/platform/i386-openbsd/types.conf +128 -0
- data/lib/ffi/platform/i386-solaris/types.conf +122 -0
- data/lib/ffi/platform/i386-windows/types.conf +105 -0
- data/lib/ffi/platform/ia64-linux/types.conf +104 -0
- data/lib/ffi/platform/mips-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
- data/lib/ffi/platform/powerpc-aix/types.conf +180 -0
- data/lib/ffi/platform/powerpc-darwin/types.conf +100 -0
- data/lib/ffi/platform/powerpc-linux/types.conf +100 -0
- data/lib/ffi/platform/s390-linux/types.conf +102 -0
- data/lib/ffi/platform/s390x-linux/types.conf +102 -0
- data/lib/ffi/platform/sparc-linux/types.conf +102 -0
- data/lib/ffi/platform/sparc-solaris/types.conf +128 -0
- data/lib/ffi/platform/sparcv9-solaris/types.conf +128 -0
- data/lib/ffi/platform/x86_64-cygwin/types.conf +3 -0
- data/lib/ffi/platform/x86_64-darwin/types.conf +100 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +102 -0
- data/lib/ffi/platform/x86_64-netbsd/types.conf +126 -0
- data/lib/ffi/platform/x86_64-openbsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
- data/lib/ffi/platform/x86_64-windows/types.conf +27 -0
- data/lib/ffi/pointer.rb +134 -0
- data/lib/ffi/struct.rb +367 -0
- data/lib/ffi/struct_layout_builder.rb +222 -0
- data/lib/ffi/tools/const_generator.rb +229 -0
- data/lib/ffi/tools/generator.rb +60 -0
- data/lib/ffi/tools/generator_task.rb +36 -0
- data/lib/ffi/tools/struct_generator.rb +194 -0
- data/lib/ffi/tools/types_generator.rb +135 -0
- data/lib/ffi/types.rb +190 -0
- data/lib/ffi/union.rb +43 -0
- data/lib/ffi/variadic.rb +78 -0
- data/lib/ffi/version.rb +4 -0
- data/lib/ffi_c.so +0 -0
- data/libtest/Benchmark.c +52 -0
- data/libtest/BoolTest.c +34 -0
- data/libtest/BufferTest.c +31 -0
- data/libtest/ClosureTest.c +190 -0
- data/libtest/EnumTest.c +34 -0
- data/libtest/FunctionTest.c +58 -0
- data/libtest/GNUmakefile +149 -0
- data/libtest/GlobalVariable.c +62 -0
- data/libtest/LastErrorTest.c +21 -0
- data/libtest/NumberTest.c +132 -0
- data/libtest/PointerTest.c +63 -0
- data/libtest/ReferenceTest.c +23 -0
- data/libtest/StringTest.c +34 -0
- data/libtest/StructTest.c +243 -0
- data/libtest/UnionTest.c +43 -0
- data/libtest/VariadicTest.c +62 -0
- data/spec/ffi/async_callback_spec.rb +35 -0
- data/spec/ffi/bool_spec.rb +29 -0
- data/spec/ffi/buffer_spec.rb +251 -0
- data/spec/ffi/callback_spec.rb +667 -0
- data/spec/ffi/custom_param_type.rb +36 -0
- data/spec/ffi/custom_type_spec.rb +74 -0
- data/spec/ffi/dup_spec.rb +54 -0
- data/spec/ffi/enum_spec.rb +220 -0
- data/spec/ffi/errno_spec.rb +18 -0
- data/spec/ffi/ffi_spec.rb +29 -0
- data/spec/ffi/function_spec.rb +76 -0
- data/spec/ffi/library_spec.rb +216 -0
- data/spec/ffi/long_double.rb +30 -0
- data/spec/ffi/managed_struct_spec.rb +57 -0
- data/spec/ffi/number_spec.rb +236 -0
- data/spec/ffi/pointer_spec.rb +265 -0
- data/spec/ffi/rbx/attach_function_spec.rb +28 -0
- data/spec/ffi/rbx/memory_pointer_spec.rb +123 -0
- data/spec/ffi/rbx/spec_helper.rb +1 -0
- data/spec/ffi/rbx/struct_spec.rb +13 -0
- data/spec/ffi/spec_helper.rb +33 -0
- data/spec/ffi/string_spec.rb +108 -0
- data/spec/ffi/strptr_spec.rb +50 -0
- data/spec/ffi/struct_by_ref_spec.rb +43 -0
- data/spec/ffi/struct_callback_spec.rb +69 -0
- data/spec/ffi/struct_initialize_spec.rb +35 -0
- data/spec/ffi/struct_packed_spec.rb +51 -0
- data/spec/ffi/struct_spec.rb +748 -0
- data/spec/ffi/typedef_spec.rb +78 -0
- data/spec/ffi/union_spec.rb +65 -0
- data/spec/ffi/variadic_spec.rb +92 -0
- data/spec/spec.opts +4 -0
- metadata +562 -0
data/lib/ffi/struct.rb
ADDED
@@ -0,0 +1,367 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (C) 2008-2010 Wayne Meissner
|
3
|
+
# Copyright (C) 2008, 2009 Andrea Fazzi
|
4
|
+
# Copyright (C) 2008, 2009 Luc Heinrich
|
5
|
+
#
|
6
|
+
# This file is part of ruby-ffi.
|
7
|
+
#
|
8
|
+
# All rights reserved.
|
9
|
+
#
|
10
|
+
# Redistribution and use in source and binary forms, with or without
|
11
|
+
# modification, are permitted provided that the following conditions are met:
|
12
|
+
#
|
13
|
+
# * Redistributions of source code must retain the above copyright notice, this
|
14
|
+
# list of conditions and the following disclaimer.
|
15
|
+
# * Redistributions in binary form must reproduce the above copyright notice
|
16
|
+
# this list of conditions and the following disclaimer in the documentation
|
17
|
+
# and/or other materials provided with the distribution.
|
18
|
+
# * Neither the name of the Ruby FFI project nor the names of its contributors
|
19
|
+
# may be used to endorse or promote products derived from this software
|
20
|
+
# without specific prior written permission.
|
21
|
+
#
|
22
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
23
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
24
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
25
|
+
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
26
|
+
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
27
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
28
|
+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
29
|
+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
30
|
+
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
31
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
32
|
+
#
|
33
|
+
|
34
|
+
require 'ffi/platform'
|
35
|
+
require 'ffi/struct_layout_builder'
|
36
|
+
|
37
|
+
module FFI
|
38
|
+
|
39
|
+
class StructLayout
|
40
|
+
|
41
|
+
# @return [Array<Array(Symbol, Numeric)>
|
42
|
+
# Get an array of tuples (field name, offset of the field).
|
43
|
+
def offsets
|
44
|
+
members.map { |m| [ m, self[m].offset ] }
|
45
|
+
end
|
46
|
+
|
47
|
+
# @return [Numeric]
|
48
|
+
# Get the offset of a field.
|
49
|
+
def offset_of(field_name)
|
50
|
+
self[field_name].offset
|
51
|
+
end
|
52
|
+
|
53
|
+
# An enum {Field} in a {StructLayout}.
|
54
|
+
class Enum < Field
|
55
|
+
|
56
|
+
# @param [AbstractMemory] ptr pointer on a {Struct}
|
57
|
+
# @return [Object]
|
58
|
+
# Get an object of type {#type} from memory pointed by +ptr+.
|
59
|
+
def get(ptr)
|
60
|
+
type.find(ptr.get_int(offset))
|
61
|
+
end
|
62
|
+
|
63
|
+
# @param [AbstractMemory] ptr pointer on a {Struct}
|
64
|
+
# @param value
|
65
|
+
# @return [nil]
|
66
|
+
# Set +value+ into memory pointed by +ptr+.
|
67
|
+
def put(ptr, value)
|
68
|
+
ptr.put_int(offset, type.find(value))
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
72
|
+
|
73
|
+
class InnerStruct < Field
|
74
|
+
def get(ptr)
|
75
|
+
type.struct_class.new(ptr.slice(self.offset, self.size))
|
76
|
+
end
|
77
|
+
|
78
|
+
def put(ptr, value)
|
79
|
+
raise TypeError, "wrong value type (expected #{type.struct_class}" unless value.is_a?(type.struct_class)
|
80
|
+
ptr.slice(self.offset, self.size).__copy_from__(value.pointer, self.size)
|
81
|
+
end
|
82
|
+
end
|
83
|
+
|
84
|
+
class Mapped < Field
|
85
|
+
def initialize(name, offset, type, orig_field)
|
86
|
+
super(name, offset, type)
|
87
|
+
@orig_field = orig_field
|
88
|
+
end
|
89
|
+
|
90
|
+
def get(ptr)
|
91
|
+
type.from_native(@orig_field.get(ptr), nil)
|
92
|
+
end
|
93
|
+
|
94
|
+
def put(ptr, value)
|
95
|
+
@orig_field.put(ptr, type.to_native(value, nil))
|
96
|
+
end
|
97
|
+
end
|
98
|
+
end
|
99
|
+
|
100
|
+
|
101
|
+
class Struct
|
102
|
+
|
103
|
+
# Get struct size
|
104
|
+
# @return [Numeric]
|
105
|
+
def size
|
106
|
+
self.class.size
|
107
|
+
end
|
108
|
+
|
109
|
+
# @return [Fixnum] Struct alignment
|
110
|
+
def alignment
|
111
|
+
self.class.alignment
|
112
|
+
end
|
113
|
+
alias_method :align, :alignment
|
114
|
+
|
115
|
+
# (see FFI::StructLayout#offset_of)
|
116
|
+
def offset_of(name)
|
117
|
+
self.class.offset_of(name)
|
118
|
+
end
|
119
|
+
|
120
|
+
# (see FFI::StructLayout#members)
|
121
|
+
def members
|
122
|
+
self.class.members
|
123
|
+
end
|
124
|
+
|
125
|
+
# @return [Array]
|
126
|
+
# Get array of values from Struct fields.
|
127
|
+
def values
|
128
|
+
members.map { |m| self[m] }
|
129
|
+
end
|
130
|
+
|
131
|
+
# (see FFI::StructLayout#offsets)
|
132
|
+
def offsets
|
133
|
+
self.class.offsets
|
134
|
+
end
|
135
|
+
|
136
|
+
# Clear the struct content.
|
137
|
+
# @return [self]
|
138
|
+
def clear
|
139
|
+
pointer.clear
|
140
|
+
self
|
141
|
+
end
|
142
|
+
|
143
|
+
# Get {Pointer} to struct content.
|
144
|
+
# @return [AbstractMemory]
|
145
|
+
def to_ptr
|
146
|
+
pointer
|
147
|
+
end
|
148
|
+
|
149
|
+
# Get struct size
|
150
|
+
# @return [Numeric]
|
151
|
+
def self.size
|
152
|
+
defined?(@layout) ? @layout.size : defined?(@size) ? @size : 0
|
153
|
+
end
|
154
|
+
|
155
|
+
# set struct size
|
156
|
+
# @param [Numeric] size
|
157
|
+
# @return [size]
|
158
|
+
def self.size=(size)
|
159
|
+
raise ArgumentError, "Size already set" if defined?(@size) || defined?(@layout)
|
160
|
+
@size = size
|
161
|
+
end
|
162
|
+
|
163
|
+
# @return (see Struct#alignment)
|
164
|
+
def self.alignment
|
165
|
+
@layout.alignment
|
166
|
+
end
|
167
|
+
|
168
|
+
# (see FFI::Type#members)
|
169
|
+
def self.members
|
170
|
+
@layout.members
|
171
|
+
end
|
172
|
+
|
173
|
+
# (see FFI::StructLayout#offsets)
|
174
|
+
def self.offsets
|
175
|
+
@layout.offsets
|
176
|
+
end
|
177
|
+
|
178
|
+
# (see FFI::StructLayout#offset_of)
|
179
|
+
def self.offset_of(name)
|
180
|
+
@layout.offset_of(name)
|
181
|
+
end
|
182
|
+
|
183
|
+
def self.in
|
184
|
+
ptr(:in)
|
185
|
+
end
|
186
|
+
|
187
|
+
def self.out
|
188
|
+
ptr(:out)
|
189
|
+
end
|
190
|
+
|
191
|
+
def self.ptr(flags = :inout)
|
192
|
+
@ref_data_type ||= Type::Mapped.new(StructByReference.new(self))
|
193
|
+
end
|
194
|
+
|
195
|
+
def self.val
|
196
|
+
@val_data_type ||= StructByValue.new(self)
|
197
|
+
end
|
198
|
+
|
199
|
+
def self.by_value
|
200
|
+
self.val
|
201
|
+
end
|
202
|
+
|
203
|
+
def self.by_ref(flags = :inout)
|
204
|
+
self.ptr(flags)
|
205
|
+
end
|
206
|
+
|
207
|
+
class ManagedStructConverter < StructByReference
|
208
|
+
|
209
|
+
# @param [Struct] struct_class
|
210
|
+
def initialize(struct_class)
|
211
|
+
super(struct_class)
|
212
|
+
|
213
|
+
raise NoMethodError, "release() not implemented for class #{struct_class}" unless struct_class.respond_to? :release
|
214
|
+
@method = struct_class.method(:release)
|
215
|
+
end
|
216
|
+
|
217
|
+
# @param [Pointer] ptr
|
218
|
+
# @param [nil] ctx
|
219
|
+
# @return [Struct]
|
220
|
+
def from_native(ptr, ctx)
|
221
|
+
struct_class.new(AutoPointer.new(ptr, @method))
|
222
|
+
end
|
223
|
+
end
|
224
|
+
|
225
|
+
def self.auto_ptr
|
226
|
+
@managed_type ||= Type::Mapped.new(ManagedStructConverter.new(self))
|
227
|
+
end
|
228
|
+
|
229
|
+
|
230
|
+
class << self
|
231
|
+
public
|
232
|
+
|
233
|
+
# @return [StructLayout]
|
234
|
+
# @overload layout
|
235
|
+
# @return [StructLayout]
|
236
|
+
# Get struct layout.
|
237
|
+
# @overload layout(*spec)
|
238
|
+
# @param [Array<Symbol, Integer>,Array(Hash)] spec
|
239
|
+
# @return [StructLayout]
|
240
|
+
# Create struct layout from +spec+.
|
241
|
+
# @example Creating a layout from an array +spec+
|
242
|
+
# class MyStruct < Struct
|
243
|
+
# layout :field1, :int,
|
244
|
+
# :field2, :pointer,
|
245
|
+
# :field3, :string
|
246
|
+
# end
|
247
|
+
# @example Creating a layout from an array +spec+ with offset
|
248
|
+
# class MyStructWithOffset < Struct
|
249
|
+
# layout :field1, :int,
|
250
|
+
# :field2, :pointer, 6, # set offset to 6 for this field
|
251
|
+
# :field3, :string
|
252
|
+
# end
|
253
|
+
# @example Creating a layout from a hash +spec+ (Ruby 1.9 only)
|
254
|
+
# class MyStructFromHash < Struct
|
255
|
+
# layout :field1 => :int,
|
256
|
+
# :field2 => :pointer,
|
257
|
+
# :field3 => :string
|
258
|
+
# end
|
259
|
+
# @note Creating a layout from a hash +spec+ is supported only for Ruby 1.9.
|
260
|
+
def layout(*spec)
|
261
|
+
# raise RuntimeError, "struct layout already defined for #{self.inspect}" if defined?(@layout)
|
262
|
+
return @layout if spec.size == 0
|
263
|
+
|
264
|
+
builder = StructLayoutBuilder.new
|
265
|
+
builder.union = self < Union
|
266
|
+
builder.packed = @packed if defined?(@packed)
|
267
|
+
builder.alignment = @min_alignment if defined?(@min_alignment)
|
268
|
+
|
269
|
+
if spec[0].kind_of?(Hash)
|
270
|
+
hash_layout(builder, spec)
|
271
|
+
else
|
272
|
+
array_layout(builder, spec)
|
273
|
+
end
|
274
|
+
builder.size = @size if defined?(@size) && @size > builder.size
|
275
|
+
cspec = builder.build
|
276
|
+
@layout = cspec unless self == Struct
|
277
|
+
@size = cspec.size
|
278
|
+
return cspec
|
279
|
+
end
|
280
|
+
|
281
|
+
|
282
|
+
protected
|
283
|
+
|
284
|
+
def callback(params, ret)
|
285
|
+
mod = enclosing_module
|
286
|
+
FFI::CallbackInfo.new(find_type(ret, mod), params.map { |e| find_type(e, mod) })
|
287
|
+
end
|
288
|
+
|
289
|
+
def packed(packed = 1)
|
290
|
+
@packed = packed
|
291
|
+
end
|
292
|
+
alias :pack :packed
|
293
|
+
|
294
|
+
def aligned(alignment = 1)
|
295
|
+
@min_alignment = alignment
|
296
|
+
end
|
297
|
+
alias :align :aligned
|
298
|
+
|
299
|
+
def enclosing_module
|
300
|
+
begin
|
301
|
+
mod = self.name.split("::")[0..-2].inject(Object) { |obj, c| obj.const_get(c) }
|
302
|
+
(mod < FFI::Library || mod < FFI::Struct || mod.respond_to?(:find_type)) ? mod : nil
|
303
|
+
rescue Exception
|
304
|
+
nil
|
305
|
+
end
|
306
|
+
end
|
307
|
+
|
308
|
+
|
309
|
+
def find_field_type(type, mod = enclosing_module)
|
310
|
+
if type.kind_of?(Class) && type < Struct
|
311
|
+
FFI::Type::Struct.new(type)
|
312
|
+
|
313
|
+
elsif type.kind_of?(Class) && type < FFI::StructLayout::Field
|
314
|
+
type
|
315
|
+
|
316
|
+
elsif type.kind_of?(::Array)
|
317
|
+
FFI::Type::Array.new(find_field_type(type[0]), type[1])
|
318
|
+
|
319
|
+
else
|
320
|
+
find_type(type, mod)
|
321
|
+
end
|
322
|
+
end
|
323
|
+
|
324
|
+
def find_type(type, mod = enclosing_module)
|
325
|
+
if mod
|
326
|
+
mod.find_type(type)
|
327
|
+
end || FFI.find_type(type)
|
328
|
+
end
|
329
|
+
|
330
|
+
private
|
331
|
+
|
332
|
+
# @param [StructLayoutBuilder] builder
|
333
|
+
# @param [Hash] spec
|
334
|
+
# @return [builder]
|
335
|
+
# @raise if Ruby 1.8
|
336
|
+
# Add hash +spec+ to +builder+.
|
337
|
+
def hash_layout(builder, spec)
|
338
|
+
raise "Ruby version not supported" if RUBY_VERSION =~ /1.8.*/
|
339
|
+
spec[0].each do |name, type|
|
340
|
+
builder.add name, find_field_type(type), nil
|
341
|
+
end
|
342
|
+
end
|
343
|
+
|
344
|
+
# @param [StructLayoutBuilder] builder
|
345
|
+
# @param [Array<Symbol, Integer>] spec
|
346
|
+
# @return [builder]
|
347
|
+
# Add array +spec+ to +builder+.
|
348
|
+
def array_layout(builder, spec)
|
349
|
+
i = 0
|
350
|
+
while i < spec.size
|
351
|
+
name, type = spec[i, 2]
|
352
|
+
i += 2
|
353
|
+
|
354
|
+
# If the next param is a Integer, it specifies the offset
|
355
|
+
if spec[i].kind_of?(Integer)
|
356
|
+
offset = spec[i]
|
357
|
+
i += 1
|
358
|
+
else
|
359
|
+
offset = nil
|
360
|
+
end
|
361
|
+
|
362
|
+
builder.add name, find_field_type(type), offset
|
363
|
+
end
|
364
|
+
end
|
365
|
+
end
|
366
|
+
end
|
367
|
+
end
|
@@ -0,0 +1,222 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (C) 2008-2010 Wayne Meissner
|
3
|
+
#
|
4
|
+
# This file is part of ruby-ffi.
|
5
|
+
#
|
6
|
+
# All rights reserved.
|
7
|
+
#
|
8
|
+
# Redistribution and use in source and binary forms, with or without
|
9
|
+
# modification, are permitted provided that the following conditions are met:
|
10
|
+
#
|
11
|
+
# * Redistributions of source code must retain the above copyright notice, this
|
12
|
+
# list of conditions and the following disclaimer.
|
13
|
+
# * Redistributions in binary form must reproduce the above copyright notice
|
14
|
+
# this list of conditions and the following disclaimer in the documentation
|
15
|
+
# and/or other materials provided with the distribution.
|
16
|
+
# * Neither the name of the Ruby FFI project nor the names of its contributors
|
17
|
+
# may be used to endorse or promote products derived from this software
|
18
|
+
# without specific prior written permission.
|
19
|
+
#
|
20
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
21
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
+
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
24
|
+
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
25
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
26
|
+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
27
|
+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
28
|
+
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
29
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
30
|
+
#
|
31
|
+
|
32
|
+
module FFI
|
33
|
+
|
34
|
+
# Build a {StructLayout struct layout}.
|
35
|
+
class StructLayoutBuilder
|
36
|
+
attr_reader :size
|
37
|
+
attr_reader :alignment
|
38
|
+
|
39
|
+
def initialize
|
40
|
+
@size = 0
|
41
|
+
@alignment = 1
|
42
|
+
@min_alignment = 1
|
43
|
+
@packed = false
|
44
|
+
@union = false
|
45
|
+
@fields = Array.new
|
46
|
+
end
|
47
|
+
|
48
|
+
# @param [Numeric] size
|
49
|
+
# Set size attribute with +size+ only if +size+ is greater than attribute value.
|
50
|
+
def size=(size)
|
51
|
+
@size = size if size > @size
|
52
|
+
end
|
53
|
+
|
54
|
+
# @param [Numeric] alignment
|
55
|
+
# Set alignment attribute with +alignment+ only if it is greater than attribute value.
|
56
|
+
def alignment=(align)
|
57
|
+
@alignment = align if align > @alignment
|
58
|
+
@min_alignment = align
|
59
|
+
end
|
60
|
+
|
61
|
+
# @param [Boolean] is_union
|
62
|
+
# @return [is_union]
|
63
|
+
# Set union attribute.
|
64
|
+
# Set to +true+ to build a {Union} instead of a {Struct}.
|
65
|
+
def union=(is_union)
|
66
|
+
@union = is_union
|
67
|
+
end
|
68
|
+
|
69
|
+
# @return [Boolean]
|
70
|
+
# Building a {Union} or a {Struct} ?
|
71
|
+
def union?
|
72
|
+
@union
|
73
|
+
end
|
74
|
+
|
75
|
+
# Set packed attribute
|
76
|
+
# @overload packed=(packed)
|
77
|
+
# @param [Fixnum] packed
|
78
|
+
# @return [packed]
|
79
|
+
# Set alignment and packed attributes to +packed+.
|
80
|
+
# @overload packed=(packed)
|
81
|
+
# @param packed
|
82
|
+
# @return [0,1]
|
83
|
+
# Set packed attribute.
|
84
|
+
def packed=(packed)
|
85
|
+
if packed.is_a?(Fixnum)
|
86
|
+
@alignment = packed
|
87
|
+
@packed = packed
|
88
|
+
else
|
89
|
+
@packed = packed ? 1 : 0
|
90
|
+
end
|
91
|
+
end
|
92
|
+
|
93
|
+
|
94
|
+
# List of number types
|
95
|
+
NUMBER_TYPES = [
|
96
|
+
Type::INT8,
|
97
|
+
Type::UINT8,
|
98
|
+
Type::INT16,
|
99
|
+
Type::UINT16,
|
100
|
+
Type::INT32,
|
101
|
+
Type::UINT32,
|
102
|
+
Type::LONG,
|
103
|
+
Type::ULONG,
|
104
|
+
Type::INT64,
|
105
|
+
Type::UINT64,
|
106
|
+
Type::FLOAT32,
|
107
|
+
Type::FLOAT64,
|
108
|
+
Type::LONGDOUBLE,
|
109
|
+
Type::BOOL,
|
110
|
+
]
|
111
|
+
|
112
|
+
# @param [String, Symbol] name name of the field
|
113
|
+
# @param [Array, DataConverter, Struct, StructLayout::Field, Symbol, Type] type type of the field
|
114
|
+
# @param [Numeric, nil] offset
|
115
|
+
# @return [self]
|
116
|
+
# Add a field to the builder.
|
117
|
+
# @note Setting +offset+ to +nil+ or +-1+ is equivalent to +0+.
|
118
|
+
def add(name, type, offset = nil)
|
119
|
+
|
120
|
+
if offset.nil? || offset == -1
|
121
|
+
offset = @union ? 0 : align(@size, @packed ? [ @packed, type.alignment ].min : [ @min_alignment, type.alignment ].max)
|
122
|
+
end
|
123
|
+
|
124
|
+
#
|
125
|
+
# If a FFI::Type type was passed in as the field arg, try and convert to a StructLayout::Field instance
|
126
|
+
#
|
127
|
+
field = type.is_a?(StructLayout::Field) ? type : field_for_type(name, offset, type)
|
128
|
+
@fields << field
|
129
|
+
@alignment = [ @alignment, field.alignment ].max unless @packed
|
130
|
+
@size = [ @size, field.size + (@union ? 0 : field.offset) ].max
|
131
|
+
|
132
|
+
return self
|
133
|
+
end
|
134
|
+
|
135
|
+
# @param (see #add)
|
136
|
+
# @return (see #add)
|
137
|
+
# Same as {#add}.
|
138
|
+
# @see #add
|
139
|
+
def add_field(name, type, offset = nil)
|
140
|
+
add(name, type, offset)
|
141
|
+
end
|
142
|
+
|
143
|
+
# @param (see #add)
|
144
|
+
# @return (see #add)
|
145
|
+
# Add a struct as a field to the builder.
|
146
|
+
def add_struct(name, type, offset = nil)
|
147
|
+
add(name, Type::Struct.new(type), offset)
|
148
|
+
end
|
149
|
+
|
150
|
+
# @param name (see #add)
|
151
|
+
# @param type (see #add)
|
152
|
+
# @param [Numeric] count array length
|
153
|
+
# @param offset (see #add)
|
154
|
+
# @return (see #add)
|
155
|
+
# Add an array as a field to the builder.
|
156
|
+
def add_array(name, type, count, offset = nil)
|
157
|
+
add(name, Type::Array.new(type, count), offset)
|
158
|
+
end
|
159
|
+
|
160
|
+
# @return [StructLayout]
|
161
|
+
# Build and return the struct layout.
|
162
|
+
def build
|
163
|
+
# Add tail padding if the struct is not packed
|
164
|
+
size = @packed ? @size : align(@size, @alignment)
|
165
|
+
|
166
|
+
layout = StructLayout.new(@fields, size, @alignment)
|
167
|
+
layout.__union! if @union
|
168
|
+
layout
|
169
|
+
end
|
170
|
+
|
171
|
+
private
|
172
|
+
|
173
|
+
# @param [Numeric] offset
|
174
|
+
# @param [Numeric] align
|
175
|
+
# @return [Numeric]
|
176
|
+
def align(offset, align)
|
177
|
+
align + ((offset - 1) & ~(align - 1));
|
178
|
+
end
|
179
|
+
|
180
|
+
# @param (see #add)
|
181
|
+
# @return [StructLayout::Field]
|
182
|
+
def field_for_type(name, offset, type)
|
183
|
+
field_class = case
|
184
|
+
when type.is_a?(Type::Function)
|
185
|
+
StructLayout::Function
|
186
|
+
|
187
|
+
when type.is_a?(Type::Struct)
|
188
|
+
StructLayout::InnerStruct
|
189
|
+
|
190
|
+
when type.is_a?(Type::Array)
|
191
|
+
StructLayout::Array
|
192
|
+
|
193
|
+
when type.is_a?(FFI::Enum)
|
194
|
+
StructLayout::Enum
|
195
|
+
|
196
|
+
when NUMBER_TYPES.include?(type)
|
197
|
+
StructLayout::Number
|
198
|
+
|
199
|
+
when type == Type::POINTER
|
200
|
+
StructLayout::Pointer
|
201
|
+
|
202
|
+
when type == Type::STRING
|
203
|
+
StructLayout::String
|
204
|
+
|
205
|
+
when type.is_a?(Class) && type < StructLayout::Field
|
206
|
+
type
|
207
|
+
|
208
|
+
when type.is_a?(DataConverter)
|
209
|
+
return StructLayout::Mapped.new(name, offset, Type::Mapped.new(type), field_for_type(name, offset, type.native_type))
|
210
|
+
|
211
|
+
when type.is_a?(Type::Mapped)
|
212
|
+
return StructLayout::Mapped.new(name, offset, type, field_for_type(name, offset, type.native_type))
|
213
|
+
|
214
|
+
else
|
215
|
+
raise TypeError, "invalid struct field type #{type.inspect}"
|
216
|
+
end
|
217
|
+
|
218
|
+
field_class.new(name, offset, type)
|
219
|
+
end
|
220
|
+
end
|
221
|
+
|
222
|
+
end
|