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.



1329
1330
1331
# File 'lib/cli/commands/apps.rb', line 1329

def display_str
  @display_str
end

.upload_sizeObject

Returns the value of attribute upload_size.



1329
1330
1331
# File 'lib/cli/commands/apps.rb', line 1329

def upload_size
  @upload_size
end

Instance Method Details

#read(*args) ⇒ Object



1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
# File 'lib/cli/commands/apps.rb', line 1343

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



1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
# File 'lib/cli/commands/apps.rb', line 1332

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