Progress bar base class
To define new progress bar you can inherit from this class and implement finite_template and infinite_template methods. Also you may find useful to change more methods like done_message or print_error
# File lib/kafo/progress_bar.rb, line 17 def initialize @lines = 0 @all_lines = 0 @total = :unknown @resources = Set.new @term_width = HighLine::SystemExtensions.terminal_size[0] || 0 @bar = PowerBar.new @bar.settings.tty.infinite.template.main = infinite_template @bar.settings.tty.finite.template.main = finite_template @bar.settings.tty.finite.template.padchar = ' ' @bar.settings.tty.finite.template.barchar = '.' @bar.settings.tty.finite.output = Proc.new { |s| $stderr.print s } end
# File lib/kafo/progress_bar.rb, line 70 def close @bar.show({ :msg => done_message, :done => @total == :unknown ? @bar.done + 1 : @total, :total => @total }, true) @bar.close end
# File lib/kafo/progress_bar.rb, line 77 def print(line) @bar.print line end
# File lib/kafo/progress_bar.rb, line 81 def print_error(line) print line end
# File lib/kafo/progress_bar.rb, line 31 def update(line) @all_lines += 1 # we print every 20th line during installation preparing otherwise only update at EVALTRACE_START update_bar = (@total == :unknown && @all_lines % 20 == 0) force_update = false if (line_monitor = MONITOR_RESOURCE.match(line)) @resources << line_monitor[1] @total = (@total == :unknown ? 1 : @total + 1) end if (line_start = EVALTRACE_START.match(line)) if (known_resource = find_known_resource(line_start[1])) line = known_resource update_bar = true force_update = true end end if (line_end = EVALTRACE_END.match(line)) && @lines < @total if (known_resource = find_known_resource(line_end[1])) @resources.delete(known_resource) # ensure it's only counted once @lines += 1 end end if PREFETCH =~ line update_bar = true force_update = true end if update_bar @bar.show({ :msg => format(line), :done => @lines, :total => @total }, force_update) end end
# File lib/kafo/progress_bar.rb, line 87 def done_message text = 'Done' text + (' ' * (50 - text.length)) end
# File lib/kafo/progress_bar.rb, line 104 def find_known_resource(resource) loop do return resource if @resources.include?(resource) # continue to remove prefixes from /Stage[main]/Example/File[/etc/foo] until a resource name is found break unless resource.include?('/') resource = resource.sub %r{.*?/}, '' end nil end
# File lib/kafo/progress_bar.rb, line 96 def finite_template 'Installing... [${<percent>%}]' end
# File lib/kafo/progress_bar.rb, line 92 def format(line) (line.tr("\r\n", '') + (' ' * 50))[0..49] end
# File lib/kafo/progress_bar.rb, line 100 def infinite_template 'Installing...' end