Class: AbstractDownloadStrategy Abstract Private

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

Defined Under Namespace

Modules: Pourable

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from SystemCommand::Mixin

#system_command, #system_command!

Methods included from Context

current, current=, #debug?, #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:



67
68
69
70
71
72
73
74
75
76
77
78
# File 'download_strategy.rb', line 67

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 = T.let(meta, T::Hash[Symbol, T.untyped])
  @quiet = T.let(false, T.nilable(T::Boolean))
  extend Pourable if meta[:bottle]
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:



53
54
55
# File 'download_strategy.rb', line 53

def cache
  @cache
end

#urlString (readonly)

The download URL.

Returns:



50
51
52
# File 'download_strategy.rb', line 50

def url
  @url
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:



161
162
163
# File 'download_strategy.rb', line 161

def basename
  cached_location.basename
end

#cached_locationPathname

This method is abstract.

Location of the cached download.

Returns:



90
# File 'download_strategy.rb', line 90

def cached_location; end

#clear_cachevoid

This method returns an undefined value.

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



156
157
158
# File 'download_strategy.rb', line 156

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)


84
# File 'download_strategy.rb', line 84

def fetch(timeout: nil); end

#quiet!void

This method returns an undefined value.

Disable any output during downloading.



96
97
98
# File 'download_strategy.rb', line 96

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)


101
102
103
# File 'download_strategy.rb', line 101

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:



147
148
149
# File 'download_strategy.rb', line 147

def source_modified_time
  Pathname.pwd.to_enum(:find).select(&:file?).map(&:mtime).max
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.untyped)


115
116
117
118
119
120
121
122
123
# File 'download_strategy.rb', line 115

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