Class: Utils::Bottles::Tag Private

Inherits:
Object show all
Defined in:
utils/bottles.rb

Overview

This class is part of a private API. This class may only be used in the Homebrew/brew repository. Third parties should avoid using this class if possible, as it may be removed or changed without warning.

Denotes the arch and OS of a bottle.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(system:, arch:) ⇒ void

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:



165
166
167
168
# File 'utils/bottles.rb', line 165

def initialize(system:, arch:)
  @system = system
  @arch = arch
end

Instance Attribute Details

#archObject (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.



143
144
145
# File 'utils/bottles.rb', line 143

def arch
  @arch
end

#systemObject (readonly)

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.



143
144
145
# File 'utils/bottles.rb', line 143

def system
  @system
end

Class Method Details

.from_symbol(value) ⇒ T.attached_class

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Parameters:

Returns:

  • (T.attached_class)

Raises:

  • (ArgumentError)


146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
# File 'utils/bottles.rb', line 146

def self.from_symbol(value)
  return new(system: :all, arch: :all) if value == :all

  @all_archs_regex ||= begin
    all_archs = Hardware::CPU::ALL_ARCHS.map(&:to_s)
    /
      ^((?<arch>#{Regexp.union(all_archs)})_)?
      (?<system>[\w.]+)$
    /x
  end
  match = @all_archs_regex.match(value.to_s)
  raise ArgumentError, "Invalid bottle tag symbol" unless match

  system = match[:system].to_sym
  arch = match[:arch]&.to_sym || :x86_64
  new(system:, arch:)
end

Instance Method Details

#default_cellarString

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



246
247
248
249
250
251
252
253
254
# File 'utils/bottles.rb', line 246

def default_cellar
  if linux?
    Homebrew::DEFAULT_LINUX_CELLAR
  elsif arch == :arm64
    Homebrew::DEFAULT_MACOS_ARM_CELLAR
  else
    Homebrew::DEFAULT_MACOS_CELLAR
  end
end

#default_prefixString

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



235
236
237
238
239
240
241
242
243
# File 'utils/bottles.rb', line 235

def default_prefix
  if linux?
    HOMEBREW_LINUX_DEFAULT_PREFIX
  elsif arch == :arm64
    HOMEBREW_MACOS_ARM_DEFAULT_PREFIX
  else
    HOMEBREW_DEFAULT_PREFIX
  end
end

#linux?Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Boolean)


216
217
218
# File 'utils/bottles.rb', line 216

def linux?
  system == :linux
end

#macos?Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Boolean)


221
222
223
# File 'utils/bottles.rb', line 221

def macos?
  MacOSVersion::SYMBOLS.key?(system)
end

#standardized_archSymbol

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



187
188
189
190
191
192
# File 'utils/bottles.rb', line 187

def standardized_arch
  return :x86_64 if [:x86_64, :intel].include? arch
  return :arm64 if [:arm64, :arm].include? arch

  arch
end

#to_macos_versionMacOSVersion

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



211
212
213
# File 'utils/bottles.rb', line 211

def to_macos_version
  @to_macos_version ||= MacOSVersion.from_symbol(system)
end

#to_symSymbol

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:



195
196
197
198
199
200
201
202
203
# File 'utils/bottles.rb', line 195

def to_sym
  if system == :all && arch == :all
    :all
  elsif macos? && [:x86_64, :intel].include?(arch)
    system
  else
    :"#{standardized_arch}_#{system}"
  end
end

#valid_combination?Boolean

This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.

Returns:

  • (Boolean)


226
227
228
229
230
231
232
# File 'utils/bottles.rb', line 226

def valid_combination?
  return true unless [:arm64, :arm].include? arch
  return false if linux?

  # Big Sur is the first version of macOS that runs on ARM
  to_macos_version >= :big_sur
end