Module: FFI::Platform
- Defined in:
- lib/ffi/platform.rb
Overview
This module defines different constants and class methods to play with various platforms.
Constant Summary collapse
- OS =
FFI.make_shareable(case RbConfig::CONFIG['host_os'].downcase when /linux/ "linux" when /darwin/ "darwin" when /freebsd/ "freebsd" when /netbsd/ "netbsd" when /openbsd/ "openbsd" when /dragonfly/ "dragonflybsd" when /sunos|solaris/ "solaris" when /mingw|mswin/ "windows" else RbConfig::CONFIG['host_os'].downcase end)
- OSVERSION =
RbConfig::CONFIG['host_os'].gsub(/[^\d]/, '').to_i
- CPU =
FFI.make_shareable(RbConfig::CONFIG['host_cpu'])
- ARCH =
FFI.make_shareable(case CPU.downcase when /amd64|x86_64|x64/ "x86_64" when /i\d86|x86|i86pc/ "i386" when /ppc64|powerpc64/ "powerpc64" when /ppc|powerpc/ "powerpc" when /sparcv9|sparc64/ "sparcv9" when /arm64|aarch64/ # MacOS calls it "arm64", other operating systems "aarch64" "aarch64" when /^arm/ if OS == "darwin" # Ruby before 3.0 reports "arm" instead of "arm64" as host_cpu on darwin "aarch64" else "arm" end else RbConfig::CONFIG['host_cpu'] end)
- LIBPREFIX =
FFI.make_shareable(case OS when /windows|msys/ '' when /cygwin/ 'cyg' else 'lib' end)
- LIBSUFFIX =
FFI.make_shareable(case OS when /darwin/ 'dylib' when /linux|bsd|solaris/ 'so' when /windows|cygwin|msys/ 'dll' else # Punt and just assume a sane unix (i.e. anything but AIX) 'so' end)
- LIBC =
FFI.make_shareable(if IS_WINDOWS crtname = RbConfig::CONFIG["RUBY_SO_NAME"][/msvc\w+/] || 'ucrtbase' "#{crtname}.dll" elsif IS_GNU GNU_LIBC elsif OS == 'cygwin' "cygwin1.dll" elsif OS == 'msys' # Not sure how msys 1.0 behaves, tested on MSYS2. "msys-2.0.dll" else "#{LIBPREFIX}c.#{LIBSUFFIX}" end)
- LITTLE_ENDIAN =
1234
- BIG_ENDIAN =
4321
- BYTE_ORDER =
[0x12345678].pack("I") == [0x12345678].pack("N") ? BIG_ENDIAN : LITTLE_ENDIAN
Class Method Summary collapse
-
.bsd? ⇒ Boolean
Test if current OS is a *BSD (include MAC).
-
.mac? ⇒ Boolean
Test if current OS is Mac OS.
-
.solaris? ⇒ Boolean
Test if current OS is Solaris (Sun OS).
-
.unix? ⇒ Boolean
Test if current OS is a unix OS.
-
.windows? ⇒ Boolean
Test if current OS is Windows.
Class Method Details
.bsd? ⇒ Boolean
Test if current OS is a *BSD (include MAC)
158 159 160 |
# File 'lib/ffi/platform.rb', line 158 def self.bsd? IS_BSD end |
.mac? ⇒ Boolean
Test if current OS is Mac OS
170 171 172 |
# File 'lib/ffi/platform.rb', line 170 def self.mac? IS_MAC end |
.solaris? ⇒ Boolean
Test if current OS is Solaris (Sun OS)
176 177 178 |
# File 'lib/ffi/platform.rb', line 176 def self.solaris? IS_SOLARIS end |
.unix? ⇒ Boolean
Test if current OS is a unix OS
182 183 184 |
# File 'lib/ffi/platform.rb', line 182 def self.unix? !IS_WINDOWS end |
.windows? ⇒ Boolean
Test if current OS is Windows
164 165 166 |
# File 'lib/ffi/platform.rb', line 164 def self.windows? IS_WINDOWS end |