Module: Homebrew::API::Internal Private
- Extended by:
- Cachable, T::Generic
- Defined in:
- api/internal.rb
Overview
This module is part of a private API. This module may only be used in the Homebrew/brew repository. Third parties should avoid using this module if possible, as it may be removed or changed without warning.
Helper functions for using the JSON internal API.
Constant Summary collapse
- Cache =
This constant is part of a private API. This constant may only be used in the Homebrew/brew repository. Third parties should avoid using this constant if possible, as it may be removed or changed without warning.
type_template { { fixed: T::Hash[String, T.untyped] } }
Class Method Summary collapse
- .cached_packages_json_file_path ⇒ Pathname private
- .cask_hashes ⇒ Hash{String => Hash{String => T.untyped}} private
- .cask_renames ⇒ Hash{String => String} private
- .cask_struct(name) ⇒ Homebrew::API::CaskStruct private
- .cask_tap_git_head ⇒ String private
- .cask_tap_migrations ⇒ Hash{String => String} private
- .fetch_packages_api!(download_queue: Homebrew.default_download_queue, stale_seconds: nil, enqueue: false) ⇒ Array<(Hash{String => T.untyped}, Boolean)> private
- .formula_aliases ⇒ Hash{String => String} private
- .formula_hashes ⇒ Hash{String => Hash{String => T.untyped}} private
- .formula_renames ⇒ Hash{String => String} private
- .formula_struct(name) ⇒ Homebrew::API::FormulaStruct private
- .formula_tap_git_head ⇒ String private
- .formula_tap_migrations ⇒ Hash{String => String} private
- .write_cask_names(regenerate: false) ⇒ void private
- .write_formula_names_and_aliases(regenerate: false) ⇒ void private
Methods included from Cachable
Class Method Details
.cached_packages_json_file_path ⇒ 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.
69 70 71 |
# File 'api/internal.rb', line 69 def self.cached_packages_json_file_path HOMEBREW_CACHE_API/packages_endpoint end |
.cask_hashes ⇒ Hash{String => 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.
179 180 181 182 183 184 185 186 |
# File 'api/internal.rb', line 179 def self.cask_hashes unless cache.key?("cask_hashes") updated = download_and_cache_data! write_cask_names(regenerate: updated) end cache["cask_hashes"] end |
.cask_renames ⇒ Hash{String => 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.
189 190 191 192 193 194 195 196 |
# File 'api/internal.rb', line 189 def self.cask_renames unless cache.key?("cask_renames") updated = download_and_cache_data! write_cask_names(regenerate: updated) end cache["cask_renames"] end |
.cask_struct(name) ⇒ Homebrew::API::CaskStruct
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.
54 55 56 57 58 59 60 61 62 63 64 65 66 |
# File 'api/internal.rb', line 54 def self.cask_struct(name) return cache["cask_structs"][name] if cache.key?("cask_structs") && cache["cask_structs"].key?(name) hash = cask_hashes[name] raise "No cask found for #{name}" unless hash struct = Homebrew::API::CaskStruct.deserialize(hash) cache["cask_structs"] ||= {} cache["cask_structs"][name] = struct struct end |
.cask_tap_git_head ⇒ 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.
209 210 211 212 213 214 215 216 |
# File 'api/internal.rb', line 209 def self.cask_tap_git_head unless cache.key?("cask_tap_git_head") updated = download_and_cache_data! write_cask_names(regenerate: updated) end cache["cask_tap_git_head"] end |
.cask_tap_migrations ⇒ Hash{String => 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.
199 200 201 202 203 204 205 206 |
# File 'api/internal.rb', line 199 def self.cask_tap_migrations unless cache.key?("cask_tap_migrations") updated = download_and_cache_data! write_cask_names(regenerate: updated) end cache["cask_tap_migrations"] end |
.fetch_packages_api!(download_queue: Homebrew.default_download_queue, stale_seconds: nil, enqueue: false) ⇒ Array<(Hash{String => T.untyped}, 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.
77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 |
# File 'api/internal.rb', line 77 def self.fetch_packages_api!(download_queue: Homebrew.default_download_queue, stale_seconds: nil, enqueue: false) old_failed = Homebrew.failed? json_contents, updated = begin Homebrew::API.fetch_json_api_file(packages_endpoint, stale_seconds:, download_queue:, enqueue:) rescue ErrorDuringExecution => e raise if e.stderr.exclude?("HTTP status: 404") || effective_tag == fallback_tag @effective_tag = fallback_tag Homebrew.failed = old_failed retry end [T.cast(json_contents, T::Hash[String, T.untyped]), updated] end |
.formula_aliases ⇒ Hash{String => 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.
139 140 141 142 143 144 145 146 |
# File 'api/internal.rb', line 139 def self.formula_aliases unless cache.key?("formula_aliases") updated = download_and_cache_data! write_formula_names_and_aliases(regenerate: updated) end cache["formula_aliases"] end |
.formula_hashes ⇒ Hash{String => 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.
129 130 131 132 133 134 135 136 |
# File 'api/internal.rb', line 129 def self.formula_hashes unless cache.key?("formula_hashes") updated = download_and_cache_data! write_formula_names_and_aliases(regenerate: updated) end cache["formula_hashes"] end |
.formula_renames ⇒ Hash{String => 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.
149 150 151 152 153 154 155 156 |
# File 'api/internal.rb', line 149 def self.formula_renames unless cache.key?("formula_renames") updated = download_and_cache_data! write_formula_names_and_aliases(regenerate: updated) end cache["formula_renames"] end |
.formula_struct(name) ⇒ Homebrew::API::FormulaStruct
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.
39 40 41 42 43 44 45 46 47 48 49 50 51 |
# File 'api/internal.rb', line 39 def self.formula_struct(name) return cache["formula_structs"][name] if cache.key?("formula_structs") && cache["formula_structs"].key?(name) hash = formula_hashes[name] raise "No formula found for #{name}" unless hash struct = Homebrew::API::FormulaStruct.deserialize(hash, bottle_tag: effective_tag) cache["formula_structs"] ||= {} cache["formula_structs"][name] = struct struct end |
.formula_tap_git_head ⇒ 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.
169 170 171 172 173 174 175 176 |
# File 'api/internal.rb', line 169 def self.formula_tap_git_head unless cache.key?("formula_tap_git_head") updated = download_and_cache_data! write_formula_names_and_aliases(regenerate: updated) end cache["formula_tap_git_head"] end |
.formula_tap_migrations ⇒ Hash{String => 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.
159 160 161 162 163 164 165 166 |
# File 'api/internal.rb', line 159 def self.formula_tap_migrations unless cache.key?("formula_tap_migrations") updated = download_and_cache_data! write_formula_names_and_aliases(regenerate: updated) end cache["formula_tap_migrations"] end |
.write_cask_names(regenerate: false) ⇒ 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.
122 123 124 125 126 |
# File 'api/internal.rb', line 122 def self.write_cask_names(regenerate: false) download_and_cache_data! unless cache.key?("cask_hashes") Homebrew::API.write_names_file!(cask_hashes.keys, "cask", regenerate:) end |
.write_formula_names_and_aliases(regenerate: false) ⇒ 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.
113 114 115 116 117 118 119 |
# File 'api/internal.rb', line 113 def self.write_formula_names_and_aliases(regenerate: false) download_and_cache_data! unless cache.key?("formula_hashes") Homebrew::API.write_names_file!(formula_hashes.keys, "formula", regenerate:) Homebrew::API.write_aliases_file!(formula_aliases, "formula", regenerate:) Homebrew::API.write_executables_file!(formula_hashes, regenerate:) end |