Class: CLI::UI::StdoutRouter::Capture

Inherits:
Object
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/cli/ui/stdout_router.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods included from T::Sig

sig

Constructor Details

#initialize(with_frame_inset: true, &block) ⇒ Capture

Returns a new instance of Capture.



122
123
124
125
126
127
# File 'lib/cli/ui/stdout_router.rb', line 122

def initialize(with_frame_inset: true, &block)
  @with_frame_inset = with_frame_inset
  @block = block
  @stdout = ''
  @stderr = ''
end

Instance Attribute Details

#stderrObject (readonly)

Returns the value of attribute stderr.



130
131
132
# File 'lib/cli/ui/stdout_router.rb', line 130

def stderr
  @stderr
end

#stdoutObject (readonly)

Returns the value of attribute stdout.



130
131
132
# File 'lib/cli/ui/stdout_router.rb', line 130

def stdout
  @stdout
end

Class Method Details

.with_stdin_masked(&block) ⇒ Object



97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
# File 'lib/cli/ui/stdout_router.rb', line 97

def with_stdin_masked(&block)
  @m.synchronize do
    if @active_captures.zero?
      @saved_stdin = $stdin
      $stdin, w = IO.pipe
      $stdin.close
      w.close
    end
    @active_captures += 1
  end

  yield
ensure
  @m.synchronize do
    @active_captures -= 1
    if @active_captures.zero?
      $stdin = @saved_stdin
    end
  end
end

Instance Method Details

#runObject



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
# File 'lib/cli/ui/stdout_router.rb', line 133

def run
  require 'stringio'

  StdoutRouter.assert_enabled!

  out = StringIO.new
  err = StringIO.new

  prev_frame_inset = Thread.current[:no_cliui_frame_inset]
  prev_hook = Thread.current[:cliui_output_hook]

  if Thread.current.respond_to?(:report_on_exception)
    Thread.current.report_on_exception = false
  end

  self.class.with_stdin_masked do
    Thread.current[:no_cliui_frame_inset] = !@with_frame_inset
    Thread.current[:cliui_output_hook] = ->(data, stream) do
      case stream
      when :stdout then out.write(data)
      when :stderr then err.write(data)
      else raise
      end
      false # suppress writing to terminal
    end

    begin
      @block.call
    ensure
      @stdout = out.string
      @stderr = err.string
    end
  end
ensure
  Thread.current[:cliui_output_hook] = prev_hook
  Thread.current[:no_cliui_frame_inset] = prev_frame_inset
end