Class: AbstractDownloadStrategy Abstract Private

Inherits:
Object
  • Object
show all
Extended by:
T::Helpers
Includes:
Context, FileUtils, SystemCommand::Mixin, Utils::Output::Mixin
Defined in:
download_strategy/abstract_download_strategy.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.

This class is abstract.

Abstract superclass for all download strategies.

Constant Summary collapse

HOMEBREW_CONTROLLED_STRATEGIES =

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.

T.let([
  CurlApacheMirrorDownloadStrategy,
  CurlDownloadStrategy,
  CurlGitHubPackagesDownloadStrategy,
  CurlPostDownloadStrategy,
  HomebrewCurlDownloadStrategy,
  NoUnzipCurlDownloadStrategy,
  PyPIDownloadStrategy,
].freeze, T::Array[T::Class[AbstractDownloadStrategy]])

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Utils::Output::Mixin

#issue_reporting_message, #odebug, #odeprecated, #odie, #odisabled, #ofail, #oh1, #oh1_title, #ohai_title, #onoe, #opoo, #opoo_outside_github_actions, #opoo_without_github_actions_annotation, #pretty_cannot_install, #pretty_deprecated, #pretty_disabled, #pretty_duration, #pretty_install_status, #pretty_installed, #pretty_uninstalled, #pretty_unmarked, #pretty_upgradable, #pretty_warning

Methods included from SystemCommand::Mixin

#system_command, #system_command!

Methods included from Context

current, current=, #debug?, #deferred_environment_expansion?, #verbose?, #with_context

Constructor Details

#initialize(url, name, version, **meta) ⇒ 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:



37
38
39
40
41
42
43
44
45
46
47
# File 'download_strategy/abstract_download_strategy.rb', line 37

def initialize(url, name, version, **meta)
  @cached_location = T.let(nil, T.nilable(Pathname))
  @ref_type = T.let(nil, T.nilable(Symbol))
  @ref = T.let(nil, T.untyped)
  @url = url
  @name = name
  @version = version
  @cache = T.let(meta.fetch(:cache, HOMEBREW_CACHE), Pathname)
  @meta = meta
  @quiet = T.let(false, T.nilable(T::Boolean))
end

Instance Attribute Details

#cachePathname (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.

Returns:



23
24
25
# File 'download_strategy/abstract_download_strategy.rb', line 23

def cache
  @cache
end

#urlString (readonly)

The download URL.

Returns:



20
21
22
# File 'download_strategy/abstract_download_strategy.rb', line 20

def url
  @url
end

Class Method Details

.expand_deferred_environment_for?(downloader) ⇒ 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.

Parameters:

Returns:

  • (Boolean)


83
84
85
# File 'download_strategy/abstract_download_strategy.rb', line 83

def self.expand_deferred_environment_for?(downloader)
  HOMEBREW_CONTROLLED_STRATEGIES.include?(downloader.class)
end

Instance Method Details

#basenamePathname

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:



148
149
150
# File 'download_strategy/abstract_download_strategy.rb', line 148

def basename
  cached_location.basename
end

#cached_locationPathname

This method is abstract.

Location of the cached download.

Returns:



67
# File 'download_strategy/abstract_download_strategy.rb', line 67

def cached_location; end

#chdir(&block) ⇒ 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.

Parameters:

  • block (T.proc.void)


108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
# File 'download_strategy/abstract_download_strategy.rb', line 108

def chdir(&block)
  entries = Dir["*"]
  raise "Empty archive" if entries.empty?

  if entries.length != 1
    yield
    return
  end

  if File.directory? entries.fetch(0)
    Dir.chdir(entries.fetch(0)) { |_dir| yield }
  else
    yield
  end
end

#clear_cachevoid

This method returns an undefined value.

Remove #cached_location and any other files associated with the resource from the cache.



143
144
145
# File 'download_strategy/abstract_download_strategy.rb', line 143

def clear_cache
  rm_rf(cached_location)
end

#fetch(timeout: nil) ⇒ void

This method returns an undefined value.

Download and cache the resource at #cached_location.

Parameters:

  • timeout (Float, Integer, nil) (defaults to: nil)


53
# File 'download_strategy/abstract_download_strategy.rb', line 53

def fetch(timeout: nil); end

#fetched_sizeInteger?

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.

Total bytes downloaded if available.

Returns:



57
# File 'download_strategy/abstract_download_strategy.rb', line 57

def fetched_size; end

#ohai(title, *sput) ⇒ 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.

Parameters:

  • title (String, Exception)
  • sput (T.anything)


153
154
155
# File 'download_strategy/abstract_download_strategy.rb', line 153

def ohai(title, *sput)
  super unless quiet?
end

#quiet!void

This method returns an undefined value.

Disable any output during downloading.



73
74
75
# File 'download_strategy/abstract_download_strategy.rb', line 73

def quiet!
  @quiet = T.let(true, T.nilable(T::Boolean))
end

#quiet?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)


78
79
80
# File 'download_strategy/abstract_download_strategy.rb', line 78

def quiet?
  Context.current.quiet? || @quiet || false
end

#source_modified_timeTime

Returns the most recent modified time for all files in the current working directory after stage.

Returns:



128
129
130
# File 'download_strategy/abstract_download_strategy.rb', line 128

def source_modified_time
  Pathname.pwd.to_enum(:find).select(&:file?).map(&:mtime).max
end

#source_revisionString?

Return the checked out source revision for version control downloads.

Returns:



136
# File 'download_strategy/abstract_download_strategy.rb', line 136

def source_revision; end

#stage(&block) ⇒ void

This method returns an undefined value.

Unpack #cached_location into the current working directory.

Additionally, if a block is given, the working directory was previously empty and a single directory is extracted from the archive, the block will be called with the working directory changed to that directory. Otherwise this method will return, or the block will be called, without changing the current working directory.

Parameters:

  • block (T.proc.void, nil)


97
98
99
100
101
102
103
104
105
# File 'download_strategy/abstract_download_strategy.rb', line 97

def stage(&block)
  UnpackStrategy.detect(cached_location,
                        prioritize_extension: true,
                        ref_type: @ref_type, ref: @ref)
                .extract_nestedly(basename:,
                                  prioritize_extension: true,
                                  verbose:              verbose? && !quiet?)
  chdir(&block) if block
end

#total_sizeInteger?

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.

Total download size if available.

Returns:



61
# File 'download_strategy/abstract_download_strategy.rb', line 61

def total_size; end