ffi 1.15.5-x64-mingw-ucrt
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/CHANGELOG.md +338 -0
- data/COPYING +49 -0
- data/Gemfile +14 -0
- data/LICENSE +24 -0
- data/LICENSE.SPECS +22 -0
- data/README.md +136 -0
- data/Rakefile +191 -0
- data/ffi.gemspec +42 -0
- data/lib/3.1/ffi_c.so +0 -0
- data/lib/ffi/abstract_memory.rb +44 -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 +47 -0
- data/lib/ffi/io.rb +62 -0
- data/lib/ffi/library.rb +592 -0
- data/lib/ffi/managedstruct.rb +84 -0
- data/lib/ffi/memorypointer.rb +1 -0
- data/lib/ffi/platform/aarch64-darwin/types.conf +130 -0
- data/lib/ffi/platform/aarch64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/aarch64-freebsd12/types.conf +181 -0
- data/lib/ffi/platform/aarch64-linux/types.conf +104 -0
- data/lib/ffi/platform/aarch64-openbsd/types.conf +134 -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 +132 -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 +52 -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 +130 -0
- data/lib/ffi/platform/powerpc-openbsd/types.conf +156 -0
- data/lib/ffi/platform/powerpc64-linux/types.conf +104 -0
- data/lib/ffi/platform/powerpc64le-linux/types.conf +100 -0
- data/lib/ffi/platform/riscv64-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-openbsd/types.conf +156 -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 +130 -0
- data/lib/ffi/platform/x86_64-dragonflybsd/types.conf +130 -0
- data/lib/ffi/platform/x86_64-freebsd/types.conf +128 -0
- data/lib/ffi/platform/x86_64-freebsd12/types.conf +158 -0
- data/lib/ffi/platform/x86_64-haiku/types.conf +117 -0
- data/lib/ffi/platform/x86_64-linux/types.conf +132 -0
- data/lib/ffi/platform/x86_64-msys/types.conf +119 -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 +52 -0
- data/lib/ffi/platform.rb +185 -0
- data/lib/ffi/pointer.rb +167 -0
- data/lib/ffi/struct.rb +316 -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 +232 -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 +195 -0
- data/lib/ffi/tools/types_generator.rb +137 -0
- data/lib/ffi/types.rb +194 -0
- data/lib/ffi/union.rb +43 -0
- data/lib/ffi/variadic.rb +69 -0
- data/lib/ffi/version.rb +3 -0
- data/lib/ffi.rb +27 -0
- data/rakelib/ffi_gem_helper.rb +65 -0
- data/samples/getlogin.rb +8 -0
- data/samples/getpid.rb +8 -0
- data/samples/gettimeofday.rb +18 -0
- data/samples/hello.rb +8 -0
- data/samples/inotify.rb +60 -0
- data/samples/pty.rb +75 -0
- data/samples/qsort.rb +20 -0
- metadata +207 -0
@@ -0,0 +1,122 @@
|
|
1
|
+
rbx.platform.typedef.*caddr_t = char
|
2
|
+
rbx.platform.typedef.blkcnt64_t = long
|
3
|
+
rbx.platform.typedef.blkcnt_t = long
|
4
|
+
rbx.platform.typedef.blksize_t = int
|
5
|
+
rbx.platform.typedef.clock_t = long
|
6
|
+
rbx.platform.typedef.clockid_t = int
|
7
|
+
rbx.platform.typedef.cnt_t = short
|
8
|
+
rbx.platform.typedef.cpu_flag_t = ushort
|
9
|
+
rbx.platform.typedef.ctid_t = int
|
10
|
+
rbx.platform.typedef.daddr_t = long
|
11
|
+
rbx.platform.typedef.datalink_id_t = uint
|
12
|
+
rbx.platform.typedef.dev_t = ulong
|
13
|
+
rbx.platform.typedef.diskaddr_t = ulong_long
|
14
|
+
rbx.platform.typedef.disp_lock_t = uchar
|
15
|
+
rbx.platform.typedef.fd_mask = long
|
16
|
+
rbx.platform.typedef.fds_mask = long
|
17
|
+
rbx.platform.typedef.fsblkcnt64_t = ulong
|
18
|
+
rbx.platform.typedef.fsblkcnt_t = ulong
|
19
|
+
rbx.platform.typedef.fsfilcnt64_t = ulong
|
20
|
+
rbx.platform.typedef.fsfilcnt_t = ulong
|
21
|
+
rbx.platform.typedef.gid_t = uint
|
22
|
+
rbx.platform.typedef.hrtime_t = long_long
|
23
|
+
rbx.platform.typedef.id_t = int
|
24
|
+
rbx.platform.typedef.in_addr_t = uint
|
25
|
+
rbx.platform.typedef.in_port_t = ushort
|
26
|
+
rbx.platform.typedef.index_t = short
|
27
|
+
rbx.platform.typedef.ino64_t = ulong
|
28
|
+
rbx.platform.typedef.ino_t = ulong
|
29
|
+
rbx.platform.typedef.int16_t = short
|
30
|
+
rbx.platform.typedef.int32_t = int
|
31
|
+
rbx.platform.typedef.int64_t = long
|
32
|
+
rbx.platform.typedef.int8_t = char
|
33
|
+
rbx.platform.typedef.int_fast16_t = int
|
34
|
+
rbx.platform.typedef.int_fast32_t = int
|
35
|
+
rbx.platform.typedef.int_fast64_t = long
|
36
|
+
rbx.platform.typedef.int_fast8_t = char
|
37
|
+
rbx.platform.typedef.int_least16_t = short
|
38
|
+
rbx.platform.typedef.int_least32_t = int
|
39
|
+
rbx.platform.typedef.int_least64_t = long
|
40
|
+
rbx.platform.typedef.int_least8_t = char
|
41
|
+
rbx.platform.typedef.intmax_t = long
|
42
|
+
rbx.platform.typedef.intptr_t = long
|
43
|
+
rbx.platform.typedef.ipaddr_t = uint
|
44
|
+
rbx.platform.typedef.k_fltset_t = uint
|
45
|
+
rbx.platform.typedef.key_t = int
|
46
|
+
rbx.platform.typedef.len_t = ulong_long
|
47
|
+
rbx.platform.typedef.lgrp_id_t = int
|
48
|
+
rbx.platform.typedef.lock_t = uchar
|
49
|
+
rbx.platform.typedef.longlong_t = long_long
|
50
|
+
rbx.platform.typedef.major_t = uint
|
51
|
+
rbx.platform.typedef.minor_t = uint
|
52
|
+
rbx.platform.typedef.mode_t = uint
|
53
|
+
rbx.platform.typedef.model_t = uint
|
54
|
+
rbx.platform.typedef.nfds_t = ulong
|
55
|
+
rbx.platform.typedef.nlink_t = uint
|
56
|
+
rbx.platform.typedef.o_dev_t = short
|
57
|
+
rbx.platform.typedef.o_gid_t = ushort
|
58
|
+
rbx.platform.typedef.o_ino_t = ushort
|
59
|
+
rbx.platform.typedef.o_mode_t = ushort
|
60
|
+
rbx.platform.typedef.o_nlink_t = short
|
61
|
+
rbx.platform.typedef.o_pid_t = short
|
62
|
+
rbx.platform.typedef.o_uid_t = ushort
|
63
|
+
rbx.platform.typedef.off64_t = long
|
64
|
+
rbx.platform.typedef.off_t = long
|
65
|
+
rbx.platform.typedef.offset_t = long_long
|
66
|
+
rbx.platform.typedef.pad64_t = long
|
67
|
+
rbx.platform.typedef.pfn_t = ulong
|
68
|
+
rbx.platform.typedef.pgcnt_t = ulong
|
69
|
+
rbx.platform.typedef.pid_t = int
|
70
|
+
rbx.platform.typedef.poolid_t = int
|
71
|
+
rbx.platform.typedef.pri_t = short
|
72
|
+
rbx.platform.typedef.projid_t = int
|
73
|
+
rbx.platform.typedef.pthread_key_t = uint
|
74
|
+
rbx.platform.typedef.pthread_t = uint
|
75
|
+
rbx.platform.typedef.ptrdiff_t = long
|
76
|
+
rbx.platform.typedef.rlim64_t = ulong_long
|
77
|
+
rbx.platform.typedef.rlim_t = ulong
|
78
|
+
rbx.platform.typedef.sa_family_t = ushort
|
79
|
+
rbx.platform.typedef.size_t = ulong
|
80
|
+
rbx.platform.typedef.socklen_t = uint
|
81
|
+
rbx.platform.typedef.spgcnt_t = long
|
82
|
+
rbx.platform.typedef.ssize_t = long
|
83
|
+
rbx.platform.typedef.suseconds_t = long
|
84
|
+
rbx.platform.typedef.sysid_t = short
|
85
|
+
rbx.platform.typedef.t_scalar_t = int
|
86
|
+
rbx.platform.typedef.t_uscalar_t = uint
|
87
|
+
rbx.platform.typedef.taskid_t = int
|
88
|
+
rbx.platform.typedef.time_t = long
|
89
|
+
rbx.platform.typedef.timer_t = int
|
90
|
+
rbx.platform.typedef.u_char = uchar
|
91
|
+
rbx.platform.typedef.u_int = uint
|
92
|
+
rbx.platform.typedef.u_long = ulong
|
93
|
+
rbx.platform.typedef.u_longlong_t = ulong_long
|
94
|
+
rbx.platform.typedef.u_offset_t = ulong_long
|
95
|
+
rbx.platform.typedef.u_short = ushort
|
96
|
+
rbx.platform.typedef.uchar_t = uchar
|
97
|
+
rbx.platform.typedef.uid_t = uint
|
98
|
+
rbx.platform.typedef.uint = uint
|
99
|
+
rbx.platform.typedef.uint16_t = ushort
|
100
|
+
rbx.platform.typedef.uint32_t = uint
|
101
|
+
rbx.platform.typedef.uint64_t = ulong
|
102
|
+
rbx.platform.typedef.uint8_t = uchar
|
103
|
+
rbx.platform.typedef.uint_fast16_t = uint
|
104
|
+
rbx.platform.typedef.uint_fast32_t = uint
|
105
|
+
rbx.platform.typedef.uint_fast64_t = ulong
|
106
|
+
rbx.platform.typedef.uint_fast8_t = uchar
|
107
|
+
rbx.platform.typedef.uint_least16_t = ushort
|
108
|
+
rbx.platform.typedef.uint_least32_t = uint
|
109
|
+
rbx.platform.typedef.uint_least64_t = ulong
|
110
|
+
rbx.platform.typedef.uint_least8_t = uchar
|
111
|
+
rbx.platform.typedef.uint_t = uint
|
112
|
+
rbx.platform.typedef.uintmax_t = ulong
|
113
|
+
rbx.platform.typedef.uintptr_t = ulong
|
114
|
+
rbx.platform.typedef.ulong = ulong
|
115
|
+
rbx.platform.typedef.ulong_t = ulong
|
116
|
+
rbx.platform.typedef.unchar = uchar
|
117
|
+
rbx.platform.typedef.upad64_t = ulong
|
118
|
+
rbx.platform.typedef.use_t = uchar
|
119
|
+
rbx.platform.typedef.useconds_t = uint
|
120
|
+
rbx.platform.typedef.ushort = ushort
|
121
|
+
rbx.platform.typedef.ushort_t = ushort
|
122
|
+
rbx.platform.typedef.zoneid_t = int
|
@@ -0,0 +1,52 @@
|
|
1
|
+
rbx.platform.typedef.__time32_t = long
|
2
|
+
rbx.platform.typedef.__time64_t = long_long
|
3
|
+
rbx.platform.typedef._dev_t = uint
|
4
|
+
rbx.platform.typedef._ino_t = ushort
|
5
|
+
rbx.platform.typedef._mode_t = ushort
|
6
|
+
rbx.platform.typedef._off64_t = long_long
|
7
|
+
rbx.platform.typedef._off_t = long
|
8
|
+
rbx.platform.typedef._pid_t = long_long
|
9
|
+
rbx.platform.typedef._sigset_t = ulong_long
|
10
|
+
rbx.platform.typedef.dev_t = uint
|
11
|
+
rbx.platform.typedef.errno_t = int
|
12
|
+
rbx.platform.typedef.ino_t = ushort
|
13
|
+
rbx.platform.typedef.int16_t = short
|
14
|
+
rbx.platform.typedef.int32_t = int
|
15
|
+
rbx.platform.typedef.int64_t = long_long
|
16
|
+
rbx.platform.typedef.int8_t = char
|
17
|
+
rbx.platform.typedef.int_fast16_t = short
|
18
|
+
rbx.platform.typedef.int_fast32_t = int
|
19
|
+
rbx.platform.typedef.int_fast64_t = long_long
|
20
|
+
rbx.platform.typedef.int_fast8_t = char
|
21
|
+
rbx.platform.typedef.int_least16_t = short
|
22
|
+
rbx.platform.typedef.int_least32_t = int
|
23
|
+
rbx.platform.typedef.int_least64_t = long_long
|
24
|
+
rbx.platform.typedef.int_least8_t = char
|
25
|
+
rbx.platform.typedef.intmax_t = long_long
|
26
|
+
rbx.platform.typedef.intptr_t = long_long
|
27
|
+
rbx.platform.typedef.mode_t = ushort
|
28
|
+
rbx.platform.typedef.off32_t = long
|
29
|
+
rbx.platform.typedef.off64_t = long_long
|
30
|
+
rbx.platform.typedef.off_t = long_long
|
31
|
+
rbx.platform.typedef.pid_t = long_long
|
32
|
+
rbx.platform.typedef.ptrdiff_t = long_long
|
33
|
+
rbx.platform.typedef.rsize_t = ulong_long
|
34
|
+
rbx.platform.typedef.size_t = ulong_long
|
35
|
+
rbx.platform.typedef.ssize_t = long_long
|
36
|
+
rbx.platform.typedef.time_t = long_long
|
37
|
+
rbx.platform.typedef.uint16_t = ushort
|
38
|
+
rbx.platform.typedef.uint64_t = ulong_long
|
39
|
+
rbx.platform.typedef.uint8_t = uchar
|
40
|
+
rbx.platform.typedef.uint_fast16_t = ushort
|
41
|
+
rbx.platform.typedef.uint_fast32_t = uint
|
42
|
+
rbx.platform.typedef.uint_fast64_t = ulong_long
|
43
|
+
rbx.platform.typedef.uint_fast8_t = uchar
|
44
|
+
rbx.platform.typedef.uint_least16_t = ushort
|
45
|
+
rbx.platform.typedef.uint_least64_t = ulong_long
|
46
|
+
rbx.platform.typedef.uint_least8_t = uchar
|
47
|
+
rbx.platform.typedef.uintmax_t = ulong_long
|
48
|
+
rbx.platform.typedef.uintptr_t = ulong_long
|
49
|
+
rbx.platform.typedef.useconds_t = uint
|
50
|
+
rbx.platform.typedef.wchar_t = ushort
|
51
|
+
rbx.platform.typedef.wctype_t = ushort
|
52
|
+
rbx.platform.typedef.wint_t = ushort
|
data/lib/ffi/platform.rb
ADDED
@@ -0,0 +1,185 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (C) 2008, 2009 Wayne Meissner
|
3
|
+
#
|
4
|
+
# This file is part of ruby-ffi.
|
5
|
+
#
|
6
|
+
# All rights reserved.
|
7
|
+
#
|
8
|
+
# Redistribution and use in source and binary forms, with or without
|
9
|
+
# modification, are permitted provided that the following conditions are met:
|
10
|
+
#
|
11
|
+
# * Redistributions of source code must retain the above copyright notice, this
|
12
|
+
# list of conditions and the following disclaimer.
|
13
|
+
# * Redistributions in binary form must reproduce the above copyright notice
|
14
|
+
# this list of conditions and the following disclaimer in the documentation
|
15
|
+
# and/or other materials provided with the distribution.
|
16
|
+
# * Neither the name of the Ruby FFI project nor the names of its contributors
|
17
|
+
# may be used to endorse or promote products derived from this software
|
18
|
+
# without specific prior written permission.
|
19
|
+
#
|
20
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
21
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
+
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
24
|
+
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
25
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
26
|
+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
27
|
+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
28
|
+
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
29
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.#
|
30
|
+
|
31
|
+
require 'rbconfig'
|
32
|
+
module FFI
|
33
|
+
class PlatformError < LoadError; end
|
34
|
+
|
35
|
+
# This module defines different constants and class methods to play with
|
36
|
+
# various platforms.
|
37
|
+
module Platform
|
38
|
+
OS = case RbConfig::CONFIG['host_os'].downcase
|
39
|
+
when /linux/
|
40
|
+
"linux"
|
41
|
+
when /darwin/
|
42
|
+
"darwin"
|
43
|
+
when /freebsd/
|
44
|
+
"freebsd"
|
45
|
+
when /netbsd/
|
46
|
+
"netbsd"
|
47
|
+
when /openbsd/
|
48
|
+
"openbsd"
|
49
|
+
when /dragonfly/
|
50
|
+
"dragonflybsd"
|
51
|
+
when /sunos|solaris/
|
52
|
+
"solaris"
|
53
|
+
when /mingw|mswin/
|
54
|
+
"windows"
|
55
|
+
else
|
56
|
+
RbConfig::CONFIG['host_os'].downcase
|
57
|
+
end
|
58
|
+
|
59
|
+
OSVERSION = RbConfig::CONFIG['host_os'].gsub(/[^\d]/, '').to_i
|
60
|
+
|
61
|
+
CPU = RbConfig::CONFIG['host_cpu']
|
62
|
+
|
63
|
+
ARCH = case CPU.downcase
|
64
|
+
when /amd64|x86_64|x64/
|
65
|
+
"x86_64"
|
66
|
+
when /i\d86|x86|i86pc/
|
67
|
+
"i386"
|
68
|
+
when /ppc64|powerpc64/
|
69
|
+
"powerpc64"
|
70
|
+
when /ppc|powerpc/
|
71
|
+
"powerpc"
|
72
|
+
when /sparcv9|sparc64/
|
73
|
+
"sparcv9"
|
74
|
+
when /arm64|aarch64/ # MacOS calls it "arm64", other operating systems "aarch64"
|
75
|
+
"aarch64"
|
76
|
+
when /^arm/
|
77
|
+
if OS == "darwin" # Ruby before 3.0 reports "arm" instead of "arm64" as host_cpu on darwin
|
78
|
+
"aarch64"
|
79
|
+
else
|
80
|
+
"arm"
|
81
|
+
end
|
82
|
+
else
|
83
|
+
RbConfig::CONFIG['host_cpu']
|
84
|
+
end
|
85
|
+
|
86
|
+
private
|
87
|
+
# @param [String) os
|
88
|
+
# @return [Boolean]
|
89
|
+
# Test if current OS is +os+.
|
90
|
+
def self.is_os(os)
|
91
|
+
OS == os
|
92
|
+
end
|
93
|
+
|
94
|
+
IS_GNU = defined?(GNU_LIBC)
|
95
|
+
IS_LINUX = is_os("linux")
|
96
|
+
IS_MAC = is_os("darwin")
|
97
|
+
IS_FREEBSD = is_os("freebsd")
|
98
|
+
IS_NETBSD = is_os("netbsd")
|
99
|
+
IS_OPENBSD = is_os("openbsd")
|
100
|
+
IS_DRAGONFLYBSD = is_os("dragonfly")
|
101
|
+
IS_SOLARIS = is_os("solaris")
|
102
|
+
IS_WINDOWS = is_os("windows")
|
103
|
+
IS_BSD = IS_MAC || IS_FREEBSD || IS_NETBSD || IS_OPENBSD || IS_DRAGONFLYBSD
|
104
|
+
|
105
|
+
# Add the version for known ABI breaks
|
106
|
+
name_version = "12" if IS_FREEBSD && OSVERSION >= 12 # 64-bit inodes
|
107
|
+
|
108
|
+
NAME = "#{ARCH}-#{OS}#{name_version}"
|
109
|
+
CONF_DIR = File.join(File.dirname(__FILE__), 'platform', NAME)
|
110
|
+
|
111
|
+
public
|
112
|
+
|
113
|
+
LIBPREFIX = case OS
|
114
|
+
when /windows|msys/
|
115
|
+
''
|
116
|
+
when /cygwin/
|
117
|
+
'cyg'
|
118
|
+
else
|
119
|
+
'lib'
|
120
|
+
end
|
121
|
+
|
122
|
+
LIBSUFFIX = case OS
|
123
|
+
when /darwin/
|
124
|
+
'dylib'
|
125
|
+
when /linux|bsd|solaris/
|
126
|
+
'so'
|
127
|
+
when /windows|cygwin|msys/
|
128
|
+
'dll'
|
129
|
+
else
|
130
|
+
# Punt and just assume a sane unix (i.e. anything but AIX)
|
131
|
+
'so'
|
132
|
+
end
|
133
|
+
|
134
|
+
LIBC = if IS_WINDOWS
|
135
|
+
crtname = RbConfig::CONFIG["RUBY_SO_NAME"][/msvc\w+/] || 'ucrtbase'
|
136
|
+
"#{crtname}.dll"
|
137
|
+
elsif IS_GNU
|
138
|
+
GNU_LIBC
|
139
|
+
elsif OS == 'cygwin'
|
140
|
+
"cygwin1.dll"
|
141
|
+
elsif OS == 'msys'
|
142
|
+
# Not sure how msys 1.0 behaves, tested on MSYS2.
|
143
|
+
"msys-2.0.dll"
|
144
|
+
else
|
145
|
+
"#{LIBPREFIX}c.#{LIBSUFFIX}"
|
146
|
+
end
|
147
|
+
|
148
|
+
LITTLE_ENDIAN = 1234 unless defined?(LITTLE_ENDIAN)
|
149
|
+
BIG_ENDIAN = 4321 unless defined?(BIG_ENDIAN)
|
150
|
+
unless defined?(BYTE_ORDER)
|
151
|
+
BYTE_ORDER = [0x12345678].pack("I") == [0x12345678].pack("N") ? BIG_ENDIAN : LITTLE_ENDIAN
|
152
|
+
end
|
153
|
+
|
154
|
+
# Test if current OS is a *BSD (include MAC)
|
155
|
+
# @return [Boolean]
|
156
|
+
def self.bsd?
|
157
|
+
IS_BSD
|
158
|
+
end
|
159
|
+
|
160
|
+
# Test if current OS is Windows
|
161
|
+
# @return [Boolean]
|
162
|
+
def self.windows?
|
163
|
+
IS_WINDOWS
|
164
|
+
end
|
165
|
+
|
166
|
+
# Test if current OS is Mac OS
|
167
|
+
# @return [Boolean]
|
168
|
+
def self.mac?
|
169
|
+
IS_MAC
|
170
|
+
end
|
171
|
+
|
172
|
+
# Test if current OS is Solaris (Sun OS)
|
173
|
+
# @return [Boolean]
|
174
|
+
def self.solaris?
|
175
|
+
IS_SOLARIS
|
176
|
+
end
|
177
|
+
|
178
|
+
# Test if current OS is a unix OS
|
179
|
+
# @return [Boolean]
|
180
|
+
def self.unix?
|
181
|
+
!IS_WINDOWS
|
182
|
+
end
|
183
|
+
end
|
184
|
+
end
|
185
|
+
|
data/lib/ffi/pointer.rb
ADDED
@@ -0,0 +1,167 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (C) 2008, 2009 Wayne Meissner
|
3
|
+
# Copyright (c) 2007, 2008 Evan Phoenix
|
4
|
+
#
|
5
|
+
# This file is part of ruby-ffi.
|
6
|
+
#
|
7
|
+
# All rights reserved.
|
8
|
+
#
|
9
|
+
# Redistribution and use in source and binary forms, with or without
|
10
|
+
# modification, are permitted provided that the following conditions are met:
|
11
|
+
#
|
12
|
+
# * Redistributions of source code must retain the above copyright notice, this
|
13
|
+
# list of conditions and the following disclaimer.
|
14
|
+
# * Redistributions in binary form must reproduce the above copyright notice
|
15
|
+
# this list of conditions and the following disclaimer in the documentation
|
16
|
+
# and/or other materials provided with the distribution.
|
17
|
+
# * Neither the name of the Ruby FFI project nor the names of its contributors
|
18
|
+
# may be used to endorse or promote products derived from this software
|
19
|
+
# without specific prior written permission.
|
20
|
+
#
|
21
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
22
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
23
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
24
|
+
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
25
|
+
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
26
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
27
|
+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
28
|
+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
29
|
+
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
30
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
31
|
+
#
|
32
|
+
|
33
|
+
require 'ffi/platform'
|
34
|
+
|
35
|
+
# NOTE: all method definitions in this file are conditional on
|
36
|
+
# whether they are not already defined. This is needed because
|
37
|
+
# some Ruby implementations (e.g., TruffleRuby) might already
|
38
|
+
# provide these methods due to using FFI internally, and we
|
39
|
+
# should not override them to avoid warnings.
|
40
|
+
|
41
|
+
module FFI
|
42
|
+
class Pointer
|
43
|
+
|
44
|
+
# Pointer size
|
45
|
+
SIZE = Platform::ADDRESS_SIZE / 8 unless const_defined?(:SIZE)
|
46
|
+
|
47
|
+
# Return the size of a pointer on the current platform, in bytes
|
48
|
+
# @return [Numeric]
|
49
|
+
def self.size
|
50
|
+
SIZE
|
51
|
+
end unless respond_to?(:size)
|
52
|
+
|
53
|
+
# @param [nil,Numeric] len length of string to return
|
54
|
+
# @return [String]
|
55
|
+
# Read pointer's contents as a string, or the first +len+ bytes of the
|
56
|
+
# equivalent string if +len+ is not +nil+.
|
57
|
+
def read_string(len=nil)
|
58
|
+
if len
|
59
|
+
return ''.b if len == 0
|
60
|
+
get_bytes(0, len)
|
61
|
+
else
|
62
|
+
get_string(0)
|
63
|
+
end
|
64
|
+
end unless method_defined?(:read_string)
|
65
|
+
|
66
|
+
# @param [Numeric] len length of string to return
|
67
|
+
# @return [String]
|
68
|
+
# Read the first +len+ bytes of pointer's contents as a string.
|
69
|
+
#
|
70
|
+
# Same as:
|
71
|
+
# ptr.read_string(len) # with len not nil
|
72
|
+
def read_string_length(len)
|
73
|
+
get_bytes(0, len)
|
74
|
+
end unless method_defined?(:read_string_length)
|
75
|
+
|
76
|
+
# @return [String]
|
77
|
+
# Read pointer's contents as a string.
|
78
|
+
#
|
79
|
+
# Same as:
|
80
|
+
# ptr.read_string # with no len
|
81
|
+
def read_string_to_null
|
82
|
+
get_string(0)
|
83
|
+
end unless method_defined?(:read_string_to_null)
|
84
|
+
|
85
|
+
# @param [String] str string to write
|
86
|
+
# @param [Numeric] len length of string to return
|
87
|
+
# @return [self]
|
88
|
+
# Write +len+ first bytes of +str+ in pointer's contents.
|
89
|
+
#
|
90
|
+
# Same as:
|
91
|
+
# ptr.write_string(str, len) # with len not nil
|
92
|
+
def write_string_length(str, len)
|
93
|
+
put_bytes(0, str, 0, len)
|
94
|
+
end unless method_defined?(:write_string_length)
|
95
|
+
|
96
|
+
# @param [String] str string to write
|
97
|
+
# @param [Numeric] len length of string to return
|
98
|
+
# @return [self]
|
99
|
+
# Write +str+ in pointer's contents, or first +len+ bytes if
|
100
|
+
# +len+ is not +nil+.
|
101
|
+
def write_string(str, len=nil)
|
102
|
+
len = str.bytesize unless len
|
103
|
+
# Write the string data without NUL termination
|
104
|
+
put_bytes(0, str, 0, len)
|
105
|
+
end unless method_defined?(:write_string)
|
106
|
+
|
107
|
+
# @param [Type] type type of data to read from pointer's contents
|
108
|
+
# @param [Symbol] reader method to send to +self+ to read +type+
|
109
|
+
# @param [Numeric] length
|
110
|
+
# @return [Array]
|
111
|
+
# Read an array of +type+ of length +length+.
|
112
|
+
# @example
|
113
|
+
# ptr.read_array_of_type(TYPE_UINT8, :read_uint8, 4) # -> [1, 2, 3, 4]
|
114
|
+
def read_array_of_type(type, reader, length)
|
115
|
+
ary = []
|
116
|
+
size = FFI.type_size(type)
|
117
|
+
tmp = self
|
118
|
+
length.times { |j|
|
119
|
+
ary << tmp.send(reader)
|
120
|
+
tmp += size unless j == length-1 # avoid OOB
|
121
|
+
}
|
122
|
+
ary
|
123
|
+
end unless method_defined?(:read_array_of_type)
|
124
|
+
|
125
|
+
# @param [Type] type type of data to write to pointer's contents
|
126
|
+
# @param [Symbol] writer method to send to +self+ to write +type+
|
127
|
+
# @param [Array] ary
|
128
|
+
# @return [self]
|
129
|
+
# Write +ary+ in pointer's contents as +type+.
|
130
|
+
# @example
|
131
|
+
# ptr.write_array_of_type(TYPE_UINT8, :put_uint8, [1, 2, 3 ,4])
|
132
|
+
def write_array_of_type(type, writer, ary)
|
133
|
+
size = FFI.type_size(type)
|
134
|
+
ary.each_with_index { |val, i|
|
135
|
+
break unless i < self.size
|
136
|
+
self.send(writer, i * size, val)
|
137
|
+
}
|
138
|
+
self
|
139
|
+
end unless method_defined?(:write_array_of_type)
|
140
|
+
|
141
|
+
# @return [self]
|
142
|
+
def to_ptr
|
143
|
+
self
|
144
|
+
end unless method_defined?(:to_ptr)
|
145
|
+
|
146
|
+
# @param [Symbol,Type] type of data to read
|
147
|
+
# @return [Object]
|
148
|
+
# Read pointer's contents as +type+
|
149
|
+
#
|
150
|
+
# Same as:
|
151
|
+
# ptr.get(type, 0)
|
152
|
+
def read(type)
|
153
|
+
get(type, 0)
|
154
|
+
end unless method_defined?(:read)
|
155
|
+
|
156
|
+
# @param [Symbol,Type] type of data to read
|
157
|
+
# @param [Object] value to write
|
158
|
+
# @return [nil]
|
159
|
+
# Write +value+ of type +type+ to pointer's content
|
160
|
+
#
|
161
|
+
# Same as:
|
162
|
+
# ptr.put(type, 0)
|
163
|
+
def write(type, value)
|
164
|
+
put(type, 0, value)
|
165
|
+
end unless method_defined?(:write)
|
166
|
+
end
|
167
|
+
end
|