Class: Gem::StreamUI::ThreadedDownloadReporter

Inherits:
Object
  • Object
show all
Defined in:
lib/rubygems/user_interaction.rb

Overview

A progress reporter that behaves nicely with threaded downloading.

Constant Summary collapse

MUTEX =
Mutex.new

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(out_stream, *args) ⇒ ThreadedDownloadReporter

Creates a new threaded download reporter that will display on out_stream. The other arguments are ignored.



570
571
572
573
# File 'lib/rubygems/user_interaction.rb', line 570

def initialize(out_stream, *args)
  @file_name = nil
  @out = out_stream
end

Instance Attribute Details

#file_nameObject (readonly)

The current file name being displayed



564
565
566
# File 'lib/rubygems/user_interaction.rb', line 564

def file_name
  @file_name
end

Instance Method Details

#doneObject

Indicates the download is complete.



596
597
598
# File 'lib/rubygems/user_interaction.rb', line 596

def done
  # Do nothing.
end

#fetch(file_name, *args) ⇒ Object

Tells the download reporter that the file_name is being fetched. The other arguments are ignored.



579
580
581
582
583
584
# File 'lib/rubygems/user_interaction.rb', line 579

def fetch(file_name, *args)
  if @file_name.nil?
    @file_name = file_name
    locked_puts "Fetching #{@file_name}"
  end
end

#update(bytes) ⇒ Object

Updates the threaded download reporter for the given number of bytes.



589
590
591
# File 'lib/rubygems/user_interaction.rb', line 589

def update(bytes)
  # Do nothing.
end