ffi 1.11.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +25 -0
- data/.gitmodules +4 -0
- data/.travis.yml +42 -0
- data/.yardopts +5 -0
- data/CHANGELOG.md +131 -0
- data/COPYING +49 -0
- data/Gemfile +15 -0
- data/LICENSE +24 -0
- data/LICENSE.SPECS +22 -0
- data/README.md +115 -0
- data/Rakefile +195 -0
- data/appveyor.yml +27 -0
- data/ext/ffi_c/AbstractMemory.c +1109 -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 +503 -0
- data/ext/ffi_c/Call.h +107 -0
- data/ext/ffi_c/ClosurePool.c +283 -0
- data/ext/ffi_c/ClosurePool.h +57 -0
- data/ext/ffi_c/DynamicLibrary.c +339 -0
- data/ext/ffi_c/DynamicLibrary.h +98 -0
- data/ext/ffi_c/Function.c +917 -0
- data/ext/ffi_c/Function.h +87 -0
- data/ext/ffi_c/FunctionInfo.c +271 -0
- data/ext/ffi_c/LastError.c +229 -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 +358 -0
- data/ext/ffi_c/MethodHandle.h +55 -0
- data/ext/ffi_c/Platform.c +82 -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 +829 -0
- data/ext/ffi_c/Struct.h +106 -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 +137 -0
- data/ext/ffi_c/Thread.h +84 -0
- data/ext/ffi_c/Type.c +379 -0
- data/ext/ffi_c/Type.h +61 -0
- data/ext/ffi_c/Types.c +139 -0
- data/ext/ffi_c/Types.h +89 -0
- data/ext/ffi_c/Variadic.c +298 -0
- data/ext/ffi_c/compat.h +78 -0
- data/ext/ffi_c/extconf.rb +86 -0
- data/ext/ffi_c/ffi.c +93 -0
- data/ext/ffi_c/libffi.bsd.mk +40 -0
- data/ext/ffi_c/libffi.darwin.mk +105 -0
- data/ext/ffi_c/libffi.gnu.mk +32 -0
- data/ext/ffi_c/libffi.mk +18 -0
- data/ext/ffi_c/libffi.vc.mk +26 -0
- data/ext/ffi_c/libffi.vc64.mk +26 -0
- data/ext/ffi_c/libffi/.appveyor.yml +50 -0
- data/ext/ffi_c/libffi/.github/issue_template.md +10 -0
- data/ext/ffi_c/libffi/.gitignore +38 -0
- data/ext/ffi_c/libffi/.travis.yml +34 -0
- data/ext/ffi_c/libffi/.travis/ar-lib +270 -0
- data/ext/ffi_c/libffi/.travis/build.sh +34 -0
- data/ext/ffi_c/libffi/.travis/compile +351 -0
- data/ext/ffi_c/libffi/.travis/install.sh +22 -0
- data/ext/ffi_c/libffi/.travis/moxie-sim.exp +60 -0
- data/ext/ffi_c/libffi/.travis/site.exp +18 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi +584 -0
- data/ext/ffi_c/libffi/ChangeLog.libffi-3.1 +6000 -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/LICENSE-BUILDTOOLS +352 -0
- data/ext/ffi_c/libffi/Makefile.am +166 -0
- data/ext/ffi_c/libffi/README.md +461 -0
- data/ext/ffi_c/libffi/acinclude.m4 +479 -0
- data/ext/ffi_c/libffi/autogen.sh +2 -0
- data/ext/ffi_c/libffi/config.guess +1466 -0
- data/ext/ffi_c/libffi/config.sub +1836 -0
- data/ext/ffi_c/libffi/configure.ac +394 -0
- data/ext/ffi_c/libffi/configure.host +289 -0
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +203 -0
- data/ext/ffi_c/libffi/include/Makefile.am +9 -0
- data/ext/ffi_c/libffi/include/ffi.h.in +511 -0
- data/ext/ffi_c/libffi/include/ffi_cfi.h +55 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +149 -0
- data/ext/ffi_c/libffi/libffi.map.in +80 -0
- data/ext/ffi_c/libffi/libffi.pc.in +11 -0
- data/ext/ffi_c/libffi/libffi.xcodeproj/project.pbxproj +1043 -0
- data/ext/ffi_c/libffi/libtool-version +29 -0
- data/ext/ffi_c/libffi/m4/asmcfi.m4 +13 -0
- data/ext/ffi_c/libffi/m4/ax_append_flag.m4 +71 -0
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +194 -0
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +122 -0
- data/ext/ffi_c/libffi/m4/ax_check_compile_flag.m4 +74 -0
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +87 -0
- data/ext/ffi_c/libffi/m4/ax_configure_args.m4 +70 -0
- data/ext/ffi_c/libffi/m4/ax_enable_builddir.m4 +302 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_archflag.m4 +263 -0
- data/ext/ffi_c/libffi/m4/ax_gcc_x86_cpuid.m4 +89 -0
- data/ext/ffi_c/libffi/m4/ax_require_defined.m4 +37 -0
- data/ext/ffi_c/libffi/man/Makefile.am +8 -0
- data/ext/ffi_c/libffi/man/ffi.3 +41 -0
- data/ext/ffi_c/libffi/man/ffi_call.3 +103 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif.3 +68 -0
- data/ext/ffi_c/libffi/man/ffi_prep_cif_var.3 +73 -0
- data/ext/ffi_c/libffi/msvcc.sh +328 -0
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +941 -0
- data/ext/ffi_c/libffi/src/aarch64/ffitarget.h +81 -0
- data/ext/ffi_c/libffi/src/aarch64/internal.h +67 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +438 -0
- data/ext/ffi_c/libffi/src/alpha/ffi.c +521 -0
- data/ext/ffi_c/libffi/src/alpha/ffitarget.h +57 -0
- data/ext/ffi_c/libffi/src/alpha/internal.h +23 -0
- data/ext/ffi_c/libffi/src/alpha/osf.S +282 -0
- data/ext/ffi_c/libffi/src/arc/arcompact.S +135 -0
- data/ext/ffi_c/libffi/src/arc/ffi.c +266 -0
- data/ext/ffi_c/libffi/src/arc/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +819 -0
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +82 -0
- data/ext/ffi_c/libffi/src/arm/internal.h +7 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +383 -0
- data/ext/ffi_c/libffi/src/avr32/ffi.c +423 -0
- data/ext/ffi_c/libffi/src/avr32/ffitarget.h +55 -0
- data/ext/ffi_c/libffi/src/avr32/sysv.S +208 -0
- data/ext/ffi_c/libffi/src/bfin/ffi.c +196 -0
- data/ext/ffi_c/libffi/src/bfin/ffitarget.h +43 -0
- data/ext/ffi_c/libffi/src/bfin/sysv.S +179 -0
- data/ext/ffi_c/libffi/src/closures.c +966 -0
- data/ext/ffi_c/libffi/src/cris/ffi.c +386 -0
- data/ext/ffi_c/libffi/src/cris/ffitarget.h +56 -0
- data/ext/ffi_c/libffi/src/cris/sysv.S +215 -0
- data/ext/ffi_c/libffi/src/debug.c +64 -0
- data/ext/ffi_c/libffi/src/dlmalloc.c +5166 -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 +62 -0
- data/ext/ffi_c/libffi/src/ia64/ffi.c +604 -0
- data/ext/ffi_c/libffi/src/ia64/ffitarget.h +56 -0
- data/ext/ffi_c/libffi/src/ia64/ia64_flags.h +40 -0
- data/ext/ffi_c/libffi/src/ia64/unix.S +567 -0
- data/ext/ffi_c/libffi/src/java_raw_api.c +374 -0
- data/ext/ffi_c/libffi/src/m32r/ffi.c +232 -0
- data/ext/ffi_c/libffi/src/m32r/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/m32r/sysv.S +121 -0
- data/ext/ffi_c/libffi/src/m68k/ffi.c +362 -0
- data/ext/ffi_c/libffi/src/m68k/ffitarget.h +54 -0
- data/ext/ffi_c/libffi/src/m68k/sysv.S +357 -0
- data/ext/ffi_c/libffi/src/m88k/ffi.c +400 -0
- data/ext/ffi_c/libffi/src/m88k/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/m88k/obsd.S +209 -0
- data/ext/ffi_c/libffi/src/metag/ffi.c +330 -0
- data/ext/ffi_c/libffi/src/metag/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/metag/sysv.S +311 -0
- data/ext/ffi_c/libffi/src/microblaze/ffi.c +321 -0
- data/ext/ffi_c/libffi/src/microblaze/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/microblaze/sysv.S +302 -0
- data/ext/ffi_c/libffi/src/mips/ffi.c +1130 -0
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +244 -0
- data/ext/ffi_c/libffi/src/mips/n32.S +663 -0
- data/ext/ffi_c/libffi/src/mips/o32.S +502 -0
- data/ext/ffi_c/libffi/src/moxie/eabi.S +101 -0
- data/ext/ffi_c/libffi/src/moxie/ffi.c +285 -0
- data/ext/ffi_c/libffi/src/moxie/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/ffi.c +304 -0
- data/ext/ffi_c/libffi/src/nios2/ffitarget.h +52 -0
- data/ext/ffi_c/libffi/src/nios2/sysv.S +136 -0
- data/ext/ffi_c/libffi/src/or1k/ffi.c +328 -0
- data/ext/ffi_c/libffi/src/or1k/ffitarget.h +58 -0
- data/ext/ffi_c/libffi/src/or1k/sysv.S +107 -0
- data/ext/ffi_c/libffi/src/pa/ffi.c +719 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +85 -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 +566 -0
- data/ext/ffi_c/libffi/src/powerpc/aix_closure.S +694 -0
- data/ext/ffi_c/libffi/src/powerpc/asm.h +125 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin.S +378 -0
- data/ext/ffi_c/libffi/src/powerpc/darwin_closure.S +571 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi.c +173 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +1440 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +974 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_powerpc.h +94 -0
- data/ext/ffi_c/libffi/src/powerpc/ffi_sysv.c +923 -0
- data/ext/ffi_c/libffi/src/powerpc/ffitarget.h +198 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +228 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +488 -0
- data/ext/ffi_c/libffi/src/powerpc/ppc_closure.S +397 -0
- data/ext/ffi_c/libffi/src/powerpc/sysv.S +175 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +261 -0
- data/ext/ffi_c/libffi/src/raw_api.c +267 -0
- data/ext/ffi_c/libffi/src/riscv/ffi.c +481 -0
- data/ext/ffi_c/libffi/src/riscv/ffitarget.h +69 -0
- data/ext/ffi_c/libffi/src/riscv/sysv.S +293 -0
- data/ext/ffi_c/libffi/src/s390/ffi.c +756 -0
- data/ext/ffi_c/libffi/src/s390/ffitarget.h +70 -0
- data/ext/ffi_c/libffi/src/s390/internal.h +11 -0
- data/ext/ffi_c/libffi/src/s390/sysv.S +325 -0
- data/ext/ffi_c/libffi/src/sh/ffi.c +717 -0
- data/ext/ffi_c/libffi/src/sh/ffitarget.h +54 -0
- data/ext/ffi_c/libffi/src/sh/sysv.S +850 -0
- data/ext/ffi_c/libffi/src/sh64/ffi.c +469 -0
- data/ext/ffi_c/libffi/src/sh64/ffitarget.h +58 -0
- data/ext/ffi_c/libffi/src/sh64/sysv.S +539 -0
- data/ext/ffi_c/libffi/src/sparc/ffi.c +468 -0
- data/ext/ffi_c/libffi/src/sparc/ffi64.c +608 -0
- data/ext/ffi_c/libffi/src/sparc/ffitarget.h +81 -0
- data/ext/ffi_c/libffi/src/sparc/internal.h +26 -0
- data/ext/ffi_c/libffi/src/sparc/v8.S +443 -0
- data/ext/ffi_c/libffi/src/sparc/v9.S +440 -0
- data/ext/ffi_c/libffi/src/tile/ffi.c +355 -0
- data/ext/ffi_c/libffi/src/tile/ffitarget.h +65 -0
- data/ext/ffi_c/libffi/src/tile/tile.S +360 -0
- data/ext/ffi_c/libffi/src/types.c +108 -0
- data/ext/ffi_c/libffi/src/vax/elfbsd.S +195 -0
- data/ext/ffi_c/libffi/src/vax/ffi.c +276 -0
- data/ext/ffi_c/libffi/src/vax/ffitarget.h +49 -0
- data/ext/ffi_c/libffi/src/x86/asmnames.h +30 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +754 -0
- data/ext/ffi_c/libffi/src/x86/ffi64.c +884 -0
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +147 -0
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +308 -0
- data/ext/ffi_c/libffi/src/x86/internal.h +29 -0
- data/ext/ffi_c/libffi/src/x86/internal64.h +22 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +1129 -0
- data/ext/ffi_c/libffi/src/x86/unix64.S +566 -0
- data/ext/ffi_c/libffi/src/x86/win64.S +232 -0
- data/ext/ffi_c/libffi/src/x86/win64_intel.S +237 -0
- data/ext/ffi_c/libffi/src/xtensa/ffi.c +298 -0
- data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +53 -0
- data/ext/ffi_c/libffi/src/xtensa/sysv.S +258 -0
- data/ext/ffi_c/libffi/stamp-h.in +1 -0
- data/ext/ffi_c/libffi/testsuite/Makefile.am +117 -0
- data/ext/ffi_c/libffi/testsuite/config/default.exp +1 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +636 -0
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +283 -0
- data/ext/ffi_c/libffi/testsuite/lib/wrapper.exp +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/Makefile +28 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/README +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/alignof.h +50 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/bhaible.exp +58 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1745 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-callback.c +2885 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +743 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/align_mixed.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/align_stdcall.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/call.exp +43 -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_simple.c +55 -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_3float.c +95 -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 +132 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_align_longdouble_split2.c +115 -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 +61 -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 +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_args.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_many_mixed_float_double.c +55 -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 +142 -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_struct_va1.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar.c +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uchar_va.c +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint.c +43 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_uint_va.c +45 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/cls_ulong_va.c +45 -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/cls_ushort_va.c +44 -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 +138 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float1.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float2.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float3.c +74 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float4.c +62 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +107 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/huge_struct.c +341 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many.c +59 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many2.c +57 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_double.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/many_mixed.c +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/negint.c +52 -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 +134 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/nested_struct11.c +121 -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/offsets.c +46 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/pr1172638.c +127 -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 +36 -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/strlen2.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +49 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +55 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct1.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +57 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct2.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct3.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct4.c +64 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct5.c +66 -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 +81 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct9.c +68 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/testclosure.c +70 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/uninitialized.c +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest.cc +117 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/unwindtest_ffi_call.cc +54 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +196 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +121 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +123 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +125 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex.inc +91 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_align_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex.inc +42 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct.inc +71 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_struct_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va.inc +80 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_float.c +16 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/cls_complex_va_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.exp +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex.inc +51 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_double.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_float.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_defs_longdouble.inc +7 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_int.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex.inc +78 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/many_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex.inc +37 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1.inc +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex1_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2.inc +44 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex2_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_double.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_float.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.complex/return_complex_longdouble.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/aa-direct.c +34 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/closure1.c +28 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/ffitest.h +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/go.exp +36 -0
- data/ext/ffi_c/libffi/testsuite/libffi.go/static-chain.h +19 -0
- data/ext/ffi_c/rbffi.h +55 -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 +43 -0
- data/lib/ffi.rb +20 -0
- data/lib/ffi/autopointer.rb +203 -0
- data/lib/ffi/buffer.rb +4 -0
- data/lib/ffi/callback.rb +4 -0
- data/lib/ffi/data_converter.rb +67 -0
- data/lib/ffi/enum.rb +296 -0
- data/lib/ffi/errno.rb +43 -0
- data/lib/ffi/ffi.rb +45 -0
- data/lib/ffi/io.rb +62 -0
- data/lib/ffi/library.rb +588 -0
- data/lib/ffi/managedstruct.rb +84 -0
- data/lib/ffi/memorypointer.rb +1 -0
- data/lib/ffi/platform.rb +172 -0
- data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/aarch64-freebsd12/types.conf +128 -0
- data/lib/ffi/platform/aarch64-linux/types.conf +104 -0
- data/lib/ffi/platform/arm-freebsd/types.conf +152 -0
- data/lib/ffi/platform/arm-freebsd12/types.conf +152 -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-freebsd12/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/mips64-linux/types.conf +104 -0
- data/lib/ffi/platform/mips64el-linux/types.conf +104 -0
- data/lib/ffi/platform/mipsel-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsisa32r6-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsisa32r6el-linux/types.conf +102 -0
- data/lib/ffi/platform/mipsisa64r6-linux/types.conf +104 -0
- data/lib/ffi/platform/mipsisa64r6el-linux/types.conf +104 -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/powerpc64-linux/types.conf +104 -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/sparc64-linux/types.conf +102 -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 +126 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-freebsd12/types.conf +128 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +102 -0
- data/lib/ffi/platform/x86_64-netbsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-openbsd/types.conf +134 -0
- data/lib/ffi/platform/x86_64-solaris/types.conf +122 -0
- data/lib/ffi/platform/x86_64-windows/types.conf +120 -0
- data/lib/ffi/pointer.rb +160 -0
- data/lib/ffi/struct.rb +311 -0
- data/lib/ffi/struct_by_reference.rb +72 -0
- data/lib/ffi/struct_layout.rb +96 -0
- data/lib/ffi/struct_layout_builder.rb +227 -0
- data/lib/ffi/tools/const_generator.rb +230 -0
- data/lib/ffi/tools/generator.rb +105 -0
- data/lib/ffi/tools/generator_task.rb +32 -0
- data/lib/ffi/tools/struct_generator.rb +194 -0
- data/lib/ffi/tools/types_generator.rb +134 -0
- data/lib/ffi/types.rb +194 -0
- data/lib/ffi/union.rb +43 -0
- data/lib/ffi/variadic.rb +78 -0
- data/lib/ffi/version.rb +3 -0
- data/samples/getlogin.rb +8 -0
- data/samples/getpid.rb +8 -0
- data/samples/gettimeofday.rb +18 -0
- data/samples/hello.rb +7 -0
- data/samples/inotify.rb +60 -0
- data/samples/pty.rb +76 -0
- data/samples/qsort.rb +21 -0
- data/samples/sample_helper.rb +6 -0
- metadata +663 -0
data/ext/ffi_c/Struct.h
ADDED
@@ -0,0 +1,106 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2008, 2009, Wayne Meissner
|
3
|
+
* Copyright (c) 2009, Luc Heinrich <luc@honk-honk.com>
|
4
|
+
*
|
5
|
+
* Copyright (c) 2008-2013, Ruby FFI project contributors
|
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
|
+
* * Redistributions of source code must retain the above copyright
|
11
|
+
* notice, this list of conditions and the following disclaimer.
|
12
|
+
* * Redistributions in binary form must reproduce the above copyright
|
13
|
+
* notice, this list of conditions and the following disclaimer in the
|
14
|
+
* documentation and/or other materials provided with the distribution.
|
15
|
+
* * Neither the name of the Ruby FFI project nor the
|
16
|
+
* names of its contributors may be used to endorse or promote products
|
17
|
+
* derived from this software without specific prior written permission.
|
18
|
+
*
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
20
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
21
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
22
|
+
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
23
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
24
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
25
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
26
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
27
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
28
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
29
|
+
*/
|
30
|
+
|
31
|
+
#ifndef RBFFI_STRUCT_H
|
32
|
+
#define RBFFI_STRUCT_H
|
33
|
+
|
34
|
+
#include "extconf.h"
|
35
|
+
#include "AbstractMemory.h"
|
36
|
+
#include "Type.h"
|
37
|
+
#ifdef RUBY_1_9
|
38
|
+
#include <ruby/st.h>
|
39
|
+
#else
|
40
|
+
#include <st.h>
|
41
|
+
#endif
|
42
|
+
|
43
|
+
#ifdef __cplusplus
|
44
|
+
extern "C" {
|
45
|
+
#endif
|
46
|
+
|
47
|
+
extern void rbffi_Struct_Init(VALUE ffiModule);
|
48
|
+
extern void rbffi_StructLayout_Init(VALUE ffiModule);
|
49
|
+
typedef struct StructField_ StructField;
|
50
|
+
typedef struct StructLayout_ StructLayout;
|
51
|
+
typedef struct Struct_ Struct;
|
52
|
+
|
53
|
+
struct StructField_ {
|
54
|
+
Type* type;
|
55
|
+
unsigned int offset;
|
56
|
+
|
57
|
+
int referenceIndex;
|
58
|
+
|
59
|
+
bool referenceRequired;
|
60
|
+
VALUE rbType;
|
61
|
+
VALUE rbName;
|
62
|
+
|
63
|
+
VALUE (*get)(StructField* field, Struct* s);
|
64
|
+
void (*put)(StructField* field, Struct* s, VALUE value);
|
65
|
+
|
66
|
+
MemoryOp* memoryOp;
|
67
|
+
};
|
68
|
+
|
69
|
+
struct StructLayout_ {
|
70
|
+
Type base;
|
71
|
+
StructField** fields;
|
72
|
+
int fieldCount;
|
73
|
+
int size;
|
74
|
+
int align;
|
75
|
+
ffi_type** ffiTypes;
|
76
|
+
struct st_table* fieldSymbolTable;
|
77
|
+
|
78
|
+
/** The number of reference tracking fields in this struct */
|
79
|
+
int referenceFieldCount;
|
80
|
+
|
81
|
+
VALUE rbFieldNames;
|
82
|
+
VALUE rbFieldMap;
|
83
|
+
VALUE rbFields;
|
84
|
+
};
|
85
|
+
|
86
|
+
struct Struct_ {
|
87
|
+
StructLayout* layout;
|
88
|
+
AbstractMemory* pointer;
|
89
|
+
VALUE* rbReferences;
|
90
|
+
|
91
|
+
VALUE rbLayout;
|
92
|
+
VALUE rbPointer;
|
93
|
+
};
|
94
|
+
|
95
|
+
extern VALUE rbffi_StructClass, rbffi_StructLayoutClass;
|
96
|
+
extern VALUE rbffi_StructLayoutFieldClass, rbffi_StructLayoutFunctionFieldClass;
|
97
|
+
extern VALUE rbffi_StructLayoutArrayFieldClass;
|
98
|
+
extern VALUE rbffi_StructInlineArrayClass;
|
99
|
+
extern VALUE rbffi_StructLayoutCharArrayClass;
|
100
|
+
|
101
|
+
#ifdef __cplusplus
|
102
|
+
}
|
103
|
+
#endif
|
104
|
+
|
105
|
+
#endif /* RBFFI_STRUCT_H */
|
106
|
+
|
@@ -0,0 +1,150 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2009, Wayne Meissner
|
3
|
+
*
|
4
|
+
* Copyright (c) 2008-2013, Ruby FFI project contributors
|
5
|
+
* All rights reserved.
|
6
|
+
*
|
7
|
+
* Redistribution and use in source and binary forms, with or without
|
8
|
+
* modification, are permitted provided that the following conditions are met:
|
9
|
+
* * Redistributions of source code must retain the above copyright
|
10
|
+
* notice, this list of conditions and the following disclaimer.
|
11
|
+
* * Redistributions in binary form must reproduce the above copyright
|
12
|
+
* notice, this list of conditions and the following disclaimer in the
|
13
|
+
* documentation and/or other materials provided with the distribution.
|
14
|
+
* * Neither the name of the Ruby FFI project nor the
|
15
|
+
* names of its contributors may be used to endorse or promote products
|
16
|
+
* derived from this software without specific prior written permission.
|
17
|
+
*
|
18
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
+
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
22
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
23
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
24
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
25
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
26
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
27
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
|
+
*/
|
29
|
+
|
30
|
+
#ifndef _MSC_VER
|
31
|
+
#include <sys/param.h>
|
32
|
+
#endif
|
33
|
+
#include <sys/types.h>
|
34
|
+
#include <stdio.h>
|
35
|
+
#ifndef _MSC_VER
|
36
|
+
# include <stdint.h>
|
37
|
+
# include <stdbool.h>
|
38
|
+
#else
|
39
|
+
# include "win32/stdbool.h"
|
40
|
+
# include "win32/stdint.h"
|
41
|
+
#endif
|
42
|
+
#include <errno.h>
|
43
|
+
#include <ruby.h>
|
44
|
+
|
45
|
+
#include <ffi.h>
|
46
|
+
#include "rbffi.h"
|
47
|
+
#include "compat.h"
|
48
|
+
|
49
|
+
#include "Type.h"
|
50
|
+
#include "StructByValue.h"
|
51
|
+
#include "Struct.h"
|
52
|
+
|
53
|
+
#define FFI_ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1)
|
54
|
+
|
55
|
+
static VALUE sbv_allocate(VALUE);
|
56
|
+
static VALUE sbv_initialize(VALUE, VALUE);
|
57
|
+
static void sbv_mark(StructByValue *);
|
58
|
+
static void sbv_free(StructByValue *);
|
59
|
+
|
60
|
+
VALUE rbffi_StructByValueClass = Qnil;
|
61
|
+
|
62
|
+
static VALUE
|
63
|
+
sbv_allocate(VALUE klass)
|
64
|
+
{
|
65
|
+
StructByValue* sbv;
|
66
|
+
|
67
|
+
VALUE obj = Data_Make_Struct(klass, StructByValue, sbv_mark, sbv_free, sbv);
|
68
|
+
|
69
|
+
sbv->rbStructClass = Qnil;
|
70
|
+
sbv->rbStructLayout = Qnil;
|
71
|
+
sbv->base.nativeType = NATIVE_STRUCT;
|
72
|
+
|
73
|
+
sbv->base.ffiType = xcalloc(1, sizeof(*sbv->base.ffiType));
|
74
|
+
sbv->base.ffiType->size = 0;
|
75
|
+
sbv->base.ffiType->alignment = 1;
|
76
|
+
sbv->base.ffiType->type = FFI_TYPE_STRUCT;
|
77
|
+
|
78
|
+
return obj;
|
79
|
+
}
|
80
|
+
|
81
|
+
static VALUE
|
82
|
+
sbv_initialize(VALUE self, VALUE rbStructClass)
|
83
|
+
{
|
84
|
+
StructByValue* sbv = NULL;
|
85
|
+
StructLayout* layout = NULL;
|
86
|
+
VALUE rbLayout = Qnil;
|
87
|
+
|
88
|
+
rbLayout = rb_ivar_get(rbStructClass, rb_intern("@layout"));
|
89
|
+
if (!rb_obj_is_instance_of(rbLayout, rbffi_StructLayoutClass)) {
|
90
|
+
rb_raise(rb_eTypeError, "wrong type in @layout ivar (expected FFI::StructLayout)");
|
91
|
+
}
|
92
|
+
|
93
|
+
Data_Get_Struct(rbLayout, StructLayout, layout);
|
94
|
+
Data_Get_Struct(self, StructByValue, sbv);
|
95
|
+
sbv->rbStructClass = rbStructClass;
|
96
|
+
sbv->rbStructLayout = rbLayout;
|
97
|
+
|
98
|
+
/* We can just use everything from the ffi_type directly */
|
99
|
+
*sbv->base.ffiType = *layout->base.ffiType;
|
100
|
+
|
101
|
+
return self;
|
102
|
+
}
|
103
|
+
|
104
|
+
static void
|
105
|
+
sbv_mark(StructByValue *sbv)
|
106
|
+
{
|
107
|
+
rb_gc_mark(sbv->rbStructClass);
|
108
|
+
rb_gc_mark(sbv->rbStructLayout);
|
109
|
+
}
|
110
|
+
|
111
|
+
static void
|
112
|
+
sbv_free(StructByValue *sbv)
|
113
|
+
{
|
114
|
+
xfree(sbv->base.ffiType);
|
115
|
+
xfree(sbv);
|
116
|
+
}
|
117
|
+
|
118
|
+
|
119
|
+
static VALUE
|
120
|
+
sbv_layout(VALUE self)
|
121
|
+
{
|
122
|
+
StructByValue* sbv;
|
123
|
+
|
124
|
+
Data_Get_Struct(self, StructByValue, sbv);
|
125
|
+
return sbv->rbStructLayout;
|
126
|
+
}
|
127
|
+
|
128
|
+
static VALUE
|
129
|
+
sbv_struct_class(VALUE self)
|
130
|
+
{
|
131
|
+
StructByValue* sbv;
|
132
|
+
|
133
|
+
Data_Get_Struct(self, StructByValue, sbv);
|
134
|
+
|
135
|
+
return sbv->rbStructClass;
|
136
|
+
}
|
137
|
+
|
138
|
+
void
|
139
|
+
rbffi_StructByValue_Init(VALUE moduleFFI)
|
140
|
+
{
|
141
|
+
rbffi_StructByValueClass = rb_define_class_under(moduleFFI, "StructByValue", rbffi_TypeClass);
|
142
|
+
rb_global_variable(&rbffi_StructByValueClass);
|
143
|
+
rb_define_const(rbffi_TypeClass, "Struct", rbffi_StructByValueClass);
|
144
|
+
|
145
|
+
rb_define_alloc_func(rbffi_StructByValueClass, sbv_allocate);
|
146
|
+
rb_define_method(rbffi_StructByValueClass, "initialize", sbv_initialize, 1);
|
147
|
+
rb_define_method(rbffi_StructByValueClass, "layout", sbv_layout, 0);
|
148
|
+
rb_define_method(rbffi_StructByValueClass, "struct_class", sbv_struct_class, 0);
|
149
|
+
}
|
150
|
+
|
@@ -0,0 +1,55 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2009, Wayne Meissner
|
3
|
+
*
|
4
|
+
* Copyright (c) 2008-2013, Ruby FFI project contributors
|
5
|
+
* All rights reserved.
|
6
|
+
*
|
7
|
+
* Redistribution and use in source and binary forms, with or without
|
8
|
+
* modification, are permitted provided that the following conditions are met:
|
9
|
+
* * Redistributions of source code must retain the above copyright
|
10
|
+
* notice, this list of conditions and the following disclaimer.
|
11
|
+
* * Redistributions in binary form must reproduce the above copyright
|
12
|
+
* notice, this list of conditions and the following disclaimer in the
|
13
|
+
* documentation and/or other materials provided with the distribution.
|
14
|
+
* * Neither the name of the Ruby FFI project nor the
|
15
|
+
* names of its contributors may be used to endorse or promote products
|
16
|
+
* derived from this software without specific prior written permission.
|
17
|
+
*
|
18
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
19
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
20
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
21
|
+
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
22
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
23
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
24
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
25
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
26
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
27
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
28
|
+
*/
|
29
|
+
|
30
|
+
#ifndef RBFFI_STRUCTBYVALUE_H
|
31
|
+
#define RBFFI_STRUCTBYVALUE_H
|
32
|
+
|
33
|
+
#include <ruby.h>
|
34
|
+
#include "Type.h"
|
35
|
+
|
36
|
+
#ifdef __cplusplus
|
37
|
+
extern "C" {
|
38
|
+
#endif
|
39
|
+
|
40
|
+
typedef struct StructByValue_ {
|
41
|
+
Type base;
|
42
|
+
VALUE rbStructClass;
|
43
|
+
VALUE rbStructLayout;
|
44
|
+
} StructByValue;
|
45
|
+
|
46
|
+
void rbffi_StructByValue_Init(VALUE moduleFFI);
|
47
|
+
|
48
|
+
extern VALUE rbffi_StructByValueClass;
|
49
|
+
|
50
|
+
#ifdef __cplusplus
|
51
|
+
}
|
52
|
+
#endif
|
53
|
+
|
54
|
+
#endif /* RBFFI_STRUCTBYVALUE_H */
|
55
|
+
|
@@ -0,0 +1,698 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) 2008, 2009, Wayne Meissner
|
3
|
+
* Copyright (c) 2009, Luc Heinrich <luc@honk-honk.com>
|
4
|
+
*
|
5
|
+
* Copyright (c) 2008-2013, Ruby FFI project contributors
|
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
|
+
* * Redistributions of source code must retain the above copyright
|
11
|
+
* notice, this list of conditions and the following disclaimer.
|
12
|
+
* * Redistributions in binary form must reproduce the above copyright
|
13
|
+
* notice, this list of conditions and the following disclaimer in the
|
14
|
+
* documentation and/or other materials provided with the distribution.
|
15
|
+
* * Neither the name of the Ruby FFI project nor the
|
16
|
+
* names of its contributors may be used to endorse or promote products
|
17
|
+
* derived from this software without specific prior written permission.
|
18
|
+
*
|
19
|
+
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
|
20
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
21
|
+
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
22
|
+
* DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
|
23
|
+
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
24
|
+
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
25
|
+
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
26
|
+
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
27
|
+
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
28
|
+
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
29
|
+
*/
|
30
|
+
|
31
|
+
#include <sys/types.h>
|
32
|
+
|
33
|
+
#ifndef _MSC_VER
|
34
|
+
# include <sys/param.h>
|
35
|
+
# include <stdint.h>
|
36
|
+
# include <stdbool.h>
|
37
|
+
#else
|
38
|
+
# include "win32/stdbool.h"
|
39
|
+
# include "win32/stdint.h"
|
40
|
+
#endif
|
41
|
+
#include <ruby.h>
|
42
|
+
#include "rbffi.h"
|
43
|
+
#include "compat.h"
|
44
|
+
#include "AbstractMemory.h"
|
45
|
+
#include "Pointer.h"
|
46
|
+
#include "MemoryPointer.h"
|
47
|
+
#include "Function.h"
|
48
|
+
#include "Types.h"
|
49
|
+
#include "StructByValue.h"
|
50
|
+
#include "ArrayType.h"
|
51
|
+
#include "Function.h"
|
52
|
+
#include "MappedType.h"
|
53
|
+
#include "Struct.h"
|
54
|
+
|
55
|
+
#define FFI_ALIGN(v, a) (((((size_t) (v))-1) | ((a)-1))+1)
|
56
|
+
|
57
|
+
static void struct_layout_mark(StructLayout *);
|
58
|
+
static void struct_layout_free(StructLayout *);
|
59
|
+
static void struct_field_mark(StructField* );
|
60
|
+
|
61
|
+
VALUE rbffi_StructLayoutFieldClass = Qnil;
|
62
|
+
VALUE rbffi_StructLayoutNumberFieldClass = Qnil, rbffi_StructLayoutPointerFieldClass = Qnil;
|
63
|
+
VALUE rbffi_StructLayoutStringFieldClass = Qnil;
|
64
|
+
VALUE rbffi_StructLayoutFunctionFieldClass = Qnil, rbffi_StructLayoutArrayFieldClass = Qnil;
|
65
|
+
|
66
|
+
VALUE rbffi_StructLayoutClass = Qnil;
|
67
|
+
|
68
|
+
|
69
|
+
static VALUE
|
70
|
+
struct_field_allocate(VALUE klass)
|
71
|
+
{
|
72
|
+
StructField* field;
|
73
|
+
VALUE obj;
|
74
|
+
|
75
|
+
obj = Data_Make_Struct(klass, StructField, struct_field_mark, -1, field);
|
76
|
+
field->rbType = Qnil;
|
77
|
+
field->rbName = Qnil;
|
78
|
+
|
79
|
+
return obj;
|
80
|
+
}
|
81
|
+
|
82
|
+
static void
|
83
|
+
struct_field_mark(StructField* f)
|
84
|
+
{
|
85
|
+
rb_gc_mark(f->rbType);
|
86
|
+
rb_gc_mark(f->rbName);
|
87
|
+
}
|
88
|
+
|
89
|
+
/*
|
90
|
+
* call-seq: initialize(name, offset, type)
|
91
|
+
* @param [String,Symbol] name
|
92
|
+
* @param [Fixnum] offset
|
93
|
+
* @param [FFI::Type] type
|
94
|
+
* @return [self]
|
95
|
+
* A new FFI::StructLayout::Field instance.
|
96
|
+
*/
|
97
|
+
static VALUE
|
98
|
+
struct_field_initialize(int argc, VALUE* argv, VALUE self)
|
99
|
+
{
|
100
|
+
VALUE rbOffset = Qnil, rbName = Qnil, rbType = Qnil;
|
101
|
+
StructField* field;
|
102
|
+
int nargs;
|
103
|
+
|
104
|
+
Data_Get_Struct(self, StructField, field);
|
105
|
+
|
106
|
+
nargs = rb_scan_args(argc, argv, "3", &rbName, &rbOffset, &rbType);
|
107
|
+
|
108
|
+
if (TYPE(rbName) != T_SYMBOL && TYPE(rbName) != T_STRING) {
|
109
|
+
rb_raise(rb_eTypeError, "wrong argument type %s (expected Symbol/String)",
|
110
|
+
rb_obj_classname(rbName));
|
111
|
+
}
|
112
|
+
|
113
|
+
Check_Type(rbOffset, T_FIXNUM);
|
114
|
+
|
115
|
+
if (!rb_obj_is_kind_of(rbType, rbffi_TypeClass)) {
|
116
|
+
rb_raise(rb_eTypeError, "wrong argument type %s (expected FFI::Type)",
|
117
|
+
rb_obj_classname(rbType));
|
118
|
+
}
|
119
|
+
|
120
|
+
field->offset = NUM2UINT(rbOffset);
|
121
|
+
field->rbName = (TYPE(rbName) == T_SYMBOL) ? rbName : rb_str_intern(rbName);
|
122
|
+
field->rbType = rbType;
|
123
|
+
Data_Get_Struct(field->rbType, Type, field->type);
|
124
|
+
field->memoryOp = get_memory_op(field->type);
|
125
|
+
field->referenceIndex = -1;
|
126
|
+
|
127
|
+
switch (field->type->nativeType == NATIVE_MAPPED ? ((MappedType *) field->type)->type->nativeType : field->type->nativeType) {
|
128
|
+
case NATIVE_FUNCTION:
|
129
|
+
case NATIVE_CALLBACK:
|
130
|
+
case NATIVE_POINTER:
|
131
|
+
field->referenceRequired = true;
|
132
|
+
break;
|
133
|
+
|
134
|
+
default:
|
135
|
+
field->referenceRequired = (rb_respond_to(self, rb_intern("reference_required?"))
|
136
|
+
&& RTEST(rb_funcall2(self, rb_intern("reference_required?"), 0, NULL)))
|
137
|
+
|| (rb_respond_to(rbType, rb_intern("reference_required?"))
|
138
|
+
&& RTEST(rb_funcall2(rbType, rb_intern("reference_required?"), 0, NULL)));
|
139
|
+
break;
|
140
|
+
}
|
141
|
+
|
142
|
+
return self;
|
143
|
+
}
|
144
|
+
|
145
|
+
/*
|
146
|
+
* call-seq: offset
|
147
|
+
* @return [Numeric]
|
148
|
+
* Get the field offset.
|
149
|
+
*/
|
150
|
+
static VALUE
|
151
|
+
struct_field_offset(VALUE self)
|
152
|
+
{
|
153
|
+
StructField* field;
|
154
|
+
Data_Get_Struct(self, StructField, field);
|
155
|
+
return UINT2NUM(field->offset);
|
156
|
+
}
|
157
|
+
|
158
|
+
/*
|
159
|
+
* call-seq: size
|
160
|
+
* @return [Numeric]
|
161
|
+
* Get the field size.
|
162
|
+
*/
|
163
|
+
static VALUE
|
164
|
+
struct_field_size(VALUE self)
|
165
|
+
{
|
166
|
+
StructField* field;
|
167
|
+
Data_Get_Struct(self, StructField, field);
|
168
|
+
return UINT2NUM(field->type->ffiType->size);
|
169
|
+
}
|
170
|
+
|
171
|
+
/*
|
172
|
+
* call-seq: alignment
|
173
|
+
* @return [Numeric]
|
174
|
+
* Get the field alignment.
|
175
|
+
*/
|
176
|
+
static VALUE
|
177
|
+
struct_field_alignment(VALUE self)
|
178
|
+
{
|
179
|
+
StructField* field;
|
180
|
+
Data_Get_Struct(self, StructField, field);
|
181
|
+
return UINT2NUM(field->type->ffiType->alignment);
|
182
|
+
}
|
183
|
+
|
184
|
+
/*
|
185
|
+
* call-seq: type
|
186
|
+
* @return [Type]
|
187
|
+
* Get the field type.
|
188
|
+
*/
|
189
|
+
static VALUE
|
190
|
+
struct_field_type(VALUE self)
|
191
|
+
{
|
192
|
+
StructField* field;
|
193
|
+
Data_Get_Struct(self, StructField, field);
|
194
|
+
|
195
|
+
return field->rbType;
|
196
|
+
}
|
197
|
+
|
198
|
+
/*
|
199
|
+
* call-seq: name
|
200
|
+
* @return [Symbol]
|
201
|
+
* Get the field name.
|
202
|
+
*/
|
203
|
+
static VALUE
|
204
|
+
struct_field_name(VALUE self)
|
205
|
+
{
|
206
|
+
StructField* field;
|
207
|
+
Data_Get_Struct(self, StructField, field);
|
208
|
+
return field->rbName;
|
209
|
+
}
|
210
|
+
|
211
|
+
/*
|
212
|
+
* call-seq: get(pointer)
|
213
|
+
* @param [AbstractMemory] pointer pointer on a {Struct}
|
214
|
+
* @return [Object]
|
215
|
+
* Get an object of type {#type} from memory pointed by +pointer+.
|
216
|
+
*/
|
217
|
+
static VALUE
|
218
|
+
struct_field_get(VALUE self, VALUE pointer)
|
219
|
+
{
|
220
|
+
StructField* f;
|
221
|
+
|
222
|
+
Data_Get_Struct(self, StructField, f);
|
223
|
+
if (f->memoryOp == NULL) {
|
224
|
+
rb_raise(rb_eArgError, "get not supported for %s", rb_obj_classname(f->rbType));
|
225
|
+
return Qnil;
|
226
|
+
}
|
227
|
+
|
228
|
+
return (*f->memoryOp->get)(MEMORY(pointer), f->offset);
|
229
|
+
}
|
230
|
+
|
231
|
+
/*
|
232
|
+
* call-seq: put(pointer, value)
|
233
|
+
* @param [AbstractMemory] pointer pointer on a {Struct}
|
234
|
+
* @param [Object] value this object must be a kind of {#type}
|
235
|
+
* @return [self]
|
236
|
+
* Put an object to memory pointed by +pointer+.
|
237
|
+
*/
|
238
|
+
static VALUE
|
239
|
+
struct_field_put(VALUE self, VALUE pointer, VALUE value)
|
240
|
+
{
|
241
|
+
StructField* f;
|
242
|
+
|
243
|
+
Data_Get_Struct(self, StructField, f);
|
244
|
+
if (f->memoryOp == NULL) {
|
245
|
+
rb_raise(rb_eArgError, "put not supported for %s", rb_obj_classname(f->rbType));
|
246
|
+
return self;
|
247
|
+
}
|
248
|
+
|
249
|
+
(*f->memoryOp->put)(MEMORY(pointer), f->offset, value);
|
250
|
+
|
251
|
+
return self;
|
252
|
+
}
|
253
|
+
|
254
|
+
/*
|
255
|
+
* call-seq: get(pointer)
|
256
|
+
* @param [AbstractMemory] pointer pointer on a {Struct}
|
257
|
+
* @return [Function]
|
258
|
+
* Get a {Function} from memory pointed by +pointer+.
|
259
|
+
*/
|
260
|
+
static VALUE
|
261
|
+
function_field_get(VALUE self, VALUE pointer)
|
262
|
+
{
|
263
|
+
StructField* f;
|
264
|
+
|
265
|
+
Data_Get_Struct(self, StructField, f);
|
266
|
+
|
267
|
+
return rbffi_Function_NewInstance(f->rbType, (*rbffi_AbstractMemoryOps.pointer->get)(MEMORY(pointer), f->offset));
|
268
|
+
}
|
269
|
+
|
270
|
+
/*
|
271
|
+
* call-seq: put(pointer, proc)
|
272
|
+
* @param [AbstractMemory] pointer pointer to a {Struct}
|
273
|
+
* @param [Function, Proc] proc
|
274
|
+
* @return [Function]
|
275
|
+
* Set a {Function} to memory pointed by +pointer+ as a function.
|
276
|
+
*
|
277
|
+
* If a Proc is submitted as +proc+, it is automatically transformed to a {Function}.
|
278
|
+
*/
|
279
|
+
static VALUE
|
280
|
+
function_field_put(VALUE self, VALUE pointer, VALUE proc)
|
281
|
+
{
|
282
|
+
StructField* f;
|
283
|
+
VALUE value = Qnil;
|
284
|
+
|
285
|
+
Data_Get_Struct(self, StructField, f);
|
286
|
+
|
287
|
+
if (NIL_P(proc) || rb_obj_is_kind_of(proc, rbffi_FunctionClass)) {
|
288
|
+
value = proc;
|
289
|
+
} else if (rb_obj_is_kind_of(proc, rb_cProc) || rb_respond_to(proc, rb_intern("call"))) {
|
290
|
+
value = rbffi_Function_ForProc(f->rbType, proc);
|
291
|
+
} else {
|
292
|
+
rb_raise(rb_eTypeError, "wrong type (expected Proc or Function)");
|
293
|
+
}
|
294
|
+
|
295
|
+
(*rbffi_AbstractMemoryOps.pointer->put)(MEMORY(pointer), f->offset, value);
|
296
|
+
|
297
|
+
return self;
|
298
|
+
}
|
299
|
+
|
300
|
+
static inline bool
|
301
|
+
isCharArray(ArrayType* arrayType)
|
302
|
+
{
|
303
|
+
return arrayType->componentType->nativeType == NATIVE_INT8
|
304
|
+
|| arrayType->componentType->nativeType == NATIVE_UINT8;
|
305
|
+
}
|
306
|
+
|
307
|
+
/*
|
308
|
+
* call-seq: get(pointer)
|
309
|
+
* @param [AbstractMemory] pointer pointer on a {Struct}
|
310
|
+
* @return [FFI::StructLayout::CharArray, FFI::Struct::InlineArray]
|
311
|
+
* Get an array from a {Struct}.
|
312
|
+
*/
|
313
|
+
static VALUE
|
314
|
+
array_field_get(VALUE self, VALUE pointer)
|
315
|
+
{
|
316
|
+
StructField* f;
|
317
|
+
ArrayType* array;
|
318
|
+
VALUE argv[2];
|
319
|
+
|
320
|
+
Data_Get_Struct(self, StructField, f);
|
321
|
+
Data_Get_Struct(f->rbType, ArrayType, array);
|
322
|
+
|
323
|
+
argv[0] = pointer;
|
324
|
+
argv[1] = self;
|
325
|
+
|
326
|
+
return rb_class_new_instance(2, argv, isCharArray(array)
|
327
|
+
? rbffi_StructLayoutCharArrayClass : rbffi_StructInlineArrayClass);
|
328
|
+
}
|
329
|
+
|
330
|
+
/*
|
331
|
+
* call-seq: put(pointer, value)
|
332
|
+
* @param [AbstractMemory] pointer pointer on a {Struct}
|
333
|
+
* @param [String, Array] value +value+ may be a String only if array's type is a kind of +int8+
|
334
|
+
* @return [value]
|
335
|
+
* Set an array in a {Struct}.
|
336
|
+
*/
|
337
|
+
static VALUE
|
338
|
+
array_field_put(VALUE self, VALUE pointer, VALUE value)
|
339
|
+
{
|
340
|
+
StructField* f;
|
341
|
+
ArrayType* array;
|
342
|
+
|
343
|
+
|
344
|
+
Data_Get_Struct(self, StructField, f);
|
345
|
+
Data_Get_Struct(f->rbType, ArrayType, array);
|
346
|
+
|
347
|
+
if (isCharArray(array) && rb_obj_is_instance_of(value, rb_cString)) {
|
348
|
+
VALUE argv[2];
|
349
|
+
|
350
|
+
argv[0] = INT2FIX(f->offset);
|
351
|
+
argv[1] = value;
|
352
|
+
|
353
|
+
rb_funcall2(pointer, rb_intern("put_string"), 2, argv);
|
354
|
+
|
355
|
+
} else {
|
356
|
+
#ifdef notyet
|
357
|
+
MemoryOp* op;
|
358
|
+
int count = RARRAY_LEN(value);
|
359
|
+
int i;
|
360
|
+
AbstractMemory* memory = MEMORY(pointer);
|
361
|
+
|
362
|
+
if (count > array->length) {
|
363
|
+
rb_raise(rb_eIndexError, "array too large");
|
364
|
+
}
|
365
|
+
|
366
|
+
/* clear the contents in case of a short write */
|
367
|
+
checkWrite(memory);
|
368
|
+
checkBounds(memory, f->offset, f->type->ffiType->size);
|
369
|
+
if (count < array->length) {
|
370
|
+
memset(memory->address + f->offset + (count * array->componentType->ffiType->size),
|
371
|
+
0, (array->length - count) * array->componentType->ffiType->size);
|
372
|
+
}
|
373
|
+
|
374
|
+
/* now copy each element in */
|
375
|
+
if ((op = get_memory_op(array->componentType)) != NULL) {
|
376
|
+
|
377
|
+
for (i = 0; i < count; ++i) {
|
378
|
+
(*op->put)(memory, f->offset + (i * array->componentType->ffiType->size), rb_ary_entry(value, i));
|
379
|
+
}
|
380
|
+
|
381
|
+
} else if (array->componentType->nativeType == NATIVE_STRUCT) {
|
382
|
+
|
383
|
+
for (i = 0; i < count; ++i) {
|
384
|
+
VALUE entry = rb_ary_entry(value, i);
|
385
|
+
Struct* s;
|
386
|
+
|
387
|
+
if (!rb_obj_is_kind_of(entry, rbffi_StructClass)) {
|
388
|
+
rb_raise(rb_eTypeError, "array element not an instance of FFI::Struct");
|
389
|
+
break;
|
390
|
+
}
|
391
|
+
|
392
|
+
Data_Get_Struct(entry, Struct, s);
|
393
|
+
checkRead(s->pointer);
|
394
|
+
checkBounds(s->pointer, 0, array->componentType->ffiType->size);
|
395
|
+
|
396
|
+
memcpy(memory->address + f->offset + (i * array->componentType->ffiType->size),
|
397
|
+
s->pointer->address, array->componentType->ffiType->size);
|
398
|
+
}
|
399
|
+
|
400
|
+
} else {
|
401
|
+
rb_raise(rb_eNotImpError, "put not supported for arrays of type %s", rb_obj_classname(array->rbComponentType));
|
402
|
+
}
|
403
|
+
#else
|
404
|
+
rb_raise(rb_eNotImpError, "cannot set array field");
|
405
|
+
#endif
|
406
|
+
}
|
407
|
+
|
408
|
+
return value;
|
409
|
+
}
|
410
|
+
|
411
|
+
|
412
|
+
static VALUE
|
413
|
+
struct_layout_allocate(VALUE klass)
|
414
|
+
{
|
415
|
+
StructLayout* layout;
|
416
|
+
VALUE obj;
|
417
|
+
|
418
|
+
obj = Data_Make_Struct(klass, StructLayout, struct_layout_mark, struct_layout_free, layout);
|
419
|
+
layout->rbFieldMap = Qnil;
|
420
|
+
layout->rbFieldNames = Qnil;
|
421
|
+
layout->rbFields = Qnil;
|
422
|
+
layout->fieldSymbolTable = st_init_numtable();
|
423
|
+
layout->base.ffiType = xcalloc(1, sizeof(*layout->base.ffiType));
|
424
|
+
layout->base.ffiType->size = 0;
|
425
|
+
layout->base.ffiType->alignment = 0;
|
426
|
+
layout->base.ffiType->type = FFI_TYPE_STRUCT;
|
427
|
+
|
428
|
+
return obj;
|
429
|
+
}
|
430
|
+
|
431
|
+
/*
|
432
|
+
* call-seq: initialize(fields, size, align)
|
433
|
+
* @param [Array<StructLayout::Field>] fields
|
434
|
+
* @param [Numeric] size
|
435
|
+
* @param [Numeric] align
|
436
|
+
* @return [self]
|
437
|
+
* A new StructLayout instance.
|
438
|
+
*/
|
439
|
+
static VALUE
|
440
|
+
struct_layout_initialize(VALUE self, VALUE fields, VALUE size, VALUE align)
|
441
|
+
{
|
442
|
+
StructLayout* layout;
|
443
|
+
ffi_type* ltype;
|
444
|
+
int i;
|
445
|
+
|
446
|
+
Data_Get_Struct(self, StructLayout, layout);
|
447
|
+
layout->fieldCount = (int) RARRAY_LEN(fields);
|
448
|
+
layout->rbFieldMap = rb_hash_new();
|
449
|
+
layout->rbFieldNames = rb_ary_new2(layout->fieldCount);
|
450
|
+
layout->size = (int) FFI_ALIGN(NUM2INT(size), NUM2INT(align));
|
451
|
+
layout->align = NUM2INT(align);
|
452
|
+
layout->fields = xcalloc(layout->fieldCount, sizeof(StructField *));
|
453
|
+
layout->ffiTypes = xcalloc(layout->fieldCount + 1, sizeof(ffi_type *));
|
454
|
+
layout->rbFields = rb_ary_new2(layout->fieldCount);
|
455
|
+
layout->referenceFieldCount = 0;
|
456
|
+
layout->base.ffiType->elements = layout->ffiTypes;
|
457
|
+
layout->base.ffiType->size = layout->size;
|
458
|
+
layout->base.ffiType->alignment = layout->align;
|
459
|
+
|
460
|
+
ltype = layout->base.ffiType;
|
461
|
+
for (i = 0; i < (int) layout->fieldCount; ++i) {
|
462
|
+
VALUE rbField = rb_ary_entry(fields, i);
|
463
|
+
VALUE rbName;
|
464
|
+
StructField* field;
|
465
|
+
ffi_type* ftype;
|
466
|
+
|
467
|
+
|
468
|
+
if (!rb_obj_is_kind_of(rbField, rbffi_StructLayoutFieldClass)) {
|
469
|
+
rb_raise(rb_eTypeError, "wrong type for field %d.", i);
|
470
|
+
}
|
471
|
+
rbName = rb_funcall2(rbField, rb_intern("name"), 0, NULL);
|
472
|
+
|
473
|
+
Data_Get_Struct(rbField, StructField, field);
|
474
|
+
layout->fields[i] = field;
|
475
|
+
|
476
|
+
if (field->type == NULL || field->type->ffiType == NULL) {
|
477
|
+
rb_raise(rb_eRuntimeError, "type of field %d not supported", i);
|
478
|
+
}
|
479
|
+
|
480
|
+
ftype = field->type->ffiType;
|
481
|
+
if (ftype->size == 0 && i < ((int) layout->fieldCount - 1)) {
|
482
|
+
rb_raise(rb_eTypeError, "type of field %d has zero size", i);
|
483
|
+
}
|
484
|
+
|
485
|
+
if (field->referenceRequired) {
|
486
|
+
field->referenceIndex = layout->referenceFieldCount++;
|
487
|
+
}
|
488
|
+
|
489
|
+
|
490
|
+
layout->ffiTypes[i] = ftype->size > 0 ? ftype : NULL;
|
491
|
+
st_insert(layout->fieldSymbolTable, rbName, rbField);
|
492
|
+
rb_hash_aset(layout->rbFieldMap, rbName, rbField);
|
493
|
+
rb_ary_push(layout->rbFields, rbField);
|
494
|
+
rb_ary_push(layout->rbFieldNames, rbName);
|
495
|
+
}
|
496
|
+
|
497
|
+
if (ltype->size == 0) {
|
498
|
+
rb_raise(rb_eRuntimeError, "Struct size is zero");
|
499
|
+
}
|
500
|
+
|
501
|
+
return self;
|
502
|
+
}
|
503
|
+
|
504
|
+
/*
|
505
|
+
* call-seq: [](field)
|
506
|
+
* @param [Symbol] field
|
507
|
+
* @return [StructLayout::Field]
|
508
|
+
* Get a field from the layout.
|
509
|
+
*/
|
510
|
+
static VALUE
|
511
|
+
struct_layout_union_bang(VALUE self)
|
512
|
+
{
|
513
|
+
const ffi_type *alignment_types[] = { &ffi_type_sint8, &ffi_type_sint16, &ffi_type_sint32, &ffi_type_sint64,
|
514
|
+
&ffi_type_float, &ffi_type_double, &ffi_type_longdouble, NULL };
|
515
|
+
StructLayout* layout;
|
516
|
+
ffi_type *t = NULL;
|
517
|
+
int count, i;
|
518
|
+
|
519
|
+
Data_Get_Struct(self, StructLayout, layout);
|
520
|
+
|
521
|
+
for (i = 0; alignment_types[i] != NULL; ++i) {
|
522
|
+
if (alignment_types[i]->alignment == layout->align) {
|
523
|
+
t = (ffi_type *) alignment_types[i];
|
524
|
+
break;
|
525
|
+
}
|
526
|
+
}
|
527
|
+
if (t == NULL) {
|
528
|
+
rb_raise(rb_eRuntimeError, "cannot create libffi union representation for alignment %d", layout->align);
|
529
|
+
return Qnil;
|
530
|
+
}
|
531
|
+
|
532
|
+
count = (int) layout->size / (int) t->size;
|
533
|
+
xfree(layout->ffiTypes);
|
534
|
+
layout->ffiTypes = xcalloc(count + 1, sizeof(ffi_type *));
|
535
|
+
layout->base.ffiType->elements = layout->ffiTypes;
|
536
|
+
|
537
|
+
for (i = 0; i < count; ++i) {
|
538
|
+
layout->ffiTypes[i] = t;
|
539
|
+
}
|
540
|
+
|
541
|
+
return self;
|
542
|
+
}
|
543
|
+
|
544
|
+
static VALUE
|
545
|
+
struct_layout_aref(VALUE self, VALUE field)
|
546
|
+
{
|
547
|
+
StructLayout* layout;
|
548
|
+
|
549
|
+
Data_Get_Struct(self, StructLayout, layout);
|
550
|
+
|
551
|
+
return rb_hash_aref(layout->rbFieldMap, field);
|
552
|
+
}
|
553
|
+
|
554
|
+
/*
|
555
|
+
* call-seq: fields
|
556
|
+
* @return [Array<StructLayout::Field>]
|
557
|
+
* Get fields list.
|
558
|
+
*/
|
559
|
+
static VALUE
|
560
|
+
struct_layout_fields(VALUE self)
|
561
|
+
{
|
562
|
+
StructLayout* layout;
|
563
|
+
|
564
|
+
Data_Get_Struct(self, StructLayout, layout);
|
565
|
+
|
566
|
+
return rb_ary_dup(layout->rbFields);
|
567
|
+
}
|
568
|
+
|
569
|
+
/*
|
570
|
+
* call-seq: members
|
571
|
+
* @return [Array<Symbol>]
|
572
|
+
* Get list of field names.
|
573
|
+
*/
|
574
|
+
static VALUE
|
575
|
+
struct_layout_members(VALUE self)
|
576
|
+
{
|
577
|
+
StructLayout* layout;
|
578
|
+
|
579
|
+
Data_Get_Struct(self, StructLayout, layout);
|
580
|
+
|
581
|
+
return rb_ary_dup(layout->rbFieldNames);
|
582
|
+
}
|
583
|
+
|
584
|
+
/*
|
585
|
+
* call-seq: to_a
|
586
|
+
* @return [Array<StructLayout::Field>]
|
587
|
+
* Get an array of fields.
|
588
|
+
*/
|
589
|
+
static VALUE
|
590
|
+
struct_layout_to_a(VALUE self)
|
591
|
+
{
|
592
|
+
StructLayout* layout;
|
593
|
+
|
594
|
+
Data_Get_Struct(self, StructLayout, layout);
|
595
|
+
|
596
|
+
return rb_ary_dup(layout->rbFields);
|
597
|
+
}
|
598
|
+
|
599
|
+
static void
|
600
|
+
struct_layout_mark(StructLayout *layout)
|
601
|
+
{
|
602
|
+
rb_gc_mark(layout->rbFieldMap);
|
603
|
+
rb_gc_mark(layout->rbFieldNames);
|
604
|
+
rb_gc_mark(layout->rbFields);
|
605
|
+
}
|
606
|
+
|
607
|
+
static void
|
608
|
+
struct_layout_free(StructLayout *layout)
|
609
|
+
{
|
610
|
+
xfree(layout->ffiTypes);
|
611
|
+
xfree(layout->base.ffiType);
|
612
|
+
xfree(layout->fields);
|
613
|
+
st_free_table(layout->fieldSymbolTable);
|
614
|
+
xfree(layout);
|
615
|
+
}
|
616
|
+
|
617
|
+
|
618
|
+
void
|
619
|
+
rbffi_StructLayout_Init(VALUE moduleFFI)
|
620
|
+
{
|
621
|
+
VALUE ffi_Type = rbffi_TypeClass;
|
622
|
+
|
623
|
+
/*
|
624
|
+
* Document-class: FFI::StructLayout < FFI::Type
|
625
|
+
*
|
626
|
+
* This class aims at defining a struct layout.
|
627
|
+
*/
|
628
|
+
rbffi_StructLayoutClass = rb_define_class_under(moduleFFI, "StructLayout", ffi_Type);
|
629
|
+
rb_global_variable(&rbffi_StructLayoutClass);
|
630
|
+
|
631
|
+
/*
|
632
|
+
* Document-class: FFI::StructLayout::Field
|
633
|
+
* A field in a {StructLayout}.
|
634
|
+
*/
|
635
|
+
rbffi_StructLayoutFieldClass = rb_define_class_under(rbffi_StructLayoutClass, "Field", rb_cObject);
|
636
|
+
rb_global_variable(&rbffi_StructLayoutFieldClass);
|
637
|
+
|
638
|
+
/*
|
639
|
+
* Document-class: FFI::StructLayout::Number
|
640
|
+
* A numeric {Field} in a {StructLayout}.
|
641
|
+
*/
|
642
|
+
rbffi_StructLayoutNumberFieldClass = rb_define_class_under(rbffi_StructLayoutClass, "Number", rbffi_StructLayoutFieldClass);
|
643
|
+
rb_global_variable(&rbffi_StructLayoutNumberFieldClass);
|
644
|
+
|
645
|
+
/*
|
646
|
+
* Document-class: FFI::StructLayout::String
|
647
|
+
* A string {Field} in a {StructLayout}.
|
648
|
+
*/
|
649
|
+
rbffi_StructLayoutStringFieldClass = rb_define_class_under(rbffi_StructLayoutClass, "String", rbffi_StructLayoutFieldClass);
|
650
|
+
rb_global_variable(&rbffi_StructLayoutStringFieldClass);
|
651
|
+
|
652
|
+
/*
|
653
|
+
* Document-class: FFI::StructLayout::Pointer
|
654
|
+
* A pointer {Field} in a {StructLayout}.
|
655
|
+
*/
|
656
|
+
rbffi_StructLayoutPointerFieldClass = rb_define_class_under(rbffi_StructLayoutClass, "Pointer", rbffi_StructLayoutFieldClass);
|
657
|
+
rb_global_variable(&rbffi_StructLayoutPointerFieldClass);
|
658
|
+
|
659
|
+
/*
|
660
|
+
* Document-class: FFI::StructLayout::Function
|
661
|
+
* A function pointer {Field} in a {StructLayout}.
|
662
|
+
*/
|
663
|
+
rbffi_StructLayoutFunctionFieldClass = rb_define_class_under(rbffi_StructLayoutClass, "Function", rbffi_StructLayoutFieldClass);
|
664
|
+
rb_global_variable(&rbffi_StructLayoutFunctionFieldClass);
|
665
|
+
|
666
|
+
/*
|
667
|
+
* Document-class: FFI::StructLayout::Array
|
668
|
+
* An array {Field} in a {StructLayout}.
|
669
|
+
*/
|
670
|
+
rbffi_StructLayoutArrayFieldClass = rb_define_class_under(rbffi_StructLayoutClass, "Array", rbffi_StructLayoutFieldClass);
|
671
|
+
rb_global_variable(&rbffi_StructLayoutArrayFieldClass);
|
672
|
+
|
673
|
+
rb_define_alloc_func(rbffi_StructLayoutFieldClass, struct_field_allocate);
|
674
|
+
rb_define_method(rbffi_StructLayoutFieldClass, "initialize", struct_field_initialize, -1);
|
675
|
+
rb_define_method(rbffi_StructLayoutFieldClass, "offset", struct_field_offset, 0);
|
676
|
+
rb_define_method(rbffi_StructLayoutFieldClass, "size", struct_field_size, 0);
|
677
|
+
rb_define_method(rbffi_StructLayoutFieldClass, "alignment", struct_field_alignment, 0);
|
678
|
+
rb_define_method(rbffi_StructLayoutFieldClass, "name", struct_field_name, 0);
|
679
|
+
rb_define_method(rbffi_StructLayoutFieldClass, "type", struct_field_type, 0);
|
680
|
+
rb_define_method(rbffi_StructLayoutFieldClass, "put", struct_field_put, 2);
|
681
|
+
rb_define_method(rbffi_StructLayoutFieldClass, "get", struct_field_get, 1);
|
682
|
+
|
683
|
+
rb_define_method(rbffi_StructLayoutFunctionFieldClass, "put", function_field_put, 2);
|
684
|
+
rb_define_method(rbffi_StructLayoutFunctionFieldClass, "get", function_field_get, 1);
|
685
|
+
|
686
|
+
rb_define_method(rbffi_StructLayoutArrayFieldClass, "get", array_field_get, 1);
|
687
|
+
rb_define_method(rbffi_StructLayoutArrayFieldClass, "put", array_field_put, 2);
|
688
|
+
|
689
|
+
rb_define_alloc_func(rbffi_StructLayoutClass, struct_layout_allocate);
|
690
|
+
rb_define_method(rbffi_StructLayoutClass, "initialize", struct_layout_initialize, 3);
|
691
|
+
rb_define_method(rbffi_StructLayoutClass, "[]", struct_layout_aref, 1);
|
692
|
+
rb_define_method(rbffi_StructLayoutClass, "fields", struct_layout_fields, 0);
|
693
|
+
rb_define_method(rbffi_StructLayoutClass, "members", struct_layout_members, 0);
|
694
|
+
rb_define_method(rbffi_StructLayoutClass, "to_a", struct_layout_to_a, 0);
|
695
|
+
rb_define_method(rbffi_StructLayoutClass, "__union!", struct_layout_union_bang, 0);
|
696
|
+
|
697
|
+
}
|
698
|
+
|