1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415
|
#
# Copyright (C) 2011 by moe@busyloop.net
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
#
require 'powerbar/version'
require 'hashie/mash'
require 'io/console'
#
# This is PowerBar - The last progressbar-library you'll ever need.
#
class PowerBar
STRIP_ANSI = Regexp.compile '\e\[(\d+)(;\d+)?(;\d+)?[m|K]', nil
RUBY18 = RUBY_VERSION[0..2] == "1.8"
def initialize(opts={})
@@exit_hooked = false
@state = Hashie::Mash.new( {
:time_last_show => Time.at(0), # <- don't mess with us
:time_last_update => Time.at(0), # <- unless you know
:time_start => nil, # <- what you're doing!
:time_now => nil, # <-
:msg => 'PowerBar!',
:done => 0,
:total => :unknown,
:settings => {
:rate_sample_max_interval => 10, # See PowerBar::Rate
:rate_sample_window => 6, # See PowerBar::Rate
:force_mode => nil, # set to :tty or :notty to force either mode
:kilo => 1024, # Change this to 1000 when measuring network traffic or such.
:tty => { # <== Settings when stdout is a tty
:finite => { # <== Settings for a finite progress bar (when total != :unknown)
# The :output Proc is called to draw on the screen --------------------.
:output => Proc.new{ |s| $stderr.print s[0..terminal_width()-1] }, # <-'
:interval => 0.1, # Minimum interval between screen refreshes (in seconds)
:show_eta => true, # Set to false if you want to hide the ETA without changing the template
:template => { # <== template for a finite progress bar on a tty
:pre => "\e[1G\e[?25l", # printed before the progress-bar
#
# :main is the progressbar template
#
# The following tokens are available:
# msg, bar, rate, percent, elapsed, eta, done, total
#
# Tokens may be used like so:
# ${<foo>}
# OR:
# ${surrounding <foo> text}
#
# The surrounding text is only rendered when <foo>
# evaluates to something other than nil.
:main => '${<msg>}: ${[<bar>] }${<rate>/s }${<percent>% }${<elapsed>}${, ETA: <eta>}',
:post => '', # printed after the progressbar
:wipe => "\e[0m\e[1G\e[K", # printed when 'wipe' is called
:close => "\e[?25h\n", # printed when 'close' is called
:exit => "\e[?25h", # printed if the process exits unexpectedly
:barchar => RUBY18 ? '#' : "\u2588", # fill-char for the progress-bar
:padchar => RUBY18 ? '.' : "\u2022" # padding-char for the progress-bar
},
},
:infinite => { # <== Settings for an infinite progress "bar" (when total is :unknown)
:output => Proc.new{ |s| $stderr.print s[0..terminal_width()-1] },
:interval => 0.1,
:show_eta => false,
:template => {
:pre => "\e[1G\e[?25l",
:main => "${<msg>}: ${<done> }${<rate>/s }${<elapsed>}",
:post => "\e[K",
:wipe => "\e[0m\e[1G\e[K",
:close => "\e[?25h\n",
:exit => "\e[?25h",
:barchar => RUBY18 ? '#' : "\u2588",
:padchar => RUBY18 ? '.' : "\u2022"
},
}
},
:notty => { # <== Settings when stdout is not a tty
:finite => {
# You may want to hook in your favorite Logger-Library here. ---.
:output => Proc.new{ |s| $stderr.print s }, # <----------------'
:interval => 1,
:show_eta => true,
:line_width => 78, # Maximum output line width
:template => {
:pre => '',
:main => "${<msg>}: ${<done>}/${<total>}, ${<percent>%}${, <rate>/s}${, elapsed: <elapsed>}${, ETA: <eta>}\n",
:post => '',
:wipe => '',
:close => nil,
:exit => nil,
:barchar => "#",
:padchar => "."
},
},
:infinite => {
:output => Proc.new{ |s| $stderr.print s },
:interval => 1,
:show_eta => false,
:line_width => 78,
:template => {
:pre => "",
:main => "${<msg>}: ${<done> }${<rate>/s }${<elapsed>}\n",
:post => "",
:wipe => "",
:close => nil,
:exit => nil,
:barchar => "#",
:padchar => "."
},
}
}
}
}.merge(opts) )
end
# settings-hash
def settings
@state.settings
end
# settings under current scope (e.g. tty.infinite)
def scope
scope_hash = [settings.force_mode,state.total].hash
return @state.scope unless @state.scope.nil? or scope_hash != @state.scope_hash
state.scope_at = [
settings.force_mode || ($stdout.isatty ? :tty : :notty),
:unknown == state.total ? :infinite : :finite
]
state.scope = state.settings
state.scope_at.each do |s|
begin
state.scope = state.scope[s]
rescue NoMethodError
raise StandardError, "Invalid configuration: #{state.scope_at.join('.')} "+
"(Can't resolve: #{state.scope_at[state.scope_at.index(s)-1]})"
end
end
state.scope_hash = scope_hash
state.scope
end
# Hook at_exit to ensure cleanup if we get interrupted
def hook_exit
return if @@exit_hooked
if scope.template.exit
at_exit do
exit!
end
end
@@exit_hooked = true
end
# Print the close-template and defuse the exit-hook.
# Be a good citizen, always close your PowerBars!
def close(fill=false)
show(
{
:done => fill && !state.total.is_a?(Symbol) ? state.total : state.done,
:tty => {
:finite => { :show_eta => false },
:infinite => { :show_eta => false },
},
:notty => {
:finite => { :show_eta => false },
:infinite => { :show_eta => false },
},
}, true)
scope.output.call(scope.template.close) unless scope.template.close.nil?
state.closed = true
end
# Remove progress-bar, print a message
def print(s)
wipe
scope.output.call(s)
end
# Update state (and settings) without printing anything.
def update(opts={})
state.merge!(opts)
state.time_start ||= Time.now
state.time_now = Time.now
@rate ||= PowerBar::Rate.new(state.time_now,
state.settings.rate_sample_window,
state.settings.rate_sample_max_interval)
@rate.append(state.time_now, state.done)
end
# Output the PowerBar.
# Returns true if bar was shown, false otherwise.
def show(opts={}, force=false)
return false if scope.interval > Time.now - state.time_last_show and force == false
update(opts)
hook_exit
state.time_last_show = Time.now
state.closed = false
scope.output.call(scope.template.pre)
scope.output.call(render)
scope.output.call(scope.template.post)
true
end
# Render the PowerBar and return as a string.
def render(opts={})
update(opts)
render_template
end
# Remove the PowerBar from the screen.
def wipe
scope.output.call(scope.template.wipe)
end
# Render the actual bar-portion of the PowerBar.
# The length of the bar is determined from the template.
# Returns nil if the bar-length would be == 0.
def bar
return nil if state.total.is_a? Symbol
skel = render_template(:main, [:bar])
lwid = state.scope_at[0] == :tty ? terminal_width() : scope.line_width
barlen = [lwid - skel.gsub(STRIP_ANSI, '').length, 0].max
fill = [0,[(state.done.to_f/state.total*barlen).to_i,barlen].min].max
thebar = scope.template.barchar * fill + scope.template.padchar * [barlen - fill,0].max
thebar.length == 0 ? nil : thebar
end
def h_bar
bar
end
def msg
state.msg
end
def h_msg
msg
end
def eta
(state.total - state.done) / rate
end
# returns nil when eta is < 1 second
def h_eta
return nil unless scope.show_eta
1 < eta ? humanize_interval(eta) : nil
end
def elapsed
(state.time_now - state.time_start).to_f
end
def h_elapsed
humanize_interval(elapsed)
end
def percent
return 0.0 if state.total.is_a? Symbol
state.done.to_f/state.total*100
end
def h_percent
sprintf "%d", percent
end
def rate
@rate.avg
end
def h_rate
humanize_quantity(round(rate, 1))
end
def total
state.total
end
def h_total
humanize_quantity(state.total)
end
def done
state.done
end
def h_done
humanize_quantity(state.done)
end
def terminal_width
rows, cols = IO.console.winsize
cols -= 1 if Gem.win_platform?
cols
end
private
def state
@state
end
def round(number, digit)
if number.zero? or number.nan? or number.infinite?
number
else
factor = 10.0 ** digit
(number * factor).round / factor
end
end
# Cap'n Hook
def exit!
return if state.closed
scope.output.call(scope.template.exit) unless scope.template.exit.nil?
end
def render_template(tplid=:main, skip=[])
tpl = scope.template[tplid]
skip.each do |s|
tpl = tpl.gsub(/\$\{([^<]*)<#{s}>([^}]*)\}/, '\1\2')
end
tpl.gsub(/\$\{[^\}]+\}/) do |var|
sub = nil
r = var.gsub(/<[^>]+>/) do |t|
t = t[1..-2]
begin
sub = send "h_#{t}"
rescue NoMethodError
raise NameError, "Invalid token '#{t}' in template '#{tplid}'"
end
end
sub.nil? ? '' : r[2..-2]
end
end
HQ_UNITS = %w(b k M G T).freeze
def humanize_quantity(number, format='%n%u')
return nil if number.nil?
return nil if number.is_a? Float and (number.nan? or number.infinite?)
kilo = settings.kilo
return number if number.to_i < kilo
max_exp = HQ_UNITS.size - 1
number = Float(number)
exponent = (Math.log(number) / Math.log(kilo)).to_i
exponent = max_exp if exponent > max_exp
number /= kilo ** exponent
unit = HQ_UNITS[exponent]
return format.gsub(/%n/, round(number, 1).to_s).gsub(/%u/, unit)
end
def humanize_interval(s)
return nil if s.nil? or s.infinite?
sprintf("%02d:%02d:%02d", s / 3600, s / 60 % 60, s % 60)
end
class Rate < Array
attr_reader :last_sample_at
def initialize(at, window, max_interval=10, interval_step_up=0.1)
super([])
@last_sample_at = at
@sample_interval = 0
@sample_interval_step_up = interval_step_up
@sample_interval_max = max_interval
@counter = 0
@window = window
end
def append(at, v)
return if @sample_interval > at - @last_sample_at
@sample_interval += @sample_interval_step_up if @sample_interval < @sample_interval_max
rate = (v - @counter) / (at - @last_sample_at).to_f
return if rate.nan?
@last_sample_at = at
@counter = v
self << rate
shift while @window < length
self
end
def sum
inject(:+).to_f
end
def avg
sum / size
end
end
end
|