2015-08-03 13:09:07 +01:00
|
|
|
require "os"
|
2013-10-18 12:56:51 -05:00
|
|
|
|
2009-09-02 13:17:15 -06:00
|
|
|
class Hardware
|
2015-08-03 13:09:07 +01:00
|
|
|
module CPU
|
|
|
|
extend self
|
2013-08-11 19:11:58 -07:00
|
|
|
INTEL_32BIT_ARCHS = [:i386].freeze
|
|
|
|
INTEL_64BIT_ARCHS = [:x86_64].freeze
|
|
|
|
PPC_32BIT_ARCHS = [:ppc, :ppc7400, :ppc7450, :ppc970].freeze
|
|
|
|
PPC_64BIT_ARCHS = [:ppc64].freeze
|
|
|
|
|
2013-03-17 13:30:12 -05:00
|
|
|
def type
|
2015-02-26 23:22:22 -05:00
|
|
|
:dunno
|
2013-03-17 13:30:12 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def family
|
2015-02-26 23:22:22 -05:00
|
|
|
:dunno
|
2013-03-17 13:30:12 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def cores
|
2015-02-26 23:22:22 -05:00
|
|
|
1
|
2013-03-17 13:30:12 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def bits
|
2015-02-26 23:22:22 -05:00
|
|
|
64
|
2013-03-17 13:30:12 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def is_32_bit?
|
|
|
|
bits == 32
|
|
|
|
end
|
|
|
|
|
|
|
|
def is_64_bit?
|
|
|
|
bits == 64
|
|
|
|
end
|
2013-11-26 20:23:19 -06:00
|
|
|
|
|
|
|
def intel?
|
|
|
|
type == :intel
|
|
|
|
end
|
|
|
|
|
|
|
|
def ppc?
|
|
|
|
type == :ppc
|
|
|
|
end
|
2015-02-23 21:38:36 -05:00
|
|
|
|
|
|
|
def features
|
|
|
|
[]
|
|
|
|
end
|
2015-02-23 21:38:36 -05:00
|
|
|
|
|
|
|
def feature?(name)
|
|
|
|
features.include?(name)
|
|
|
|
end
|
2013-03-17 13:30:12 -05:00
|
|
|
end
|
|
|
|
|
2013-10-18 12:56:51 -05:00
|
|
|
if OS.mac?
|
2015-08-03 13:09:07 +01:00
|
|
|
require "os/mac/hardware"
|
2013-03-17 13:30:12 -05:00
|
|
|
CPU.extend MacCPUs
|
2013-10-18 12:56:51 -05:00
|
|
|
elsif OS.linux?
|
2015-08-03 13:09:07 +01:00
|
|
|
require "os/linux/hardware"
|
2013-03-17 13:30:12 -05:00
|
|
|
CPU.extend LinuxCPUs
|
2009-09-02 13:17:15 -06:00
|
|
|
end
|
|
|
|
|
2009-11-16 09:35:19 -08:00
|
|
|
def self.cores_as_words
|
2013-06-13 12:04:58 -05:00
|
|
|
case Hardware::CPU.cores
|
2015-08-03 13:09:07 +01:00
|
|
|
when 1 then "single"
|
|
|
|
when 2 then "dual"
|
|
|
|
when 4 then "quad"
|
2009-11-16 09:35:19 -08:00
|
|
|
else
|
2013-06-13 12:04:58 -05:00
|
|
|
Hardware::CPU.cores
|
2009-11-16 09:35:19 -08:00
|
|
|
end
|
|
|
|
end
|
2013-06-06 16:02:27 -05:00
|
|
|
|
|
|
|
def self.oldest_cpu
|
2013-11-26 20:23:19 -06:00
|
|
|
if Hardware::CPU.intel?
|
2013-06-06 16:02:27 -05:00
|
|
|
if Hardware::CPU.is_64_bit?
|
|
|
|
:core2
|
|
|
|
else
|
|
|
|
:core
|
|
|
|
end
|
|
|
|
else
|
|
|
|
Hardware::CPU.family
|
|
|
|
end
|
|
|
|
end
|
2009-09-02 13:17:15 -06:00
|
|
|
end
|