Class: VMC::Cli::Command::FileWithPercentOutput

Inherits:
File
  • Object
show all
Defined in:
lib/cli/commands/apps.rb

Class Attribute Summary collapse

Instance Method Summary collapse

Class Attribute Details

.display_strObject

Returns the value of attribute display_str.



1179
1180
1181
# File 'lib/cli/commands/apps.rb', line 1179

def display_str
  @display_str
end

.upload_sizeObject

Returns the value of attribute upload_size.



1179
1180
1181
# File 'lib/cli/commands/apps.rb', line 1179

def upload_size
  @upload_size
end

Instance Method Details

#read(*args) ⇒ Object



1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
# File 'lib/cli/commands/apps.rb', line 1193

def read(*args)
  result  = super(*args)
  if result && result.size > 0
    update_display(result.size)
  else
    unless VMC::Cli::Config.output.nil? || !STDOUT.tty?
      clear(FileWithPercentOutput.display_str.size + 5)
      VMC::Cli::Config.output.print(FileWithPercentOutput.display_str)
      display('OK'.green)
    end
  end
  result
end

#update_display(rsize) ⇒ Object



1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
# File 'lib/cli/commands/apps.rb', line 1182

def update_display(rsize)
  @read ||= 0
  @read += rsize
  p = (@read * 100 / FileWithPercentOutput.upload_size).to_i
  unless VMC::Cli::Config.output.nil? || !STDOUT.tty?
    clear(FileWithPercentOutput.display_str.size + 5)
    VMC::Cli::Config.output.print("#{FileWithPercentOutput.display_str} #{p}%")
    VMC::Cli::Config.output.flush
  end
end