ffi 1.15.5 → 1.17.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data/CHANGELOG.md +118 -0
- data/Gemfile +10 -3
- data/README.md +4 -3
- data/Rakefile +25 -10
- data/ext/ffi_c/AbstractMemory.c +99 -74
- data/ext/ffi_c/AbstractMemory.h +3 -2
- data/ext/ffi_c/ArrayType.c +51 -15
- data/ext/ffi_c/ArrayType.h +1 -0
- data/ext/ffi_c/Buffer.c +90 -33
- data/ext/ffi_c/Call.c +29 -12
- data/ext/ffi_c/Call.h +3 -2
- data/ext/ffi_c/DynamicLibrary.c +90 -27
- data/ext/ffi_c/Function.c +244 -98
- data/ext/ffi_c/Function.h +1 -0
- data/ext/ffi_c/FunctionInfo.c +81 -25
- data/ext/ffi_c/LastError.c +29 -11
- data/ext/ffi_c/MappedType.c +66 -23
- data/ext/ffi_c/MappedType.h +0 -2
- data/ext/ffi_c/MemoryPointer.c +36 -9
- data/ext/ffi_c/MethodHandle.c +3 -1
- data/ext/ffi_c/Pointer.c +82 -40
- data/ext/ffi_c/Pointer.h +1 -0
- data/ext/ffi_c/Struct.c +166 -84
- data/ext/ffi_c/Struct.h +7 -4
- data/ext/ffi_c/StructByValue.c +48 -16
- data/ext/ffi_c/StructLayout.c +130 -61
- data/ext/ffi_c/Type.c +120 -51
- data/ext/ffi_c/Type.h +3 -1
- data/ext/ffi_c/Types.c +8 -2
- data/ext/ffi_c/Types.h +0 -1
- data/ext/ffi_c/Variadic.c +71 -26
- data/ext/ffi_c/compat.h +22 -22
- data/ext/ffi_c/extconf.rb +19 -2
- data/ext/ffi_c/ffi.c +4 -0
- data/ext/ffi_c/libffi/.allow-ai-service +0 -0
- data/ext/ffi_c/libffi/.appveyor/site.exp +16 -0
- data/ext/ffi_c/libffi/.appveyor/unix-noexec.exp +7 -0
- data/ext/ffi_c/libffi/.appveyor.yml +27 -9
- data/ext/ffi_c/libffi/.ci/build-cross-in-container.sh +18 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/build-in-container.sh +4 -6
- data/ext/ffi_c/libffi/.ci/build.sh +124 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/install.sh +14 -7
- data/ext/ffi_c/libffi/.ci/msvs-detect +1103 -0
- data/ext/ffi_c/libffi/{.travis → .ci}/site.exp +5 -3
- data/ext/ffi_c/libffi/.circleci/config.yml +156 -0
- data/ext/ffi_c/libffi/.github/workflows/build.yml +479 -0
- data/ext/ffi_c/libffi/.github/workflows/emscripten.yml +172 -0
- data/ext/ffi_c/libffi/.gitignore +10 -2
- data/ext/ffi_c/libffi/LICENSE +1 -1
- data/ext/ffi_c/libffi/Makefile.am +12 -5
- data/ext/ffi_c/libffi/Makefile.in +118 -51
- data/ext/ffi_c/libffi/README.md +150 -105
- data/ext/ffi_c/libffi/acinclude.m4 +10 -112
- data/ext/ffi_c/libffi/compile +348 -0
- data/ext/ffi_c/libffi/config.guess +623 -556
- data/ext/ffi_c/libffi/config.sub +75 -34
- data/ext/ffi_c/libffi/configure +4571 -3830
- data/ext/ffi_c/libffi/configure.ac +64 -28
- data/ext/ffi_c/libffi/configure.host +26 -7
- data/ext/ffi_c/libffi/doc/Makefile.in +9 -6
- data/ext/ffi_c/libffi/doc/libffi.texi +82 -33
- data/ext/ffi_c/libffi/doc/version.texi +4 -4
- data/ext/ffi_c/libffi/fficonfig.h.in +12 -47
- data/ext/ffi_c/libffi/generate-darwin-source-and-headers.py +163 -52
- data/ext/ffi_c/libffi/include/Makefile.am +1 -1
- data/ext/ffi_c/libffi/include/Makefile.in +10 -9
- data/ext/ffi_c/libffi/include/ffi.h.in +55 -60
- data/ext/ffi_c/libffi/include/ffi_cfi.h +21 -0
- data/ext/ffi_c/libffi/include/ffi_common.h +33 -2
- data/ext/ffi_c/libffi/include/tramp.h +45 -0
- data/ext/ffi_c/libffi/install-sh +92 -69
- data/ext/ffi_c/libffi/libffi.map.in +5 -0
- data/ext/ffi_c/libffi/libtool-version +2 -2
- data/ext/ffi_c/libffi/ltmain.sh +518 -333
- data/ext/ffi_c/libffi/m4/ax_cc_maxopt.m4 +18 -14
- data/ext/ffi_c/libffi/m4/ax_cflags_warn_all.m4 +108 -72
- data/ext/ffi_c/libffi/m4/ax_compiler_vendor.m4 +76 -45
- data/ext/ffi_c/libffi/m4/ax_prepend_flag.m4 +51 -0
- data/ext/ffi_c/libffi/man/Makefile.in +9 -6
- data/ext/ffi_c/libffi/missing +1 -1
- data/ext/ffi_c/libffi/msvc_build/aarch64/aarch64_include/ffi.h +2 -2
- data/ext/ffi_c/libffi/msvcc.sh +1 -1
- data/ext/ffi_c/libffi/src/aarch64/ffi.c +172 -55
- data/ext/ffi_c/libffi/src/aarch64/internal.h +32 -0
- data/ext/ffi_c/libffi/src/aarch64/sysv.S +331 -87
- data/ext/ffi_c/libffi/src/arc/arcompact.S +169 -94
- data/ext/ffi_c/libffi/src/arc/ffi.c +325 -148
- data/ext/ffi_c/libffi/src/arc/ffitarget.h +14 -0
- data/ext/ffi_c/libffi/src/arm/ffi.c +62 -17
- data/ext/ffi_c/libffi/src/arm/ffitarget.h +3 -3
- data/ext/ffi_c/libffi/src/arm/internal.h +10 -0
- data/ext/ffi_c/libffi/src/arm/sysv.S +113 -42
- data/ext/ffi_c/libffi/src/closures.c +136 -50
- data/ext/ffi_c/libffi/src/debug.c +2 -2
- data/ext/ffi_c/libffi/src/dlmalloc.c +6 -1
- data/ext/ffi_c/libffi/src/ia64/ffi.c +12 -0
- data/ext/ffi_c/libffi/src/ia64/unix.S +20 -2
- data/ext/ffi_c/libffi/src/loongarch64/ffi.c +624 -0
- data/ext/ffi_c/libffi/src/loongarch64/ffitarget.h +82 -0
- data/ext/ffi_c/libffi/src/loongarch64/sysv.S +327 -0
- data/ext/ffi_c/libffi/src/m32r/ffi.c +31 -14
- data/ext/ffi_c/libffi/src/mips/ffi.c +250 -67
- data/ext/ffi_c/libffi/src/mips/ffitarget.h +7 -0
- data/ext/ffi_c/libffi/src/mips/n32.S +193 -33
- data/ext/ffi_c/libffi/src/mips/o32.S +61 -4
- data/ext/ffi_c/libffi/src/moxie/ffi.c +47 -22
- data/ext/ffi_c/libffi/src/or1k/ffi.c +25 -12
- data/ext/ffi_c/libffi/src/pa/ffi.c +32 -33
- data/ext/ffi_c/libffi/src/pa/ffi64.c +614 -0
- data/ext/ffi_c/libffi/src/pa/ffitarget.h +22 -8
- data/ext/ffi_c/libffi/src/pa/hpux32.S +83 -36
- data/ext/ffi_c/libffi/src/pa/hpux64.S +681 -0
- data/ext/ffi_c/libffi/src/pa/linux.S +82 -35
- data/ext/ffi_c/libffi/src/powerpc/ffi_darwin.c +36 -24
- data/ext/ffi_c/libffi/src/powerpc/ffi_linux64.c +1 -1
- data/ext/ffi_c/libffi/src/powerpc/linux64.S +2 -0
- data/ext/ffi_c/libffi/src/powerpc/linux64_closure.S +2 -0
- data/ext/ffi_c/libffi/src/powerpc/t-aix +5 -0
- data/ext/ffi_c/libffi/src/prep_cif.c +22 -2
- data/ext/ffi_c/libffi/src/riscv/ffi.c +37 -4
- data/ext/ffi_c/libffi/src/sparc/ffi64.c +23 -1
- data/ext/ffi_c/libffi/src/tramp.c +716 -0
- data/ext/ffi_c/libffi/src/types.c +4 -6
- data/ext/ffi_c/libffi/src/wasm32/ffi.c +947 -0
- data/ext/ffi_c/libffi/src/wasm32/ffitarget.h +62 -0
- data/ext/ffi_c/libffi/src/x86/ffi.c +99 -37
- data/ext/ffi_c/libffi/src/x86/ffi64.c +67 -12
- data/ext/ffi_c/libffi/src/x86/ffitarget.h +9 -5
- data/ext/ffi_c/libffi/src/x86/ffiw64.c +44 -1
- data/ext/ffi_c/libffi/src/x86/internal.h +14 -0
- data/ext/ffi_c/libffi/src/x86/internal64.h +14 -0
- data/ext/ffi_c/libffi/src/x86/sysv.S +172 -38
- data/ext/ffi_c/libffi/src/x86/sysv_intel.S +91 -88
- data/ext/ffi_c/libffi/src/x86/unix64.S +96 -6
- data/ext/ffi_c/libffi/src/x86/win64.S +20 -7
- data/ext/ffi_c/libffi/src/xtensa/ffi.c +16 -8
- data/ext/ffi_c/libffi/src/xtensa/ffitarget.h +4 -0
- data/ext/ffi_c/libffi/src/xtensa/sysv.S +26 -16
- data/ext/ffi_c/libffi/testsuite/Makefile.am +79 -114
- data/ext/ffi_c/libffi/testsuite/Makefile.in +89 -121
- data/ext/ffi_c/libffi/testsuite/emscripten/build-tests.sh +54 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/build.sh +63 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/conftest.py +86 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/node-tests.sh +48 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/test.html +7 -0
- data/ext/ffi_c/libffi/testsuite/emscripten/test_libffi.py +51 -0
- data/ext/ffi_c/libffi/testsuite/lib/libffi.exp +43 -21
- data/ext/ffi_c/libffi/testsuite/lib/target-libpath.exp +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/test-call.c +1 -0
- data/ext/ffi_c/libffi/testsuite/libffi.bhaible/testcases.c +5 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/bpo_38748.c +41 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/callback.c +99 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/callback2.c +108 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/callback3.c +114 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/callback4.c +119 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/ffitest.h +28 -3
- data/ext/ffi_c/libffi/testsuite/libffi.call/float_va.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ll1.c +5 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_sl.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/return_ul.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/s55.c +60 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen.c +8 -9
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen2.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen3.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/strlen4.c +2 -2
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct10.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_2.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_3f.c +65 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_4f.c +67 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_big.c +93 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_by_value_small.c +61 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_2H.c +63 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/struct_return_8H.c +90 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_1.c +1 -119
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_2.c +220 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_3.c +154 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct1.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct2.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.call/va_struct3.c +15 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn0.c +3 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn1.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn2.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn3.c +21 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn4.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn5.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_fn6.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_loc_fn0.c +7 -6
- data/ext/ffi_c/libffi/testsuite/libffi.closures/closure_simple.c +6 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_12byte.c +18 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_16byte.c +22 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_18byte.c +24 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_19byte.c +29 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_1_1byte.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_20byte1.c +21 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_24byte.c +35 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_2byte.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3_1byte.c +19 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte1.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3byte2.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_3float.c +18 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4_1byte.c +22 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_4byte.c +13 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5_1_byte.c +29 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_5byte.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_64byte.c +24 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6_1_byte.c +28 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_6byte.c +24 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7_1_byte.c +39 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_7byte.c +25 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_8byte.c +14 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte1.c +14 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_9byte2.c +14 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_double.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_float.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble.c +20 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split.c +40 -25
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_longdouble_split2.c +40 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_pointer.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint16.c +18 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint32.c +18 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_sint64.c +18 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint16.c +18 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint32.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_align_uint64.c +19 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_dbls_struct.c +3 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_double_va.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_float.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble.c +11 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_longdouble_va.c +22 -3
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_schar.c +5 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshort.c +6 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_sshortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_uchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushort.c +6 -2
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_multi_ushortchar.c +9 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer.c +5 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_pointer_stack.c +10 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_schar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sint.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_sshort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_struct_va1.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uint_va.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulong_va.c +4 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ulonglong.c +2 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort.c +3 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/ffitest.h +1 -138
- data/ext/ffi_c/libffi/testsuite/libffi.closures/huge_struct.c +21 -21
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct.c +32 -9
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct1.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct10.c +12 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct11.c +21 -5
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct12.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct13.c +115 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct2.c +10 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct3.c +10 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct4.c +9 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct5.c +9 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct6.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct7.c +9 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct8.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/nested_struct9.c +11 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs1.c +86 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs2.c +102 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/single_entry_structs3.c +101 -0
- data/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/stret_medium2.c +1 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/testclosure.c +6 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest.cc +2 -1
- data/ext/ffi_c/libffi/testsuite/libffi.closures/unwindtest_ffi_call.cc +1 -0
- data/ext/ffi_c/libffi.bsd.mk +2 -2
- data/ext/ffi_c/libffi.darwin.mk +2 -2
- data/ext/ffi_c/libffi.gnu.mk +2 -2
- data/ext/ffi_c/rbffi.h +1 -1
- data/ffi.gemspec +3 -3
- data/lib/ffi/autopointer.rb +8 -31
- data/lib/ffi/compat.rb +43 -0
- data/lib/ffi/data_converter.rb +2 -2
- data/lib/ffi/dynamic_library.rb +118 -0
- data/lib/ffi/enum.rb +18 -12
- data/lib/ffi/ffi.rb +3 -0
- data/lib/ffi/function.rb +71 -0
- data/lib/ffi/io.rb +2 -2
- data/lib/ffi/library.rb +72 -88
- data/lib/ffi/library_path.rb +109 -0
- data/lib/ffi/managedstruct.rb +1 -1
- data/lib/ffi/platform/aarch64-linux/types.conf +74 -3
- data/lib/ffi/platform/aarch64-windows/types.conf +52 -0
- data/lib/ffi/platform/hppa1.1-linux/types.conf +178 -0
- data/lib/ffi/platform/hppa2.0-linux/types.conf +178 -0
- data/lib/ffi/platform/loongarch64-linux/types.conf +141 -0
- data/lib/ffi/platform/sw_64-linux/types.conf +141 -0
- data/lib/ffi/platform.rb +15 -13
- data/lib/ffi/pointer.rb +6 -6
- data/lib/ffi/struct.rb +6 -5
- data/lib/ffi/struct_layout.rb +3 -3
- data/lib/ffi/struct_layout_builder.rb +9 -9
- data/lib/ffi/types.rb +65 -37
- data/lib/ffi/variadic.rb +19 -8
- data/lib/ffi/version.rb +1 -1
- data/samples/hello_ractor.rb +11 -0
- data/samples/qsort_ractor.rb +28 -0
- data/sig/ffi/abstract_memory.rbs +165 -0
- data/sig/ffi/auto_pointer.rbs +27 -0
- data/sig/ffi/buffer.rbs +18 -0
- data/sig/ffi/data_converter.rbs +10 -0
- data/sig/ffi/dynamic_library.rbs +9 -0
- data/sig/ffi/enum.rbs +38 -0
- data/sig/ffi/function.rbs +39 -0
- data/sig/ffi/library.rbs +42 -0
- data/sig/ffi/native_type.rbs +86 -0
- data/sig/ffi/pointer.rbs +42 -0
- data/sig/ffi/struct.rbs +76 -0
- data/sig/ffi/struct_by_reference.rbs +11 -0
- data/sig/ffi/struct_by_value.rbs +7 -0
- data/sig/ffi/struct_layout.rbs +9 -0
- data/sig/ffi/struct_layout_builder.rbs +5 -0
- data/sig/ffi/type.rbs +39 -0
- data/sig/ffi.rbs +26 -0
- data.tar.gz.sig +0 -0
- metadata +122 -28
- metadata.gz.sig +1 -0
- data/ext/ffi_c/libffi/.travis/build-cross-in-container.sh +0 -14
- data/ext/ffi_c/libffi/.travis/build.sh +0 -142
- data/ext/ffi_c/libffi/.travis.yml +0 -83
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_uchar_va.c +0 -44
- data/ext/ffi_c/libffi/testsuite/libffi.closures/cls_ushort_va.c +0 -44
- /data/ext/ffi_c/libffi/{.travis → .ci}/ar-lib +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/bfin-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/compile +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/m32r-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/moxie-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/or1k-sim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/powerpc-eabisim.exp +0 -0
- /data/ext/ffi_c/libffi/{.travis → .ci}/wine-sim.exp +0 -0
- /data/ext/ffi_c/libffi/testsuite/libffi.call/{pyobjc-tc.c → pyobjc_tc.c} +0 -0
- /data/lib/ffi/platform/{sparc64-linux → sparcv9-linux}/types.conf +0 -0
data/sig/ffi/buffer.rbs
ADDED
@@ -0,0 +1,18 @@
|
|
1
|
+
module FFI
|
2
|
+
class Buffer < AbstractMemory
|
3
|
+
def initialize: (AbstractMemory::type_size, ?Integer count, boolish clear) -> self
|
4
|
+
alias self.alloc_inout self.new
|
5
|
+
alias self.new_inout self.alloc_inout
|
6
|
+
alias self.alloc_in self.alloc_inout
|
7
|
+
alias self.new_in self.alloc_in
|
8
|
+
alias self.alloc_out self.alloc_inout
|
9
|
+
alias self.new_out self.alloc_out
|
10
|
+
|
11
|
+
def +: (Integer) -> Buffer
|
12
|
+
def inspect: ...
|
13
|
+
def order: () -> AbstractMemory::order_out
|
14
|
+
| (AbstractMemory::order_in order) -> Buffer
|
15
|
+
| (untyped order) -> (self | Buffer)
|
16
|
+
def slice: (Integer offset, Integer length) -> Buffer
|
17
|
+
end
|
18
|
+
end
|
@@ -0,0 +1,10 @@
|
|
1
|
+
module FFI
|
2
|
+
interface _DataConverter[N, R, in C]
|
3
|
+
def from_native: (N value, C ctx) -> R
|
4
|
+
def native_type: (?ffi_auto_type? type) -> Type
|
5
|
+
def to_native: (R value, C ctx) -> N
|
6
|
+
end
|
7
|
+
module DataConverter[N, R, in C]
|
8
|
+
include _DataConverter[N, R, C]
|
9
|
+
end
|
10
|
+
end
|
data/sig/ffi/enum.rbs
ADDED
@@ -0,0 +1,38 @@
|
|
1
|
+
module FFI
|
2
|
+
class Enums
|
3
|
+
def initialize: () -> void
|
4
|
+
|
5
|
+
def <<: (Enum enum) -> void
|
6
|
+
def __map_symbol: (Symbol symbol) -> Integer?
|
7
|
+
def find: (Symbol query) -> Enum
|
8
|
+
end
|
9
|
+
|
10
|
+
class Enum
|
11
|
+
include DataConverter[Integer, Symbol | Integer, untyped]
|
12
|
+
|
13
|
+
attr_reader native_type: Type
|
14
|
+
attr_reader tag: Symbol?
|
15
|
+
def initialize: (Enumerable[Symbol | Integer], ?Symbol? tag, *untyped) -> void
|
16
|
+
| (Type native_type, Enumerable[Symbol | Integer], ?Symbol? tag, *untyped) -> void
|
17
|
+
|
18
|
+
def []: (Symbol query) -> Integer?
|
19
|
+
| (Integer query) -> Symbol?
|
20
|
+
def symbol_map: () -> Hash[Symbol, Integer]
|
21
|
+
alias to_h symbol_map
|
22
|
+
alias to_hash symbol_map
|
23
|
+
def symbols: () -> Array[Symbol]
|
24
|
+
def to_native: (Symbol | int value, untyped ctx) -> Integer
|
25
|
+
end
|
26
|
+
|
27
|
+
class Bitmask < Enum
|
28
|
+
def initialize: ...
|
29
|
+
|
30
|
+
def []: (*Symbol query) -> Integer
|
31
|
+
| (Array[Symbol] query) -> Integer
|
32
|
+
| (*Integer query) -> Array[Symbol]
|
33
|
+
| (Array[Integer] query) -> Array[Symbol]
|
34
|
+
def from_native: (Integer, untyped ctx) -> Array[Symbol | Integer]
|
35
|
+
def to_native: (Array[Symbol | int] value, untyped ctx) -> Integer
|
36
|
+
| ...
|
37
|
+
end
|
38
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
module FFI
|
2
|
+
interface _Function
|
3
|
+
# TODO: leads to a endless recursion when used with -rrbs/test/setup
|
4
|
+
# def attach: (Module mod, String name) -> self
|
5
|
+
def call: (*untyped args) -> untyped
|
6
|
+
def param_types: () -> Array[Type]
|
7
|
+
def return_type: () -> Type
|
8
|
+
end
|
9
|
+
|
10
|
+
class Function < Pointer
|
11
|
+
include _Function
|
12
|
+
# ?blocking: boolish?, ?convention: Library::convention?, ?enums: Enums?
|
13
|
+
def initialize:
|
14
|
+
(
|
15
|
+
ffi_type return_type, Array[ffi_type] param_types,
|
16
|
+
?Hash[Symbol, untyped] options
|
17
|
+
) { (*untyped) -> untyped } -> self
|
18
|
+
| (
|
19
|
+
ffi_type return_type, Array[ffi_type] param_types, Proc | Pointer proc,
|
20
|
+
?Hash[Symbol, untyped] options
|
21
|
+
) -> self
|
22
|
+
|
23
|
+
def autorelease?: ...
|
24
|
+
alias autorelease autorelease?
|
25
|
+
def autorelease=: ...
|
26
|
+
def free: () -> self
|
27
|
+
end
|
28
|
+
|
29
|
+
class VariadicInvoker
|
30
|
+
include _Function
|
31
|
+
def initialize:
|
32
|
+
(
|
33
|
+
Pointer function, Array[ffi_type] parameter_types, ffi_type return_type,
|
34
|
+
Hash[Symbol, untyped] options #TODO
|
35
|
+
) -> void
|
36
|
+
|
37
|
+
def invoke: (Array[Type] parameter_types, Array[untyped] parameter_values) -> untyped
|
38
|
+
end
|
39
|
+
end
|
data/sig/ffi/library.rbs
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
module FFI
|
2
|
+
module Library
|
3
|
+
type convention = :default | :stdcall
|
4
|
+
type ffi_lib_flag = :global | :local | :lazy | :now
|
5
|
+
type ffi_lib_type = ffi_auto_type | singleton(Struct)
|
6
|
+
|
7
|
+
CURRENT_PROCESS: current_process
|
8
|
+
LIBC: String
|
9
|
+
FlagsMap: Hash[ffi_lib_flag, Integer]
|
10
|
+
|
11
|
+
def self.extended: ...
|
12
|
+
|
13
|
+
def attach_function: ( _ToS func, Array[ffi_lib_type] args, ffi_lib_type? returns, ?blocking: boolish, ?convention: convention, ?enums: Enums, ?type_map: type_map) -> (Function | VariadicInvoker)
|
14
|
+
| (_ToS name, _ToS func, Array[ffi_lib_type] args, ?ffi_lib_type? returns, ?blocking: boolish, ?convention: convention, ?enums: Enums, ?type_map: type_map) -> (Function | VariadicInvoker)
|
15
|
+
def attach_variable: (?_ToS mname, _ToS cname, ffi_lib_type type) -> DynamicLibrary::Symbol
|
16
|
+
def attached_functions: () -> Hash[Symbol, Function | VariadicInvoker]
|
17
|
+
def attached_variables: () -> Hash[Symbol, Type | singleton(Struct)]
|
18
|
+
|
19
|
+
def bitmask: (?Type native_type, Symbol name, Array[Symbol | Integer] values) -> Bitmask
|
20
|
+
| (?Type native_type, *Symbol | Integer args) -> Bitmask
|
21
|
+
| (?Type native_type, Array[Symbol | Integer] values) -> Bitmask
|
22
|
+
def enum: (?Type native_type, Symbol name, Array[Symbol | Integer] values) -> Enum
|
23
|
+
| (?Type native_type, *Symbol | Integer args) -> Enum
|
24
|
+
| (?Type native_type, Array[Symbol | Integer] values) -> Enum
|
25
|
+
def enum_type: (Symbol name) -> Enum?
|
26
|
+
def enum_for: (Symbol name) -> Integer?
|
27
|
+
|
28
|
+
def callback: (?Symbol name, Array[ffi_lib_type] params, ffi_lib_type ret) -> CallbackInfo
|
29
|
+
def ffi_convention: (?convention? convention) -> convention
|
30
|
+
def ffi_lib: (*_ToS names) -> Array[DynamicLibrary]
|
31
|
+
def ffi_lib_flags: (*ffi_lib_flag flags) -> Integer
|
32
|
+
def ffi_libraries: () -> Array[DynamicLibrary]
|
33
|
+
def find_type: (ffi_lib_type t) -> Type
|
34
|
+
def freeze: () -> void
|
35
|
+
def function_names: (_ToS name, Array[Type | singleton(Struct)] arg_types) -> Array[String]
|
36
|
+
def typedef: [T < Type] (T old, Symbol | DataConverter add, ?untyped) -> T
|
37
|
+
| (Symbol old, Symbol add, ?untyped) -> (Type | Enum)
|
38
|
+
| [X < DataConverter[N, R, C], N, R, C] (X old, Symbol add, ?untyped) -> Type::Mapped[X, N, R, C]
|
39
|
+
| (:enum old, Array[Symbol | Integer] add, ?untyped) -> Enum
|
40
|
+
| (:enum old, Symbol | Type add, Array[Symbol | Integer] info) -> Enum
|
41
|
+
end
|
42
|
+
end
|
@@ -0,0 +1,86 @@
|
|
1
|
+
module FFI
|
2
|
+
class Type
|
3
|
+
INT8: Builtin
|
4
|
+
SCHAR: Builtin
|
5
|
+
CHAR: Builtin
|
6
|
+
UINT8: Builtin
|
7
|
+
UCHAR: Builtin
|
8
|
+
INT16: Builtin
|
9
|
+
SHORT: Builtin
|
10
|
+
SSHORT: Builtin
|
11
|
+
UINT16: Builtin
|
12
|
+
USHORT: Builtin
|
13
|
+
INT32: Builtin
|
14
|
+
INT: Builtin
|
15
|
+
SINT: Builtin
|
16
|
+
UINT32: Builtin
|
17
|
+
UINT: Builtin
|
18
|
+
INT64: Builtin
|
19
|
+
LONG_LONG: Builtin
|
20
|
+
SLONG_LONG: Builtin
|
21
|
+
UINT64: Builtin
|
22
|
+
ULONG_LONG: Builtin
|
23
|
+
LONG: Builtin
|
24
|
+
SLONG: Builtin
|
25
|
+
ULONG: Builtin
|
26
|
+
FLOAT32: Builtin
|
27
|
+
FLOAT: Builtin
|
28
|
+
FLOAT64: Builtin
|
29
|
+
DOUBLE: Builtin
|
30
|
+
LONGDOUBLE: Builtin
|
31
|
+
POINTER: Builtin
|
32
|
+
BOOL: Builtin
|
33
|
+
STRING: Builtin
|
34
|
+
BUFFER_IN: Builtin
|
35
|
+
BUFFER_OUT: Builtin
|
36
|
+
BUFFER_INOUT: Builtin
|
37
|
+
VARARGS: Builtin
|
38
|
+
VOID: Builtin
|
39
|
+
end
|
40
|
+
|
41
|
+
module NativeType
|
42
|
+
INT8: Type::Builtin
|
43
|
+
UINT8: Type::Builtin
|
44
|
+
INT16: Type::Builtin
|
45
|
+
UINT16: Type::Builtin
|
46
|
+
INT32: Type::Builtin
|
47
|
+
UINT32: Type::Builtin
|
48
|
+
INT64: Type::Builtin
|
49
|
+
UINT64: Type::Builtin
|
50
|
+
LONG: Type::Builtin
|
51
|
+
ULONG: Type::Builtin
|
52
|
+
FLOAT32: Type::Builtin
|
53
|
+
FLOAT64: Type::Builtin
|
54
|
+
LONGDOUBLE: Type::Builtin
|
55
|
+
POINTER: Type::Builtin
|
56
|
+
BOOL: Type::Builtin
|
57
|
+
STRING: Type::Builtin
|
58
|
+
BUFFER_IN: Type::Builtin
|
59
|
+
BUFFER_OUT: Type::Builtin
|
60
|
+
BUFFER_INOUT: Type::Builtin
|
61
|
+
VARARGS: Type::Builtin
|
62
|
+
VOID: Type::Builtin
|
63
|
+
end
|
64
|
+
|
65
|
+
TYPE_INT8: Type::Builtin
|
66
|
+
TYPE_UINT8: Type::Builtin
|
67
|
+
TYPE_INT16: Type::Builtin
|
68
|
+
TYPE_UINT16: Type::Builtin
|
69
|
+
TYPE_INT32: Type::Builtin
|
70
|
+
TYPE_UINT32: Type::Builtin
|
71
|
+
TYPE_INT64: Type::Builtin
|
72
|
+
TYPE_UINT64: Type::Builtin
|
73
|
+
TYPE_LONG: Type::Builtin
|
74
|
+
TYPE_ULONG: Type::Builtin
|
75
|
+
TYPE_FLOAT32: Type::Builtin
|
76
|
+
TYPE_FLOAT64: Type::Builtin
|
77
|
+
TYPE_LONGDOUBLE: Type::Builtin
|
78
|
+
TYPE_POINTER: Type::Builtin
|
79
|
+
TYPE_BOOL: Type::Builtin
|
80
|
+
TYPE_STRING: Type::Builtin
|
81
|
+
TYPE_BUFFER_IN: Type::Builtin
|
82
|
+
TYPE_BUFFER_OUT: Type::Builtin
|
83
|
+
TYPE_BUFFER_INOUT: Type::Builtin
|
84
|
+
TYPE_VARARGS: Type::Builtin
|
85
|
+
TYPE_VOID: Type::Builtin
|
86
|
+
end
|
data/sig/ffi/pointer.rbs
ADDED
@@ -0,0 +1,42 @@
|
|
1
|
+
module FFI
|
2
|
+
type pointer = Pointer::_ToPtr? | Integer
|
3
|
+
class Pointer < AbstractMemory
|
4
|
+
interface _ToPtr
|
5
|
+
def to_ptr: () -> Pointer
|
6
|
+
end
|
7
|
+
include _ToPtr
|
8
|
+
|
9
|
+
SIZE: Integer
|
10
|
+
NULL: Pointer
|
11
|
+
def self.size: () -> Integer
|
12
|
+
|
13
|
+
def initialize: (?AbstractMemory::type_size type, (Pointer | Integer) address) -> void
|
14
|
+
def +: (Integer offset) -> Pointer
|
15
|
+
def ==: (Pointer? other) -> bool
|
16
|
+
def address: () -> Integer
|
17
|
+
alias to_i address
|
18
|
+
def autorelease?: () -> bool
|
19
|
+
def autorelease=: (boolish autorelease) -> boolish
|
20
|
+
def free: () -> self
|
21
|
+
def inspect: ...
|
22
|
+
def null?: () -> bool
|
23
|
+
def order: () -> AbstractMemory::order_out
|
24
|
+
| (AbstractMemory::order_in) -> Pointer
|
25
|
+
def read: (ffi_type type) -> top
|
26
|
+
def read_array_of_type: (ffi_auto_type type, Symbol reader, Integer length) -> Array[top]
|
27
|
+
def read_string: (?Integer? len) -> String
|
28
|
+
def read_string_length: (Integer len) -> String
|
29
|
+
def read_string_to_null: () -> String
|
30
|
+
def slice: (Integer offset, Integer length) -> Pointer
|
31
|
+
def type_size: () -> Integer
|
32
|
+
def write: (ffi_type type, top value) -> nil
|
33
|
+
def write_array_of_type: (ffi_auto_type type, Symbol writer, Array[top]) -> self
|
34
|
+
def write_string: (String str, ?Integer? len) -> self
|
35
|
+
def write_string_length: (String str, Integer len) -> self
|
36
|
+
end
|
37
|
+
|
38
|
+
class MemoryPointer < Pointer
|
39
|
+
def initialize: (AbstractMemory::type_size size, ?Integer count, ?boolish clear) -> self
|
40
|
+
def self.from_string: (String s) -> instance
|
41
|
+
end
|
42
|
+
end
|
data/sig/ffi/struct.rbs
ADDED
@@ -0,0 +1,76 @@
|
|
1
|
+
module FFI
|
2
|
+
class Struct[out P < AbstractMemory, unchecked out E]
|
3
|
+
type layout = Library::ffi_lib_type | singleton(StructLayout::Field) | [layout, Integer]
|
4
|
+
|
5
|
+
type ptr = Type::Mapped[
|
6
|
+
StructByReference[Struct[AbstractMemory, untyped], AbstractMemory],
|
7
|
+
AbstractMemory, instance, untyped
|
8
|
+
]
|
9
|
+
def self.ptr: (?untyped flags) -> ptr # https://github.com/ffi/ffi/issues/1073
|
10
|
+
alias self.by_ref self.ptr
|
11
|
+
def self.in: () -> ptr
|
12
|
+
def self.out: () -> ptr
|
13
|
+
def self.val: () -> StructByValue[singleton(Struct)]
|
14
|
+
alias self.by_value self.val
|
15
|
+
|
16
|
+
alias self.alloc_inout self.new
|
17
|
+
alias self.alloc_in self.new
|
18
|
+
alias self.alloc_out self.new
|
19
|
+
alias self.new_inout self.new
|
20
|
+
alias self.new_in self.new
|
21
|
+
alias self.new_out self.new
|
22
|
+
|
23
|
+
def self.auto_ptr: () -> Type::Mapped[
|
24
|
+
ManagedStructConverter[ManagedStruct[AutoPointer, untyped], AutoPointer],
|
25
|
+
Pointer, instance, untyped
|
26
|
+
]
|
27
|
+
def self.layout: (*layout | Integer) -> StructLayout
|
28
|
+
| (Hash[Symbol, layout]) -> StructLayout
|
29
|
+
def self.size=: (Integer size) -> Integer
|
30
|
+
|
31
|
+
def self?.alignment: () -> Integer
|
32
|
+
def self?.members: () -> Array[Symbol]
|
33
|
+
def self?.offset_of: (Symbol name) -> Integer
|
34
|
+
def self?.offsets: () -> Array[[Symbol, Integer]]
|
35
|
+
def self?.size: -> Integer
|
36
|
+
|
37
|
+
def initialize: (?P pointer, *layout args) -> void
|
38
|
+
def []: (Symbol field_name) -> E
|
39
|
+
def []=: (Symbol field_name, E value) -> E
|
40
|
+
alias align alignment
|
41
|
+
def clear: () -> self
|
42
|
+
def layout: () -> StructLayout
|
43
|
+
def null?: () -> bool
|
44
|
+
def order: (AbstractMemory::order_in order) -> Struct[P, E]
|
45
|
+
| () -> AbstractMemory::order_out
|
46
|
+
def pointer: () -> P
|
47
|
+
alias to_ptr pointer
|
48
|
+
def values: () -> Array[E]
|
49
|
+
|
50
|
+
class InlineArray[out P < AbstractMemory, unchecked out E]
|
51
|
+
include Enumerable[E]
|
52
|
+
include AbstractMemory::_Size
|
53
|
+
|
54
|
+
def initialize: (P memory, StructLayout::Field field) -> self
|
55
|
+
def []: (Integer index) -> E
|
56
|
+
def []=: (Integer index, E value) -> E
|
57
|
+
def each: () { (E) -> void } -> self
|
58
|
+
def to_a: () -> Array[E]
|
59
|
+
def to_ptr: () -> P
|
60
|
+
end
|
61
|
+
|
62
|
+
class ManagedStructConverter[S < ManagedStruct[P, untyped], P < AutoPointer] < StructByReference[S, P]
|
63
|
+
def initialize: ...
|
64
|
+
def from_native: (Pointer ptr, untyped ctx) -> S
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
class ManagedStruct[out P < AutoPointer, unchecked out E] < Struct[P, E]
|
69
|
+
def self.release: (AbstractMemory ptr) -> void
|
70
|
+
def initialize: (Pointer pointer) -> self
|
71
|
+
end
|
72
|
+
|
73
|
+
class Union[out P < AbstractMemory, unchecked out E] < Struct[P, E]
|
74
|
+
def self.builder: () -> StructLayoutBuilder
|
75
|
+
end
|
76
|
+
end
|
@@ -0,0 +1,11 @@
|
|
1
|
+
module FFI
|
2
|
+
class StructByReference[S < Struct[P, untyped], P < AbstractMemory]
|
3
|
+
include DataConverter[P, S, untyped]
|
4
|
+
attr_reader struct_class: Struct[P, untyped]
|
5
|
+
|
6
|
+
def initialize: (S struct_class) -> void
|
7
|
+
def from_native: (P value, untyped ctx) -> S
|
8
|
+
def native_type: () -> Type::Builtin
|
9
|
+
def to_native: (S? value, untyped ctx) -> P
|
10
|
+
end
|
11
|
+
end
|
data/sig/ffi/type.rbs
ADDED
@@ -0,0 +1,39 @@
|
|
1
|
+
module FFI
|
2
|
+
class Type
|
3
|
+
class Array = ArrayType
|
4
|
+
class Function = FunctionType
|
5
|
+
class Struct = StructByValue
|
6
|
+
|
7
|
+
include AbstractMemory::_Size
|
8
|
+
def initialize: (Integer | Type value) -> self
|
9
|
+
def alignment: () -> Integer
|
10
|
+
def inspect: ...
|
11
|
+
|
12
|
+
class Builtin < Type
|
13
|
+
def inspect: ...
|
14
|
+
end
|
15
|
+
|
16
|
+
class Mapped[X < _DataConverter[N, R, C], N, R, C]
|
17
|
+
include _DataConverter[N, R, C]
|
18
|
+
|
19
|
+
def initialize: (X converter) -> self
|
20
|
+
def converter: () -> X
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
24
|
+
class ArrayType
|
25
|
+
def initialize: (Type component_type, Integer length) -> self
|
26
|
+
def element_type: -> Type
|
27
|
+
def length: -> Integer
|
28
|
+
end
|
29
|
+
|
30
|
+
class FunctionType < Type
|
31
|
+
def initialize:
|
32
|
+
(
|
33
|
+
ffi_type return_type, Array[ffi_type] param_types,
|
34
|
+
?blocking: boolish, ?convention: Library::convention, ?enums: Enums
|
35
|
+
) -> self
|
36
|
+
def param_types: () -> Array[Type]
|
37
|
+
def return_type: () -> Type
|
38
|
+
end
|
39
|
+
end
|
data/sig/ffi.rbs
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
module FFI
|
2
|
+
type ffi_type = Type | Symbol
|
3
|
+
type ffi_auto_type = ffi_type | DataConverter[untyped, untyped, untyped]
|
4
|
+
type type_map = Hash[Symbol | DataConverter[untyped, untyped, untyped], Type]
|
5
|
+
|
6
|
+
class CallbackInfo = FunctionType
|
7
|
+
class FunctionInfo = FunctionType
|
8
|
+
class NativeLibrary = DynamicLibrary
|
9
|
+
|
10
|
+
VERSION: String
|
11
|
+
TypeDefs: type_map
|
12
|
+
|
13
|
+
type current_process = Object
|
14
|
+
CURRENT_PROCESS: current_process
|
15
|
+
USE_THIS_PROCESS_AS_LIBRARY: current_process
|
16
|
+
|
17
|
+
private def self.custom_typedefs: () -> type_map
|
18
|
+
def self.errno: () -> Integer
|
19
|
+
def self.errno=: (Integer) -> nil
|
20
|
+
def self.find_type: (ffi_auto_type name, ?type_map? type_map) -> Type
|
21
|
+
def self.make_shareable: [T] (T obj) -> T
|
22
|
+
def self.map_library_name: (_ToS lib) -> String
|
23
|
+
def self.type_size: (ffi_auto_type type) -> Integer
|
24
|
+
def self.typedef: (ffi_auto_type old, Symbol add) -> Type
|
25
|
+
alias self.add_typedef self.typedef
|
26
|
+
end
|
data.tar.gz.sig
ADDED
Binary file
|