brew/Library/Homebrew/os/mac/version.rb

98 lines
2.6 KiB
Ruby
Raw Normal View History

2020-10-10 14:16:11 +02:00
# typed: true
# frozen_string_literal: true
require "exceptions"
require "hardware"
require "version"
2013-02-06 22:49:43 -06:00
module OS
module Mac
2020-08-25 00:35:07 +02:00
# A macOS version.
#
# @api private
class Version < ::Version
extend T::Sig
sig { params(version: Symbol).returns(T.attached_class) }
def self.from_symbol(version)
2022-06-29 11:29:46 -04:00
str = MacOSVersions::SYMBOLS.fetch(version) { raise MacOSVersionError, version }
new(str)
end
2013-06-15 19:39:27 -05:00
sig { params(value: T.nilable(String)).void }
def initialize(value)
version ||= value
raise MacOSVersionError, version unless /\A1\d+(?:\.\d+){0,2}\Z/.match?(version)
2020-10-05 14:46:43 +02:00
super(version)
2020-10-05 14:46:43 +02:00
@comparison_cache = {}
end
sig { override.params(other: T.untyped).returns(T.nilable(Integer)) }
def <=>(other)
@comparison_cache.fetch(other) do
2022-06-29 11:29:46 -04:00
if MacOSVersions::SYMBOLS.key?(other) && to_sym == other
0
else
2022-06-29 11:29:46 -04:00
v = MacOSVersions::SYMBOLS.fetch(other) { other.to_s }
@comparison_cache[other] = super(::Version.new(v))
end
end
end
2021-02-09 18:34:47 +00:00
sig { returns(T.self_type) }
def strip_patch
# Big Sur is 11.x but Catalina is 10.15.x.
2023-03-18 16:03:25 -07:00
if T.must(major) >= 11
2021-02-09 18:34:47 +00:00
self.class.new(major.to_s)
else
major_minor
end
end
sig { returns(Symbol) }
def to_sym
2022-06-29 11:29:46 -04:00
@to_sym ||= MacOSVersions::SYMBOLS.invert.fetch(strip_patch.to_s, :dunno)
2013-06-14 14:47:16 -07:00
end
sig { returns(String) }
def pretty_name
@pretty_name ||= to_sym.to_s.split("_").map(&:capitalize).join(" ").freeze
end
sig { returns(T::Boolean) }
def outdated_release?
self < HOMEBREW_MACOS_OLDEST_SUPPORTED
end
sig { returns(T::Boolean) }
def prerelease?
self >= HOMEBREW_MACOS_NEWEST_UNSUPPORTED
end
sig { returns(T::Boolean) }
def unsupported_release?
outdated_release? || prerelease?
end
# For {OS::Mac::Version} compatibility.
sig { returns(T::Boolean) }
def requires_nehalem_cpu?
unless Hardware::CPU.intel?
raise "Unexpected architecture: #{Hardware::CPU.arch}. This only works with Intel architecture."
end
Hardware.oldest_cpu(self) == :nehalem
end
# https://en.wikipedia.org/wiki/Nehalem_(microarchitecture)
# Ensure any extra methods are also added to version/null.rb
alias requires_sse4? requires_nehalem_cpu?
alias requires_sse41? requires_nehalem_cpu?
alias requires_sse42? requires_nehalem_cpu?
alias requires_popcnt? requires_nehalem_cpu?
end
2013-02-06 22:49:43 -06:00
end
end