Class: Vagrant::UI::Basic
- Includes:
- Vagrant::Util::SafePuts
- Defined in:
- lib/vagrant/ui.rb
Overview
This is a UI implementation that outputs the text as is. It doesn't add any color.
Direct Known Subclasses
Instance Attribute Summary
Attributes inherited from Interface
Instance Method Summary collapse
- #ask(message, opts = nil) ⇒ Object
- #clear_line ⇒ Object
-
#format_message(type, message, opts = nil) ⇒ Object
This is called by
say
to format the message for output. -
#report_progress(progress, total, show_parts = true) ⇒ Object
This is used to output progress reports to the UI.
-
#say(type, message, opts = nil) ⇒ Object
This method handles actually outputting a message of a given type to the console.
Methods included from Vagrant::Util::SafePuts
Methods inherited from Interface
Constructor Details
This class inherits a constructor from Vagrant::UI::Interface
Instance Method Details
#ask(message, opts = nil) ⇒ Object
62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 |
# File 'lib/vagrant/ui.rb', line 62 def ask(, opts=nil) super() # We can't ask questions when the output isn't a TTY. raise Errors::UIExpectsTTY if !$stdin.tty? # Setup the options so that the new line is suppressed opts ||= {} opts[:new_line] = false if !opts.has_key?(:new_line) opts[:prefix] = false if !opts.has_key?(:prefix) # Output the data say(:info, , opts) # Get the results and chomp off the newline $stdin.gets.chomp end |
#clear_line ⇒ Object
96 97 98 99 100 101 102 |
# File 'lib/vagrant/ui.rb', line 96 def clear_line reset = "\r" reset += "\e[0K" unless Util::Platform.windows? reset info(reset, :new_line => false) end |
#format_message(type, message, opts = nil) ⇒ Object
This is called by say
to format the message for output.
124 125 126 127 128 |
# File 'lib/vagrant/ui.rb', line 124 def (type, , opts=nil) opts ||= {} = "[#{@resource}] #{}" if opts[:prefix] end |
#report_progress(progress, total, show_parts = true) ⇒ Object
This is used to output progress reports to the UI.
Send this method progress/total and it will output it
to the UI. Send clear_line
to clear the line to show
a continuous progress meter.
84 85 86 87 88 89 90 91 92 93 94 |
# File 'lib/vagrant/ui.rb', line 84 def report_progress(progress, total, show_parts=true) if total && total > 0 percent = (progress.to_f / total.to_f) * 100 line = "Progress: #{percent.to_i}%" line << " (#{progress} / #{total})" if show_parts else line = "Progress: #{progress}" end info(line, :new_line => false) end |
#say(type, message, opts = nil) ⇒ Object
This method handles actually outputting a message of a given type to the console.
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 |
# File 'lib/vagrant/ui.rb', line 106 def say(type, , opts=nil) defaults = { :new_line => true, :prefix => true } opts = defaults.merge(opts || {}) # Determine whether we're expecting to output our # own new line or not. printer = opts[:new_line] ? :puts : :print # Determine the proper IO channel to send this message # to based on the type of the message channel = type == :error || opts[:channel] == :error ? $stderr : $stdout # Output! safe_puts((type, , opts), :io => channel, :printer => printer) end |