ffi 1.11.3-java → 1.14.0-java
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +93 -0
- data/Gemfile +17 -0
- data/LICENSE.SPECS +22 -0
- data/README.md +20 -3
- data/Rakefile +24 -43
- data/ffi.gemspec +43 -0
- data/lib/ffi.rb +28 -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.rb +188 -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 +128 -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/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/pointer.rb +181 -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 +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 +137 -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 +8 -0
- data/samples/inotify.rb +60 -0
- data/samples/pty.rb +75 -0
- data/samples/qsort.rb +20 -0
- metadata +174 -7
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e1ab4d534f9cb242444b3ec7042f1b368b8e3d71f54f9503c831b3fa49da5d1b
|
4
|
+
data.tar.gz: 57ba63261c35e46d782160767a6b8239152f5978d5cc2ef66cde3ee76c3974e4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 044cbed458a7b7fa99ee830a7db1c708cfad04da10b62d28c2f1189e6c251f80c02e614e98fc98c9ab1bac3ffce895eb72bc4114291e648ac698781b694bd99a
|
7
|
+
data.tar.gz: 007624f31a236f1658a957835b377d62bafce078a1a0f19cdffa176a8630db36e8e1c6eefd59ed72ac7266a04d3da2be9519c833073b19f9aa9aad64dba10f1c
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,96 @@
|
|
1
|
+
1.14.0 / 2020-12-18
|
2
|
+
-------------------
|
3
|
+
|
4
|
+
Added:
|
5
|
+
* Add types.conf for x86_64-msys, x86_64-haiku, aarch64-openbsd and aarch64-darwin (alias arm64-darwin)
|
6
|
+
* Add method AbstractMemory#size_limit? . #829
|
7
|
+
* Add new extconf option --enable-libffi-alloc which is enabled per default on Apple M1 (arm64-darwin).
|
8
|
+
|
9
|
+
Changed:
|
10
|
+
* Do NULL pointer check only when array length > 0 . #305
|
11
|
+
* Raise an error on an unknown order argument. #830
|
12
|
+
* Change FFI::Pointer#write_string to terminate with a NUL byte like other string methods. #805
|
13
|
+
* Update bundled libffi to latest master.
|
14
|
+
|
15
|
+
Removed:
|
16
|
+
* Remove win32/stdint.h and stdbool.h because of copyright issue. #693
|
17
|
+
|
18
|
+
Fixed:
|
19
|
+
* Fix possible UTF-8 load error in loader script interpretation. #792
|
20
|
+
* Fix segfault on non-array argument to #write_array_of_*
|
21
|
+
* Fix memory leak in MethodHandle . #815
|
22
|
+
* Fix possible segfault in combination with fiddle or other libffi using gems . #835
|
23
|
+
* Fix possibility to use ffi ruby gem with JRuby-9.3 . #763
|
24
|
+
|
25
|
+
|
26
|
+
1.13.1 / 2020-06-09
|
27
|
+
-------------------
|
28
|
+
|
29
|
+
Changed:
|
30
|
+
* Revert use of `ucrtbase.dll` as default C library on Windows-MINGW.
|
31
|
+
`ucrtbase.dll` is still used on MSWIN target. #790
|
32
|
+
* Test for `ffi_prep_closure_loc()` to make sure we can use this function.
|
33
|
+
This fixes incorrect use of system libffi on MacOS Mojave (10.14). #787
|
34
|
+
* Update types.conf on x86_64-dragonflybsd
|
35
|
+
|
36
|
+
|
37
|
+
1.13.0 / 2020-06-01
|
38
|
+
-------------------
|
39
|
+
|
40
|
+
Added:
|
41
|
+
* Add TruffleRuby support. Almost all specs are running on TruffleRuby and succeed. #768
|
42
|
+
* Add ruby source files to the java gem. This allows to ship the Ruby library code per platform java gem and add it as a default gem to JRuby. #763
|
43
|
+
* Add FFI::Platform::LONG_DOUBLE_SIZE
|
44
|
+
* Add bounds checks for writing to an inline char[] . #756
|
45
|
+
* Add long double as callback return value. #771
|
46
|
+
* Update type definitions and add types from stdint.h and stddef.h on i386-windows, x86_64-windows, x86_64-darwin, x86_64-linux, arm-linux, powerpc-linux. #749
|
47
|
+
* Add new type definitions for powerpc-openbsd and sparcv9-openbsd. #775, #778
|
48
|
+
|
49
|
+
Changed:
|
50
|
+
* Raise required ruby version to >= 2.3.
|
51
|
+
* Lots of cleanups and improvements in library, specs and benchmarks.
|
52
|
+
* Fix a lot of compiler warnings at the C-extension
|
53
|
+
* Fix several install issues on MacOS:
|
54
|
+
* Look for libffi in SDK paths, since recent versions of macOS removed it from `/usr/include` . #757
|
55
|
+
* Fix error `ld: library not found for -lgcc_s.10.4`
|
56
|
+
* Don't built for i386 architecture as it is deprecated
|
57
|
+
* Several fixes for MSVC build on Windows. #779
|
58
|
+
* Use `ucrtbase.dll` as default C library on Windows instead of old `msvcrt.dll`. #779
|
59
|
+
* Update builtin libffi to fix a Powerpc issue with parameters of type long
|
60
|
+
* Allow unmodified sourcing of (the ruby code of) this gem in JRuby and TruffleRuby as a default gem. #747
|
61
|
+
* Improve check to detect if a module has a #find_type method suitable for FFI. This fixes compatibility with stdlib `mkmf` . #776
|
62
|
+
|
63
|
+
Removed:
|
64
|
+
* Reject callback with `:string` return type at definition, because it didn't work so far and is not save to use. #751, #782
|
65
|
+
|
66
|
+
|
67
|
+
1.12.2 / 2020-02-01
|
68
|
+
-------------------
|
69
|
+
|
70
|
+
* Fix possible segfault at FFI::Struct#[] and []= after GC.compact . #742
|
71
|
+
|
72
|
+
|
73
|
+
1.12.1 / 2020-01-14
|
74
|
+
-------------------
|
75
|
+
|
76
|
+
Added:
|
77
|
+
* Add binary gem support for ruby-2.7 on Windows
|
78
|
+
|
79
|
+
|
80
|
+
1.12.0 / 2020-01-14
|
81
|
+
-------------------
|
82
|
+
|
83
|
+
Added:
|
84
|
+
* FFI::VERSION is defined as part of `require 'ffi'` now.
|
85
|
+
It is no longer necessary to `require 'ffi/version'` .
|
86
|
+
|
87
|
+
Changed:
|
88
|
+
* Update libffi to latest master.
|
89
|
+
|
90
|
+
Deprecated:
|
91
|
+
* Overwriting struct layouts is now warned and will be disallowed in ffi-2.0. #734, #735
|
92
|
+
|
93
|
+
|
1
94
|
1.11.3 / 2019-11-25
|
2
95
|
-------------------
|
3
96
|
|
data/Gemfile
ADDED
@@ -0,0 +1,17 @@
|
|
1
|
+
source 'https://rubygems.org'
|
2
|
+
|
3
|
+
group :development do
|
4
|
+
gem 'rake', '~> 13.0'
|
5
|
+
gem 'rake-compiler', '~> 1.0.3'
|
6
|
+
gem 'rake-compiler-dock', '~> 1.0'
|
7
|
+
gem 'rspec', '~> 3.0'
|
8
|
+
# irb is a dependency of rubygems-tasks 0.2.5.
|
9
|
+
# irb versions > 1.1.1 depend on reline,
|
10
|
+
# which sometimes causes 'bundle install' to fail on Ruby <= 2.4: https://github.com/rubygems/rubygems/issues/3463
|
11
|
+
gem 'rubygems-tasks', '>= 0.2', '< 0.2.5', :require => 'rubygems/tasks'
|
12
|
+
end
|
13
|
+
|
14
|
+
group :doc do
|
15
|
+
gem 'kramdown'
|
16
|
+
gem 'yard', '~> 0.9'
|
17
|
+
end
|
data/LICENSE.SPECS
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2008-2012 Ruby-FFI contributors
|
2
|
+
|
3
|
+
Permission is hereby granted, free of charge, to any person
|
4
|
+
obtaining a copy of this software and associated documentation
|
5
|
+
files (the "Software"), to deal in the Software without
|
6
|
+
restriction, including without limitation the rights to use,
|
7
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
|
+
copies of the Software, and to permit persons to whom the
|
9
|
+
Software is furnished to do so, subject to the following
|
10
|
+
conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be
|
13
|
+
included in all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
17
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
18
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
19
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
20
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
21
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
22
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
# Ruby-FFI https://github.com/ffi/ffi/wiki [![Build Status](https://travis-ci.
|
1
|
+
# Ruby-FFI https://github.com/ffi/ffi/wiki [![Build Status](https://travis-ci.com/ffi/ffi.svg?branch=master)](https://travis-ci.com/ffi/ffi) [![Build status Windows](https://ci.appveyor.com/api/projects/status/r8wxn1sd4s794gg1/branch/master?svg=true)](https://ci.appveyor.com/project/larskanis/ffi-aofqa/branch/master)
|
2
2
|
|
3
3
|
## Description
|
4
4
|
|
@@ -38,10 +38,19 @@ For less minimalistic and more examples you may look at:
|
|
38
38
|
|
39
39
|
## Requirements
|
40
40
|
|
41
|
-
When installing the gem on CRuby (MRI)
|
41
|
+
When installing the gem on CRuby (MRI), you will need:
|
42
42
|
* A C compiler (e.g., Xcode on macOS, `gcc` or `clang` on everything else)
|
43
|
+
Optionally (speeds up installation):
|
43
44
|
* The `libffi` library and development headers - this is commonly in the `libffi-dev` or `libffi-devel` packages
|
44
45
|
|
46
|
+
The ffi gem comes with a builtin libffi version, which is used, when the system libffi library is not available or too old.
|
47
|
+
Use of the system libffi can be enforced by:
|
48
|
+
```
|
49
|
+
gem install ffi -- --enable-system-libffi # to install the gem manually
|
50
|
+
bundle config build.ffi --enable-system-libffi # for bundle install
|
51
|
+
```
|
52
|
+
or prevented by `--disable-system-libffi`.
|
53
|
+
|
45
54
|
On Linux systems running with [PaX](https://en.wikipedia.org/wiki/PaX) (Gentoo, Alpine, etc.), FFI may trigger `mprotect` errors. You may need to disable [mprotect](https://en.wikibooks.org/wiki/Grsecurity/Appendix/Grsecurity_and_PaX_Configuration_Options#Restrict_mprotect.28.29) for ruby (`paxctl -m [/path/to/ruby]`) for the time being until a solution is found.
|
46
55
|
|
47
56
|
On FreeBSD systems pkgconf must be installed for the gem to be able to compile using clang. Install either via packages `pkg install pkgconf` or from ports via `devel/pkgconf`.
|
@@ -57,10 +66,18 @@ From rubygems:
|
|
57
66
|
or from the git repository on github:
|
58
67
|
|
59
68
|
git clone git://github.com/ffi/ffi.git
|
60
|
-
git submodule update --init --recursive
|
61
69
|
cd ffi
|
70
|
+
git submodule update --init --recursive
|
71
|
+
bundle install
|
62
72
|
rake install
|
63
73
|
|
74
|
+
### Install options:
|
75
|
+
|
76
|
+
* `--enable-system-libffi` : Force usage of system libffi
|
77
|
+
* `--disable-system-libffi` : Force usage of builtin libffi
|
78
|
+
* `--enable-libffi-alloc` : Force closure allocation by libffi
|
79
|
+
* `--disable-libffi-alloc` : Force closure allocation by builtin method
|
80
|
+
|
64
81
|
## License
|
65
82
|
|
66
83
|
The ffi library is covered by the BSD license, also see the LICENSE file.
|
data/Rakefile
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'rubygems/tasks'
|
2
2
|
require 'rbconfig'
|
3
3
|
require 'rake/clean'
|
4
|
-
|
4
|
+
require_relative "lib/ffi/version"
|
5
5
|
|
6
6
|
require 'date'
|
7
7
|
require 'fileutils'
|
@@ -9,10 +9,6 @@ require 'rbconfig'
|
|
9
9
|
require 'rspec/core/rake_task'
|
10
10
|
require 'rubygems/package_task'
|
11
11
|
|
12
|
-
def java?
|
13
|
-
/java/ === RUBY_PLATFORM
|
14
|
-
end
|
15
|
-
|
16
12
|
BUILD_DIR = "build"
|
17
13
|
BUILD_EXT_DIR = File.join(BUILD_DIR, "#{RbConfig::CONFIG['arch']}", 'ffi_c', RUBY_VERSION)
|
18
14
|
|
@@ -20,17 +16,8 @@ def gem_spec
|
|
20
16
|
@gem_spec ||= Gem::Specification.load('ffi.gemspec')
|
21
17
|
end
|
22
18
|
|
23
|
-
|
24
|
-
|
25
|
-
RSpec::Core::RakeTask.new(:spec) do |config|
|
26
|
-
config.rspec_opts = YAML.load_file 'spec/spec.opts'
|
27
|
-
end
|
28
|
-
else
|
29
|
-
RSpec::Core::RakeTask.new(:spec => :compile) do |config|
|
30
|
-
config.rspec_opts = YAML.load_file 'spec/spec.opts'
|
31
|
-
end
|
32
|
-
|
33
|
-
TEST_DEPS.unshift :compile
|
19
|
+
RSpec::Core::RakeTask.new(:spec => :compile) do |config|
|
20
|
+
config.rspec_opts = YAML.load_file 'spec/spec.opts'
|
34
21
|
end
|
35
22
|
|
36
23
|
desc "Build all packages"
|
@@ -58,37 +45,29 @@ task :test => [ :spec ]
|
|
58
45
|
|
59
46
|
namespace :bench do
|
60
47
|
ITER = ENV['ITER'] ? ENV['ITER'].to_i : 100000
|
61
|
-
|
62
|
-
bench_files = Dir["bench/bench_*.rb"].reject { |f| f == "bench/bench_helper.rb" }
|
48
|
+
bench_files = Dir["bench/bench_*.rb"].sort.reject { |f| f == "bench/bench_helper.rb" }
|
63
49
|
bench_files.each do |bench|
|
64
|
-
task File.basename(bench, ".rb")[6..-1] =>
|
65
|
-
sh %{#{Gem.ruby} #{
|
50
|
+
task File.basename(bench, ".rb")[6..-1] => :compile do
|
51
|
+
sh %{#{Gem.ruby} #{bench} #{ITER}}
|
66
52
|
end
|
67
53
|
end
|
68
|
-
task :all =>
|
54
|
+
task :all => :compile do
|
69
55
|
bench_files.each do |bench|
|
70
|
-
sh %{#{Gem.ruby} #{
|
56
|
+
sh %{#{Gem.ruby} #{bench}}
|
71
57
|
end
|
72
58
|
end
|
73
59
|
end
|
74
60
|
|
75
|
-
task 'spec:run' =>
|
76
|
-
task 'spec:specdoc' =>
|
61
|
+
task 'spec:run' => :compile
|
62
|
+
task 'spec:specdoc' => :compile
|
77
63
|
|
78
64
|
task :default => :spec
|
79
65
|
|
80
66
|
namespace 'java' do
|
81
67
|
|
82
|
-
java_gem_spec =
|
83
|
-
s.
|
84
|
-
s.
|
85
|
-
s.author = gem_spec.author
|
86
|
-
s.email = gem_spec.email
|
87
|
-
s.homepage = gem_spec.homepage
|
88
|
-
s.summary = gem_spec.summary
|
89
|
-
s.description = gem_spec.description
|
90
|
-
s.files = %w(LICENSE COPYING README.md CHANGELOG.md Rakefile)
|
91
|
-
s.license = gem_spec.license
|
68
|
+
java_gem_spec = gem_spec.dup.tap do |s|
|
69
|
+
s.files.reject! { |f| File.fnmatch?("ext/*", f) }
|
70
|
+
s.extensions = []
|
92
71
|
s.platform = 'java'
|
93
72
|
end
|
94
73
|
|
@@ -101,7 +80,7 @@ end
|
|
101
80
|
|
102
81
|
task 'gem:java' => 'java:gem'
|
103
82
|
|
104
|
-
|
83
|
+
if RUBY_ENGINE == 'ruby' || RUBY_ENGINE == 'rbx'
|
105
84
|
require 'rake/extensiontask'
|
106
85
|
Rake::ExtensionTask.new('ffi_c', gem_spec) do |ext|
|
107
86
|
ext.name = 'ffi_c' # indicate the name of the extension.
|
@@ -124,13 +103,17 @@ unless java?
|
|
124
103
|
sh "x86_64-w64-mingw32-strip -S build/x64-mingw32/stage/lib/#{ruby_version[/^\d+\.\d+/]}/ffi_c.so"
|
125
104
|
end
|
126
105
|
end
|
106
|
+
else
|
107
|
+
task :compile do
|
108
|
+
STDERR.puts "Nothing to compile on #{RUBY_ENGINE}"
|
109
|
+
end
|
127
110
|
end
|
128
111
|
|
129
112
|
desc "build a windows gem without all the ceremony"
|
130
113
|
task "gem:windows" do
|
131
114
|
require "rake_compiler_dock"
|
132
115
|
sh "bundle package"
|
133
|
-
RakeCompilerDock.sh "sudo apt-get update && sudo apt-get install -y libltdl-dev && bundle --local && rake cross native gem MAKE='nice make -j`nproc`'"
|
116
|
+
RakeCompilerDock.sh "sudo apt-get update && sudo apt-get install -y libltdl-dev && bundle --local && rake cross native gem MAKE='nice make -j`nproc`' RUBY_CC_VERSION=${RUBY_CC_VERSION/:2.2.2/}"
|
134
117
|
end
|
135
118
|
|
136
119
|
directory "ext/ffi_c/libffi"
|
@@ -158,16 +141,15 @@ end.each do |f|
|
|
158
141
|
end
|
159
142
|
end
|
160
143
|
|
161
|
-
|
162
|
-
require 'ffi/platform'
|
144
|
+
require_relative "lib/ffi/platform"
|
163
145
|
types_conf = File.expand_path(File.join(FFI::Platform::CONF_DIR, 'types.conf'))
|
164
146
|
logfile = File.join(File.dirname(__FILE__), 'types_log')
|
165
147
|
|
166
|
-
|
148
|
+
task types_conf do |task|
|
167
149
|
require 'fileutils'
|
168
|
-
|
150
|
+
require_relative "lib/ffi/tools/types_generator"
|
169
151
|
options = {}
|
170
|
-
FileUtils.mkdir_p(File.dirname(task.name),
|
152
|
+
FileUtils.mkdir_p(File.dirname(task.name), mode: 0755 )
|
171
153
|
File.open(task.name, File::CREAT|File::TRUNC|File::RDWR, 0644) do |f|
|
172
154
|
f.puts FFI::TypesGenerator.generate(options)
|
173
155
|
end
|
@@ -177,8 +159,7 @@ file types_conf => File.join("lib", "ffi", "version.rb") do |task|
|
|
177
159
|
end
|
178
160
|
|
179
161
|
desc "Create or update type information for platform #{FFI::Platform::NAME}"
|
180
|
-
task :types_conf => types_conf
|
181
|
-
end
|
162
|
+
task :types_conf => types_conf
|
182
163
|
|
183
164
|
Gem::Tasks.new do |t|
|
184
165
|
t.scm.tag.format = '%s'
|
data/ffi.gemspec
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
require File.expand_path("../lib/#{File.basename(__FILE__, '.gemspec')}/version", __FILE__)
|
2
|
+
|
3
|
+
Gem::Specification.new do |s|
|
4
|
+
s.name = 'ffi'
|
5
|
+
s.version = FFI::VERSION
|
6
|
+
s.author = 'Wayne Meissner'
|
7
|
+
s.email = 'wmeissner@gmail.com'
|
8
|
+
s.homepage = 'https://github.com/ffi/ffi/wiki'
|
9
|
+
s.summary = 'Ruby FFI'
|
10
|
+
s.description = 'Ruby FFI library'
|
11
|
+
if s.respond_to?(:metadata)
|
12
|
+
s.metadata['bug_tracker_uri'] = 'https://github.com/ffi/ffi/issues'
|
13
|
+
s.metadata['changelog_uri'] = 'https://github.com/ffi/ffi/blob/master/CHANGELOG.md'
|
14
|
+
s.metadata['documentation_uri'] = 'https://github.com/ffi/ffi/wiki'
|
15
|
+
s.metadata['wiki_uri'] = 'https://github.com/ffi/ffi/wiki'
|
16
|
+
s.metadata['source_code_uri'] = 'https://github.com/ffi/ffi/'
|
17
|
+
s.metadata['mailing_list_uri'] = 'http://groups.google.com/group/ruby-ffi'
|
18
|
+
end
|
19
|
+
s.files = `git ls-files -z`.split("\x0").reject do |f|
|
20
|
+
f =~ /^(\.|bench|gen|libtest|nbproject|spec)/
|
21
|
+
end
|
22
|
+
|
23
|
+
# Add libffi git files
|
24
|
+
lfs = `git --git-dir ext/ffi_c/libffi/.git ls-files -z`.split("\x0")
|
25
|
+
# Add autoconf generated files of libffi
|
26
|
+
lfs += %w[ configure config.guess config.sub install-sh ltmain.sh missing fficonfig.h.in ]
|
27
|
+
# Add automake generated files of libffi
|
28
|
+
lfs += `git --git-dir ext/ffi_c/libffi/.git ls-files -z *.am */*.am`.gsub(".am\0", ".in\0").split("\x0")
|
29
|
+
s.files += lfs.map do |f|
|
30
|
+
File.join("ext/ffi_c/libffi", f)
|
31
|
+
end
|
32
|
+
|
33
|
+
s.extensions << 'ext/ffi_c/extconf.rb'
|
34
|
+
s.rdoc_options = %w[--exclude=ext/ffi_c/.*\.o$ --exclude=ffi_c\.(bundle|so)$]
|
35
|
+
s.license = 'BSD-3-Clause'
|
36
|
+
s.require_paths << 'ext/ffi_c'
|
37
|
+
s.required_ruby_version = '>= 2.3'
|
38
|
+
s.add_development_dependency 'rake', '~> 13.0'
|
39
|
+
s.add_development_dependency 'rake-compiler', '~> 1.0'
|
40
|
+
s.add_development_dependency 'rake-compiler-dock', '~> 1.0'
|
41
|
+
s.add_development_dependency 'rspec', '~> 2.14.1'
|
42
|
+
s.add_development_dependency 'rubygems-tasks', "~> 0.2.4"
|
43
|
+
end
|
data/lib/ffi.rb
ADDED
@@ -0,0 +1,28 @@
|
|
1
|
+
if RUBY_ENGINE == 'ruby' || RUBY_ENGINE == 'rbx'
|
2
|
+
Object.send(:remove_const, :FFI) if defined?(::FFI)
|
3
|
+
begin
|
4
|
+
require RUBY_VERSION.split('.')[0, 2].join('.') + '/ffi_c'
|
5
|
+
rescue Exception
|
6
|
+
require 'ffi_c'
|
7
|
+
end
|
8
|
+
|
9
|
+
require 'ffi/ffi'
|
10
|
+
|
11
|
+
elsif RUBY_ENGINE == 'jruby' && (RUBY_ENGINE_VERSION.split('.').map(&:to_i) <=> [9, 3]) >= 0
|
12
|
+
JRuby::Util.load_ext("org.jruby.ext.ffi.FFIService")
|
13
|
+
require 'ffi/ffi'
|
14
|
+
|
15
|
+
elsif RUBY_ENGINE == 'truffleruby' && (RUBY_ENGINE_VERSION.split('.').map(&:to_i) <=> [20, 1, 0]) >= 0
|
16
|
+
require 'truffleruby/ffi_backend'
|
17
|
+
require 'ffi/ffi'
|
18
|
+
|
19
|
+
else
|
20
|
+
# Remove the ffi gem dir from the load path, then reload the internal ffi implementation
|
21
|
+
$LOAD_PATH.delete(File.dirname(__FILE__))
|
22
|
+
$LOAD_PATH.delete(File.join(File.dirname(__FILE__), 'ffi'))
|
23
|
+
unless $LOADED_FEATURES.nil?
|
24
|
+
$LOADED_FEATURES.delete(__FILE__)
|
25
|
+
$LOADED_FEATURES.delete('ffi.rb')
|
26
|
+
end
|
27
|
+
require 'ffi.rb'
|
28
|
+
end
|
@@ -0,0 +1,44 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (C) 2020 Lars Kanis
|
3
|
+
#
|
4
|
+
# This file is part of ruby-ffi.
|
5
|
+
#
|
6
|
+
# All rights reserved.
|
7
|
+
#
|
8
|
+
# Redistribution and use in source and binary forms, with or without
|
9
|
+
# modification, are permitted provided that the following conditions are met:
|
10
|
+
#
|
11
|
+
# * Redistributions of source code must retain the above copyright notice, this
|
12
|
+
# list of conditions and the following disclaimer.
|
13
|
+
# * Redistributions in binary form must reproduce the above copyright notice
|
14
|
+
# this list of conditions and the following disclaimer in the documentation
|
15
|
+
# and/or other materials provided with the distribution.
|
16
|
+
# * Neither the name of the Ruby FFI project nor the names of its contributors
|
17
|
+
# may be used to endorse or promote products derived from this software
|
18
|
+
# without specific prior written permission.
|
19
|
+
#
|
20
|
+
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
21
|
+
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
+
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
23
|
+
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
|
24
|
+
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
25
|
+
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
26
|
+
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
27
|
+
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
28
|
+
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
29
|
+
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.#
|
30
|
+
|
31
|
+
|
32
|
+
module FFI
|
33
|
+
class AbstractMemory
|
34
|
+
LONG_MAX = FFI::Pointer.new(1).size
|
35
|
+
private_constant :LONG_MAX
|
36
|
+
|
37
|
+
# Return +true+ if +self+ has a size limit.
|
38
|
+
#
|
39
|
+
# @return [Boolean]
|
40
|
+
def size_limit?
|
41
|
+
size != LONG_MAX
|
42
|
+
end
|
43
|
+
end
|
44
|
+
end
|