Class: Tab Private
- Inherits:
-
AbstractTab
- Object
- AbstractTab
- Tab
- Defined in:
- tab.rb
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.
Constant Summary
Constants inherited from AbstractTab
AbstractTab::FILENAME, AbstractTab::RuntimeDependencies
Instance Attribute Summary collapse
- #aliases ⇒ Array<String>? private
- #built_as_bottle ⇒ Boolean? private
- #changed_files ⇒ Array<Pathname>? private
- #compiler ⇒ String, Symbol private
-
#poured_from_bottle ⇒ Boolean?
internal
Check whether the formula was poured from a bottle.
- #source_modified_time ⇒ Time private
- #stdlib ⇒ String, ... private
- #tapped_from ⇒ String? readonly private
- #unused_options ⇒ Options private
-
#used_options ⇒ Options
internal
The options used to install the formula.
Attributes inherited from AbstractTab
#arch, #built_on, #homebrew_version, #installed_as_dependency, #installed_on_request, #loaded_from_api, #loaded_from_internal_api, #source, #tabfile, #time
Class Method Summary collapse
-
.create(formula_or_cask, compiler = DevelopmentTools.default_compiler, stdlib = nil) ⇒ T.attached_class
private
Instantiates a Tab for a new installation of a formula.
- .empty ⇒ T.attached_class private
-
.for_formula(formula) ⇒ T.attached_class
private
Returns a Tab for an already installed formula, or a fake one if the formula is not installed.
- .for_keg(keg) ⇒ T.attached_class internal
-
.for_name(name) ⇒ T.attached_class
private
Returns a Tab for the named formula's installation, or a fake one if the formula is not installed.
-
.from_file_content(content, path) ⇒ T.attached_class
private
Like AbstractTab.from_file, but bypass the cache.
- .remap_deprecated_options(deprecated_options, options) ⇒ Options private
- .runtime_deps_hash(formula, deps) ⇒ Array<Hash{String => T.untyped}> private
Instance Method Summary collapse
- #any_args_or_options? ⇒ Boolean private
- #bottle? ⇒ Boolean private
- #built_bottle? ⇒ Boolean private
- #cxxstdlib ⇒ CxxStdlib private
- #head? ⇒ Boolean private
- #head_version ⇒ Version? private
- #include?(opt) ⇒ Boolean private
- #initialize(attributes = {}) ⇒ void constructor private
- #installed_on_request_present? ⇒ Boolean private
- #runtime_dependencies ⇒ RuntimeDependencies private
- #spec ⇒ Symbol private
- #stable? ⇒ Boolean private
- #stable_version ⇒ Version? private
-
#to_bottle_hash ⇒ Hash{String => T.untyped}
private
A subset of to_json that we care about for bottles.
- #to_json(options = nil) ⇒ String private
- #version_scheme ⇒ Integer private
- #versions ⇒ Hash{String => T.untyped} private
- #with?(val) ⇒ Boolean private
- #without?(val) ⇒ Boolean private
- #write ⇒ void private
Methods inherited from AbstractTab
from_file, #parsed_homebrew_version, #tap, #tap=
Methods included from Cachable
Constructor Details
#initialize(attributes = {}) ⇒ 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.
242 243 244 245 246 247 248 249 250 251 252 253 254 255 |
# File 'tab.rb', line 242 def initialize(attributes = {}) @poured_from_bottle = T.let(nil, T.nilable(T::Boolean)) @built_as_bottle = T.let(nil, T.nilable(T::Boolean)) @changed_files = T.let(nil, T.nilable(T::Array[Pathname])) @stdlib = T.let(nil, T.nilable(T.any(String, Symbol))) @aliases = T.let(nil, T.nilable(T::Array[String])) @used_options = T.let(nil, T.nilable(T::Array[String])) @unused_options = T.let(nil, T.nilable(T::Array[String])) @compiler = T.let(nil, T.nilable(T.any(String, Symbol))) @source_modified_time = T.let(nil, T.nilable(Integer)) @tapped_from = T.let(nil, T.nilable(String)) super end |
Instance Attribute Details
#aliases ⇒ Array<String>?
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.
221 222 223 |
# File 'tab.rb', line 221 def aliases @aliases end |
#built_as_bottle ⇒ 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.
215 216 217 |
# File 'tab.rb', line 215 def built_as_bottle @built_as_bottle end |
#changed_files ⇒ Array<Pathname>?
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.
239 240 241 |
# File 'tab.rb', line 239 def changed_files @changed_files end |
#compiler ⇒ String, Symbol
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.
496 497 498 |
# File 'tab.rb', line 496 def compiler @compiler || DevelopmentTools.default_compiler end |
#poured_from_bottle ⇒ Boolean?
This method is part of an internal API. This method may only be used internally in repositories owned by Homebrew, except in casks or formulae. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
Check whether the formula was poured from a bottle.
212 213 214 |
# File 'tab.rb', line 212 def poured_from_bottle @poured_from_bottle end |
#source_modified_time ⇒ Time
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.
550 551 552 |
# File 'tab.rb', line 550 def source_modified_time Time.at(@source_modified_time || 0) end |
#stdlib ⇒ String, ...
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.
218 219 220 |
# File 'tab.rb', line 218 def stdlib @stdlib end |
#tapped_from ⇒ String? (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.
236 237 238 |
# File 'tab.rb', line 236 def tapped_from @tapped_from end |
#unused_options ⇒ Options
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.
491 492 493 |
# File 'tab.rb', line 491 def Options.create(@unused_options) end |
#used_options ⇒ Options
This method is part of an internal API. This method may only be used internally in repositories owned by Homebrew, except in casks or formulae. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
The options used to install the formula.
486 487 488 |
# File 'tab.rb', line 486 def Options.create(@used_options) end |
Class Method Details
.create(formula_or_cask, compiler = DevelopmentTools.default_compiler, stdlib = nil) ⇒ 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.
Instantiates a Tab for a new installation of a formula.
262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 |
# File 'tab.rb', line 262 def self.create(formula_or_cask, compiler = DevelopmentTools.default_compiler, stdlib = nil) formula = T.cast(formula_or_cask, Formula) tab = super(formula) build = formula.build runtime_deps = formula.runtime_dependencies(undeclared: false) tab. = build..as_flags tab. = build..as_flags tab.tabfile = formula.prefix/FILENAME tab.built_as_bottle = build.bottle? tab.poured_from_bottle = false tab.source_modified_time = formula.source_modified_time.to_i tab.compiler = compiler tab.stdlib = stdlib tab.aliases = formula.aliases tab.runtime_dependencies = Tab.runtime_deps_hash(formula, runtime_deps) active_spec = if formula.active_spec_sym == :head T.must(formula.head) else T.must(formula.stable) end tab.source["spec"] = formula.active_spec_sym.to_s tab.source["path"] = formula.specified_path.to_s if (downloader = active_spec.downloader).cached_location.exist? && (scm_revision = downloader.source_revision).present? tab.source["scm_revision"] = scm_revision end tab.source["versions"] = { "stable" => formula.stable&.version&.to_s, "head" => formula.head&.version&.to_s, "version_scheme" => formula.version_scheme, "compatibility_version" => formula.compatibility_version, } tab end |
.empty ⇒ 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.
413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 |
# File 'tab.rb', line 413 def self.empty tab = super tab. = [] tab. = [] tab.built_as_bottle = false tab.poured_from_bottle = false tab.source_modified_time = 0 tab.stdlib = nil tab.compiler = DevelopmentTools.default_compiler tab.aliases = [] tab.source["spec"] = "stable" tab.source["versions"] = empty_source_versions tab end |
.for_formula(formula) ⇒ 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.
Returns a Tab for an already installed formula, or a fake one if the formula is not installed.
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 |
# File 'tab.rb', line 373 def self.for_formula(formula) paths = [] paths << formula.opt_prefix.resolved_path if formula.opt_prefix.symlink? && formula.opt_prefix.directory? paths << formula.linked_keg.resolved_path if formula.linked_keg.symlink? && formula.linked_keg.directory? if (dirs = formula.installed_prefixes).length == 1 paths << dirs.first end paths << formula.latest_installed_prefix path = paths.map { |pathname| pathname/FILENAME }.find(&:file?) if path tab = from_file(path) = (formula., tab.) tab. = .as_flags else # Formula is not installed. Return a fake tab. tab = empty tab. = formula..as_flags tab.source = { "path" => formula.specified_path.to_s, "tap" => formula.tap&.name, "tap_git_head" => formula.tap_git_head, "spec" => formula.active_spec_sym.to_s, "versions" => { "stable" => formula.stable&.version&.to_s, "head" => formula.head&.version&.to_s, "version_scheme" => formula.version_scheme, }, } end tab end |
.for_keg(keg) ⇒ T.attached_class
This method is part of an internal API. This method may only be used internally in repositories owned by Homebrew, except in casks or formulae. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
Get the Tab for the given Keg, or a fake one if the formula is not installed.
333 334 335 336 337 338 339 340 341 342 343 344 |
# File 'tab.rb', line 333 def self.for_keg(keg) path = keg/FILENAME tab = if path.exist? from_file(path) else empty end tab.tabfile = path tab end |
.for_name(name) ⇒ 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.
Returns a Tab for the named formula's installation, or a fake one if the formula is not installed.
349 350 351 352 353 354 355 356 |
# File 'tab.rb', line 349 def self.for_name(name) rack = HOMEBREW_CELLAR/name if (keg = Keg.from_rack(rack)) for_keg(keg) else for_formula(Formulary.from_rack(rack, keg:)) end end |
.from_file_content(content, path) ⇒ 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.
Like AbstractTab.from_file, but bypass the cache.
303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 |
# File 'tab.rb', line 303 def self.from_file_content(content, path) tab = super tab.tap = tab.tapped_from if !tab.tapped_from.nil? && tab.tapped_from != "path or URL" tab.tap = "homebrew/core" if ["mxcl/master", "Homebrew/homebrew"].include?(tab.tap) if tab.source["spec"].nil? version = PkgVersion.parse(File.basename(File.dirname(path))) tab.source["spec"] = if version.head? "head" else "stable" end end tab.source["versions"] ||= empty_source_versions # Tabs created with Homebrew 1.5.13 through 4.0.17 inclusive created empty string versions in some cases. ["stable", "head"].each do |spec| tab.source["versions"][spec] = tab.source["versions"][spec].presence end tab end |
.remap_deprecated_options(deprecated_options, options) ⇒ Options
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.
359 360 361 362 363 364 365 366 367 368 |
# File 'tab.rb', line 359 def self.(, ) .each do |deprecated_option| option = .find { |o| o.name == deprecated_option.old } next unless option -= [option] << Option.new(deprecated_option.current, option.description) end end |
.runtime_deps_hash(formula, deps) ⇒ Array<Hash{String => T.untyped}>
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.
442 443 444 445 446 |
# File 'tab.rb', line 442 def self.runtime_deps_hash(formula, deps) deps.map do |dep| formula_to_dep_hash(dep.to_formula, formula.deps.map(&:name)) end end |
Instance Method Details
#any_args_or_options? ⇒ 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.
449 450 451 |
# File 'tab.rb', line 449 def !.empty? || !.empty? end |
#bottle? ⇒ 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.
520 521 522 |
# File 'tab.rb', line 520 def bottle? !!built_as_bottle end |
#built_bottle? ⇒ 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.
515 516 517 |
# File 'tab.rb', line 515 def built_bottle? !!built_as_bottle && !poured_from_bottle end |
#cxxstdlib ⇒ CxxStdlib
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.
508 509 510 511 512 |
# File 'tab.rb', line 508 def cxxstdlib # Older tabs won't have these values, so provide sensible defaults lib = stdlib&.to_sym CxxStdlib.create(lib, compiler.to_sym) end |
#head? ⇒ 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.
473 474 475 |
# File 'tab.rb', line 473 def head? spec == :head end |
#head_version ⇒ Version?
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.
540 541 542 |
# File 'tab.rb', line 540 def head_version versions["head"]&.then { Version.new(it) } end |
#include?(opt) ⇒ 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.
468 469 470 |
# File 'tab.rb', line 468 def include?(opt) .include? opt end |
#installed_on_request_present? ⇒ 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.
637 |
# File 'tab.rb', line 637 def installed_on_request_present? = @installed_on_request_present |
#runtime_dependencies ⇒ RuntimeDependencies
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.
501 502 503 504 505 |
# File 'tab.rb', line 501 def runtime_dependencies # Homebrew versions prior to 1.1.6 generated incorrect runtime dependency # lists. @runtime_dependencies if parsed_homebrew_version >= "1.1.6" end |
#spec ⇒ Symbol
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.
525 526 527 |
# File 'tab.rb', line 525 def spec source["spec"].to_sym end |
#stable? ⇒ 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.
478 479 480 |
# File 'tab.rb', line 478 def stable? spec == :stable end |
#stable_version ⇒ Version?
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.
535 536 537 |
# File 'tab.rb', line 535 def stable_version versions["stable"]&.then { Version.new(it) } end |
#to_bottle_hash ⇒ Hash{String => T.untyped}
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.
A subset of to_json that we care about for bottles.
584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 |
# File 'tab.rb', line 584 def to_bottle_hash attributes = { "homebrew_version" => homebrew_version, "changed_files" => changed_files&.map(&:to_s), "source_modified_time" => source_modified_time.to_i, "stdlib" => stdlib&.to_s, "compiler" => compiler.to_s, "runtime_dependencies" => runtime_dependencies, "source" => source.slice("scm_revision").compact.presence, "arch" => arch, "built_on" => built_on, } attributes.delete("stdlib") if attributes["stdlib"].blank? attributes.delete("source") if attributes["source"].blank? attributes end |
#to_json(options = nil) ⇒ String
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.
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 |
# File 'tab.rb', line 555 def to_json( = nil) attributes = { "homebrew_version" => homebrew_version, "used_options" => .as_flags, "unused_options" => .as_flags, "built_as_bottle" => built_as_bottle, "poured_from_bottle" => poured_from_bottle, "loaded_from_api" => loaded_from_api, "loaded_from_internal_api" => loaded_from_internal_api, "installed_as_dependency" => installed_as_dependency, "installed_on_request" => installed_on_request, "changed_files" => changed_files&.map(&:to_s), "time" => time, "source_modified_time" => source_modified_time.to_i, "stdlib" => stdlib&.to_s, "compiler" => compiler.to_s, "aliases" => aliases, "runtime_dependencies" => runtime_dependencies, "source" => source, "arch" => arch, "built_on" => built_on, } attributes.delete("stdlib") if attributes["stdlib"].blank? JSON.pretty_generate(attributes, ) end |
#version_scheme ⇒ Integer
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.
545 546 547 |
# File 'tab.rb', line 545 def version_scheme versions["version_scheme"] || 0 end |
#versions ⇒ Hash{String => T.untyped}
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.
530 531 532 |
# File 'tab.rb', line 530 def versions source["versions"] end |
#with?(val) ⇒ 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.
454 455 456 457 458 459 460 |
# File 'tab.rb', line 454 def with?(val) option_names = val.is_a?(String) ? [val] : val.option_names option_names.any? do |name| include?("with-#{name}") || .include?("without-#{name}") end end |
#without?(val) ⇒ 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.
463 464 465 |
# File 'tab.rb', line 463 def without?(val) !with?(val) end |
#write ⇒ 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.
This method returns an undefined value.
602 603 604 605 606 607 608 |
# File 'tab.rb', line 602 def write # If this is a new installation, the cache of installed formulae # will no longer be valid. Formula.clear_cache unless tabfile&.exist? super end |