ffi 0.4.0-x86-mswin32
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/LICENSE +51 -0
- data/README.rdoc +69 -0
- data/Rakefile +142 -0
- data/ext/ffi_c/AbstractMemory.c +412 -0
- data/ext/ffi_c/AbstractMemory.h +68 -0
- data/ext/ffi_c/AutoPointer.c +60 -0
- data/ext/ffi_c/AutoPointer.h +18 -0
- data/ext/ffi_c/Buffer.c +171 -0
- data/ext/ffi_c/Callback.c +374 -0
- data/ext/ffi_c/Callback.h +47 -0
- data/ext/ffi_c/DynamicLibrary.c +213 -0
- data/ext/ffi_c/DynamicLibrary.h +22 -0
- data/ext/ffi_c/Invoker.c +962 -0
- data/ext/ffi_c/LastError.c +135 -0
- data/ext/ffi_c/LastError.h +18 -0
- data/ext/ffi_c/MemoryPointer.c +156 -0
- data/ext/ffi_c/MemoryPointer.h +20 -0
- data/ext/ffi_c/NullPointer.c +143 -0
- data/ext/ffi_c/Platform.c +59 -0
- data/ext/ffi_c/Platform.h +16 -0
- data/ext/ffi_c/Pointer.c +164 -0
- data/ext/ffi_c/Pointer.h +25 -0
- data/ext/ffi_c/Struct.c +477 -0
- data/ext/ffi_c/Struct.h +26 -0
- data/ext/ffi_c/Type.c +230 -0
- data/ext/ffi_c/Type.h +28 -0
- data/ext/ffi_c/Types.c +118 -0
- data/ext/ffi_c/Types.h +54 -0
- data/ext/ffi_c/compat.h +22 -0
- data/ext/ffi_c/endian.h +40 -0
- data/ext/ffi_c/extconf.rb +31 -0
- data/ext/ffi_c/ffi.c +76 -0
- data/ext/ffi_c/libffi.bsd.mk +34 -0
- data/ext/ffi_c/libffi.darwin.mk +75 -0
- data/ext/ffi_c/libffi.gnu.mk +29 -0
- data/ext/ffi_c/libffi.mk +13 -0
- data/ext/ffi_c/libffi/ChangeLog +3243 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +347 -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 +177 -0
- data/ext/ffi_c/libffi/Makefile.in +1640 -0
- data/ext/ffi_c/libffi/README +328 -0
- data/ext/ffi_c/libffi/TODO +1 -0
- data/ext/ffi_c/libffi/acinclude.m4 +92 -0
- data/ext/ffi_c/libffi/aclocal.m4 +7516 -0
- data/ext/ffi_c/libffi/compile +142 -0
- data/ext/ffi_c/libffi/config.guess +1516 -0
- data/ext/ffi_c/libffi/config.sub +1626 -0
- data/ext/ffi_c/libffi/configure +24414 -0
- data/ext/ffi_c/libffi/configure.ac +365 -0
- data/ext/ffi_c/libffi/configure.host +11 -0
- data/ext/ffi_c/libffi/depcomp +584 -0
- data/ext/ffi_c/libffi/doc/libffi.info +533 -0
- data/ext/ffi_c/libffi/doc/libffi.texi +541 -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 +160 -0
- data/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/ext/ffi_c/libffi/include/Makefile.in +422 -0
- data/ext/ffi_c/libffi/include/ffi.h.in +393 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +98 -0
- data/ext/ffi_c/libffi/install-sh +323 -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/ltcf-c.sh +861 -0
- data/ext/ffi_c/libffi/ltcf-cxx.sh +1069 -0
- data/ext/ffi_c/libffi/ltcf-gcj.sh +700 -0
- data/ext/ffi_c/libffi/ltconfig +2862 -0
- data/ext/ffi_c/libffi/ltmain.sh +6930 -0
- data/ext/ffi_c/libffi/man/Makefile.am +8 -0
- data/ext/ffi_c/libffi/man/Makefile.in +395 -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 +353 -0
- data/ext/ffi_c/libffi/mkinstalldirs +158 -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 +366 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +309 -0
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +299 -0
- data/ext/ffi_c/libffi/src/closures.c +596 -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 +5099 -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 +61 -0
- data/ext/ffi_c/libffi/src/ia64/ffi.c +580 -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 +359 -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 +278 -0
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m68k/sysv.S +234 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +926 -0
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +202 -0
- data/ext/ffi_c/libffi/src/mips/n32.S +534 -0
- data/ext/ffi_c/libffi/src/mips/o32.S +381 -0
- data/ext/ffi_c/libffi/src/pa/ffi.c +709 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +77 -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 +225 -0
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +247 -0
- data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +245 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +317 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +1429 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +800 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +118 -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 +230 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +174 -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 +60 -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 +453 -0
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/sh64/sysv.S +530 -0
- data/ext/ffi_c/libffi/src/sparc/ffi.c +610 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +66 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +272 -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 +443 -0
- data/ext/ffi_c/libffi/src/x86/darwin64.S +416 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +475 -0
- data/ext/ffi_c/libffi/src/x86/ffi64.c +572 -0
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +90 -0
- data/ext/ffi_c/libffi/src/x86/freebsd.S +458 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +437 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +418 -0
- data/ext/ffi_c/libffi/src/x86/win32.S +391 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +71 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.in +447 -0
- data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi-dg.exp +289 -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 +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn0.c +97 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn1.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn2.c +89 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn3.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn4.c +97 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn5.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_fn6.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/closure_stdcall.c +72 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_12byte.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_16byte.c +103 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_18byte.c +104 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_19byte.c +110 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_1_1byte.c +97 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_20byte1.c +101 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_24byte.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_2byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3_1byte.c +103 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte1.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_3byte2.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4_1byte.c +106 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_4byte.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5_1_byte.c +117 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_5byte.c +106 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_64byte.c +132 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6_1_byte.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_6byte.c +107 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7_1_byte.c +125 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_7byte.c +105 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_8byte.c +96 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte1.c +98 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_9byte2.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_double.c +101 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_float.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble.c +100 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_pointer.c +101 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint16.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint32.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_sint64.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint16.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint32.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_uint64.c +100 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_double.c +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_float.c +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_schar.c +82 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshort.c +82 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_sshortchar.c +94 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_uchar.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushort.c +82 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_multi_ushortchar.c +94 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_schar.c +52 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sint.c +50 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_sshort.c +50 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +50 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulonglong.c +54 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ushort.c +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +86 -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 +57 -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/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 +160 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct1.c +169 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct10.c +141 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct2.c +118 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct3.c +119 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct4.c +119 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct5.c +120 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct6.c +139 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct7.c +119 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct8.c +139 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct9.c +139 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/problem1.c +98 -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 +42 -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/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.special/ffitestcxx.h +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/special.exp +38 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest.cc +123 -0
- data/ext/ffi_c/libffi/testsuite/libffi.special/unwindtest_ffi_call.cc +53 -0
- data/ext/ffi_c/libffi/texinfo.tex +7482 -0
- data/ext/ffi_c/rbffi.h +23 -0
- data/gen/Rakefile +12 -0
- data/lib/1.8/ffi_c.so +0 -0
- data/lib/1.9/ffi_c.so +0 -0
- data/lib/ffi.rb +11 -0
- data/lib/ffi/autopointer.rb +61 -0
- data/lib/ffi/buffer.rb +0 -0
- data/lib/ffi/callback.rb +10 -0
- data/lib/ffi/enum.rb +78 -0
- data/lib/ffi/errno.rb +8 -0
- data/lib/ffi/ffi.rb +96 -0
- data/lib/ffi/io.rb +21 -0
- data/lib/ffi/library.rb +243 -0
- data/lib/ffi/managedstruct.rb +55 -0
- data/lib/ffi/memorypointer.rb +73 -0
- data/lib/ffi/platform.rb +78 -0
- data/lib/ffi/pointer.rb +119 -0
- data/lib/ffi/struct.rb +354 -0
- data/lib/ffi/tools/const_generator.rb +177 -0
- data/lib/ffi/tools/generator.rb +58 -0
- data/lib/ffi/tools/generator_task.rb +35 -0
- data/lib/ffi/tools/struct_generator.rb +194 -0
- data/lib/ffi/tools/types_generator.rb +123 -0
- data/lib/ffi/types.rb +153 -0
- data/lib/ffi/union.rb +17 -0
- data/lib/ffi/variadic.rb +30 -0
- data/spec/ffi/bool_spec.rb +24 -0
- data/spec/ffi/buffer_spec.rb +196 -0
- data/spec/ffi/callback_spec.rb +560 -0
- data/spec/ffi/enum_spec.rb +164 -0
- data/spec/ffi/errno_spec.rb +13 -0
- data/spec/ffi/library_spec.rb +144 -0
- data/spec/ffi/managed_struct_spec.rb +56 -0
- data/spec/ffi/number_spec.rb +231 -0
- data/spec/ffi/pointer_spec.rb +195 -0
- data/spec/ffi/rbx/attach_function_spec.rb +27 -0
- data/spec/ffi/rbx/memory_pointer_spec.rb +102 -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 +17 -0
- data/spec/ffi/string_spec.rb +103 -0
- data/spec/ffi/struct_callback_spec.rb +41 -0
- data/spec/ffi/struct_initialize_spec.rb +30 -0
- data/spec/ffi/struct_spec.rb +476 -0
- data/spec/ffi/typedef_spec.rb +48 -0
- data/spec/ffi/union_spec.rb +60 -0
- data/spec/ffi/variadic_spec.rb +84 -0
- data/spec/spec.opts +4 -0
- metadata +375 -0
@@ -0,0 +1,177 @@
|
|
1
|
+
require 'tempfile'
|
2
|
+
require 'open3'
|
3
|
+
|
4
|
+
module FFI
|
5
|
+
|
6
|
+
##
|
7
|
+
# ConstGenerator turns C constants into ruby values.
|
8
|
+
|
9
|
+
class ConstGenerator
|
10
|
+
@options = {}
|
11
|
+
attr_reader :constants
|
12
|
+
|
13
|
+
##
|
14
|
+
# Creates a new constant generator that uses +prefix+ as a name, and an
|
15
|
+
# options hash.
|
16
|
+
#
|
17
|
+
# The only option is :required, which if set to true raises an error if a
|
18
|
+
# constant you have requested was not found.
|
19
|
+
#
|
20
|
+
# When passed a block, #calculate is automatically called at the end of
|
21
|
+
# the block, otherwise you must call it yourself.
|
22
|
+
|
23
|
+
def initialize(prefix = nil, options = {})
|
24
|
+
@includes = []
|
25
|
+
@constants = {}
|
26
|
+
@prefix = prefix
|
27
|
+
|
28
|
+
@required = options[:required]
|
29
|
+
@options = options
|
30
|
+
|
31
|
+
if block_given? then
|
32
|
+
yield self
|
33
|
+
calculate self.class.options.merge(options)
|
34
|
+
end
|
35
|
+
end
|
36
|
+
def self.options=(options)
|
37
|
+
@options = options
|
38
|
+
end
|
39
|
+
def self.options
|
40
|
+
@options
|
41
|
+
end
|
42
|
+
def [](name)
|
43
|
+
@constants[name].value
|
44
|
+
end
|
45
|
+
|
46
|
+
##
|
47
|
+
# Request the value for C constant +name+. +format+ is a printf format
|
48
|
+
# string to print the value out, and +cast+ is a C cast for the value.
|
49
|
+
# +ruby_name+ allows you to give the constant an alternate ruby name for
|
50
|
+
# #to_ruby. +converter+ or +converter_proc+ allow you to convert the
|
51
|
+
# value from a string to the appropriate type for #to_ruby.
|
52
|
+
|
53
|
+
def const(name, format = nil, cast = '', ruby_name = nil, converter = nil,
|
54
|
+
&converter_proc)
|
55
|
+
format ||= '%d'
|
56
|
+
cast ||= ''
|
57
|
+
|
58
|
+
if converter_proc and converter then
|
59
|
+
raise ArgumentError, "Supply only converter or converter block"
|
60
|
+
end
|
61
|
+
|
62
|
+
converter = converter_proc if converter.nil?
|
63
|
+
|
64
|
+
const = Constant.new name, format, cast, ruby_name, converter
|
65
|
+
@constants[name.to_s] = const
|
66
|
+
return const
|
67
|
+
end
|
68
|
+
|
69
|
+
def calculate(options = {})
|
70
|
+
binary = File.join Dir.tmpdir, "rb_const_gen_bin_#{Process.pid}"
|
71
|
+
|
72
|
+
Tempfile.open("#{@prefix}.const_generator") do |f|
|
73
|
+
f.puts "#include <stdio.h>"
|
74
|
+
|
75
|
+
@includes.each do |inc|
|
76
|
+
f.puts "#include <#{inc}>"
|
77
|
+
end
|
78
|
+
|
79
|
+
f.puts "#include <stddef.h>\n\n"
|
80
|
+
f.puts "int main(int argc, char **argv)\n{"
|
81
|
+
|
82
|
+
@constants.each_value do |const|
|
83
|
+
f.puts <<-EOF
|
84
|
+
#ifdef #{const.name}
|
85
|
+
printf("#{const.name} #{const.format}\\n", #{const.cast}#{const.name});
|
86
|
+
#endif
|
87
|
+
EOF
|
88
|
+
end
|
89
|
+
|
90
|
+
f.puts "\n\treturn 0;\n}"
|
91
|
+
f.flush
|
92
|
+
|
93
|
+
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`
|
94
|
+
|
95
|
+
unless $?.success? then
|
96
|
+
output = output.split("\n").map { |l| "\t#{l}" }.join "\n"
|
97
|
+
raise "Compilation error generating constants #{@prefix}:\n#{output}"
|
98
|
+
end
|
99
|
+
end
|
100
|
+
|
101
|
+
output = `#{binary}`
|
102
|
+
File.unlink(binary + (FFI::Platform.windows? ? ".exe" : ""))
|
103
|
+
output.each_line do |line|
|
104
|
+
line =~ /^(\S+)\s(.*)$/
|
105
|
+
const = @constants[$1]
|
106
|
+
const.value = $2
|
107
|
+
end
|
108
|
+
|
109
|
+
missing_constants = @constants.select do |name, constant|
|
110
|
+
constant.value.nil?
|
111
|
+
end.map { |name,| name }
|
112
|
+
|
113
|
+
if @required and not missing_constants.empty? then
|
114
|
+
raise "Missing required constants for #{@prefix}: #{missing_constants.join ', '}"
|
115
|
+
end
|
116
|
+
end
|
117
|
+
|
118
|
+
def dump_constants(io)
|
119
|
+
@constants.each do |name, constant|
|
120
|
+
name = [@prefix, name].join '.'
|
121
|
+
io.puts "#{name} = #{constant.converted_value}"
|
122
|
+
end
|
123
|
+
end
|
124
|
+
|
125
|
+
##
|
126
|
+
# Outputs values for discovered constants. If the constant's value was
|
127
|
+
# not discovered it is not omitted.
|
128
|
+
|
129
|
+
def to_ruby
|
130
|
+
@constants.sort_by { |name,| name }.map do |name, constant|
|
131
|
+
if constant.value.nil? then
|
132
|
+
"# #{name} not available"
|
133
|
+
else
|
134
|
+
constant.to_ruby
|
135
|
+
end
|
136
|
+
end.join "\n"
|
137
|
+
end
|
138
|
+
|
139
|
+
def include(i)
|
140
|
+
@includes << i
|
141
|
+
end
|
142
|
+
|
143
|
+
end
|
144
|
+
|
145
|
+
class ConstGenerator::Constant
|
146
|
+
|
147
|
+
attr_reader :name, :format, :cast
|
148
|
+
attr_accessor :value
|
149
|
+
|
150
|
+
def initialize(name, format, cast, ruby_name = nil, converter=nil)
|
151
|
+
@name = name
|
152
|
+
@format = format
|
153
|
+
@cast = cast
|
154
|
+
@ruby_name = ruby_name
|
155
|
+
@converter = converter
|
156
|
+
@value = nil
|
157
|
+
end
|
158
|
+
|
159
|
+
def converted_value
|
160
|
+
if @converter
|
161
|
+
@converter.call(@value)
|
162
|
+
else
|
163
|
+
@value
|
164
|
+
end
|
165
|
+
end
|
166
|
+
|
167
|
+
def ruby_name
|
168
|
+
@ruby_name || @name
|
169
|
+
end
|
170
|
+
|
171
|
+
def to_ruby
|
172
|
+
"#{ruby_name} = #{converted_value}"
|
173
|
+
end
|
174
|
+
|
175
|
+
end
|
176
|
+
|
177
|
+
end
|
@@ -0,0 +1,58 @@
|
|
1
|
+
module FFI
|
2
|
+
class Generator
|
3
|
+
|
4
|
+
def initialize(ffi_name, rb_name, options = {})
|
5
|
+
@ffi_name = ffi_name
|
6
|
+
@rb_name = rb_name
|
7
|
+
@options = options
|
8
|
+
@name = File.basename rb_name, '.rb'
|
9
|
+
|
10
|
+
file = File.read @ffi_name
|
11
|
+
|
12
|
+
new_file = file.gsub(/^( *)@@@(.*?)@@@/m) do
|
13
|
+
@constants = []
|
14
|
+
@structs = []
|
15
|
+
|
16
|
+
indent = $1
|
17
|
+
original_lines = $2.count "\n"
|
18
|
+
|
19
|
+
instance_eval $2
|
20
|
+
|
21
|
+
new_lines = []
|
22
|
+
@constants.each { |c| new_lines << c.to_ruby }
|
23
|
+
@structs.each { |s| new_lines << s.generate_layout }
|
24
|
+
|
25
|
+
new_lines = new_lines.join("\n").split "\n" # expand multiline blocks
|
26
|
+
new_lines = new_lines.map { |line| indent + line }
|
27
|
+
|
28
|
+
padding = original_lines - new_lines.length
|
29
|
+
new_lines += [nil] * padding if padding >= 0
|
30
|
+
|
31
|
+
new_lines.join "\n"
|
32
|
+
end
|
33
|
+
|
34
|
+
open @rb_name, 'w' do |f|
|
35
|
+
f.puts "# This file is generated by rake. Do not edit."
|
36
|
+
f.puts
|
37
|
+
f.puts new_file
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def constants(options = {}, &block)
|
42
|
+
@constants << FFI::ConstGenerator.new(@name, @options.merge(options), &block)
|
43
|
+
end
|
44
|
+
|
45
|
+
def struct(options = {}, &block)
|
46
|
+
@structs << FFI::StructGenerator.new(@name, @options.merge(options), &block)
|
47
|
+
end
|
48
|
+
|
49
|
+
##
|
50
|
+
# Utility converter for constants
|
51
|
+
|
52
|
+
def to_s
|
53
|
+
proc { |obj| obj.to_s.inspect }
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
@@ -0,0 +1,35 @@
|
|
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
|
+
class FFI::Generator::Task < Rake::TaskLib
|
20
|
+
|
21
|
+
def initialize(rb_names)
|
22
|
+
task :clean do rm_f rb_names end
|
23
|
+
|
24
|
+
rb_names.each do |rb_name|
|
25
|
+
ffi_name = "#{rb_name}.ffi"
|
26
|
+
|
27
|
+
file rb_name => ffi_name do |t|
|
28
|
+
puts "Generating #{rb_name}..." if Rake.application.options.trace
|
29
|
+
|
30
|
+
FFI::Generator.new ffi_name, rb_name
|
31
|
+
end
|
32
|
+
end
|
33
|
+
end
|
34
|
+
|
35
|
+
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
|
+
|