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

Inherits:
Object
  • Object
show all
Defined in:
lib/cli/ui/stdout_router.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of Capture.



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

def initialize(*block_args, with_frame_inset: true, &block)
  @with_frame_inset = with_frame_inset
  @block_args = block_args
  @block = block
end

Instance Attribute Details

#stderrObject (readonly)

Returns the value of attribute stderr.



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

def stderr
  @stderr
end

#stdoutObject (readonly)

Returns the value of attribute stdout.



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

def stdout
  @stdout
end

Class Method Details

.with_stdin_maskedObject



80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# File 'lib/cli/ui/stdout_router.rb', line 80

def self.with_stdin_masked
  @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



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

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]

  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(*@block_args)
    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