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

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

Defined Under Namespace

Classes: BlockingInput

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, merged_output: false, duplicate_output_to: File.open(File::NULL, 'w'), &block) ⇒ Capture

Returns a new instance of Capture.



193
194
195
196
197
198
199
200
201
202
203
204
205
206
# File 'lib/cli/ui/stdout_router.rb', line 193

def initialize(
  with_frame_inset: true,
  merged_output: false,
  duplicate_output_to: File.open(File::NULL, 'w'),
  &block
)
  @with_frame_inset = with_frame_inset
  @merged_output = merged_output
  @duplicate_output_to = duplicate_output_to
  @block = block
  @print_captured_output = false
  @out = StringIO.new
  @err = StringIO.new
end

Instance Attribute Details

Returns the value of attribute print_captured_output.



209
210
211
# File 'lib/cli/ui/stdout_router.rb', line 209

def print_captured_output
  @print_captured_output
end

Class Method Details

.current_captureObject



103
104
105
# File 'lib/cli/ui/stdout_router.rb', line 103

def current_capture
  Thread.current[:cliui_current_capture]
end

.current_capture!Object



108
109
110
# File 'lib/cli/ui/stdout_router.rb', line 108

def current_capture!
  T.must(current_capture)
end

.in_alternate_screen(&block) ⇒ Object



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

def in_alternate_screen(&block)
  stdin_synchronize do
    previous_print_captured_output = current_capture&.print_captured_output
    current_capture&.print_captured_output = true
    Spinner::SpinGroup.pause_spinners do
      if outermost_uncaptured?
        begin
          prev_hook = Thread.current[:cliui_output_hook]
          Thread.current[:cliui_output_hook] = nil
          replay = current_capture!.stdout.gsub(ANSI.match_alternate_screen, '')
          CLI::UI.raw do
            print("#{ANSI.enter_alternate_screen}#{replay}")
          end
        ensure
          Thread.current[:cliui_output_hook] = prev_hook
        end
      end
      block.call
    ensure
      print(ANSI.exit_alternate_screen) if outermost_uncaptured?
    end
  ensure
    current_capture&.print_captured_output = !!previous_print_captured_output
  end
end

.stdin_synchronize(&block) ⇒ Object



140
141
142
143
144
145
146
147
148
149
150
151
# File 'lib/cli/ui/stdout_router.rb', line 140

def stdin_synchronize(&block)
  @stdin_mutex.synchronize do
    case $stdin
    when BlockingInput
      $stdin.synchronize do
        block.call
      end
    else
      block.call
    end
  end
end

.with_stdin_masked(&block) ⇒ Object



154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/cli/ui/stdout_router.rb', line 154

def with_stdin_masked(&block)
  @capture_mutex.synchronize do
    if @active_captures.zero?
      @stdin_mutex.synchronize do
        @saved_stdin = $stdin
        $stdin = BlockingInput.new(@saved_stdin)
      end
    end
    @active_captures += 1
  end

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

Instance Method Details

#runObject



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

def run
  require 'stringio'

  StdoutRouter.assert_enabled!

  Thread.current[:cliui_current_capture] = self

  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
      stream = :stdout if @merged_output
      case stream
      when :stdout
        @out.write(data)
        @duplicate_output_to.write(data)
      when :stderr
        @err.write(data)
      else raise
      end
      print_captured_output # suppress writing to terminal by default
    end

    @block.call
  end
ensure
  Thread.current[:cliui_output_hook] = prev_hook
  Thread.current[:no_cliui_frame_inset] = prev_frame_inset
  Thread.current[:cliui_current_capture] = nil
end

#stderrObject



255
256
257
# File 'lib/cli/ui/stdout_router.rb', line 255

def stderr
  @err.string
end

#stdoutObject



250
251
252
# File 'lib/cli/ui/stdout_router.rb', line 250

def stdout
  @out.string
end