Class: Opal::CliRunners::Chrome

Inherits:
Object
  • Object
show all
Defined in:
lib/opal/cli_runners/chrome.rb

Constant Summary collapse

SCRIPT_PATH =
File.expand_path('chrome_cdp_interface.rb', __dir__).freeze
DEFAULT_CHROME_HOST =
'localhost'
DEFAULT_CHROME_PORT =
9222

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Chrome

Returns a new instance of Chrome.



23
24
25
26
27
28
29
30
31
32
# File 'lib/opal/cli_runners/chrome.rb', line 23

def initialize(data)
  argv = data[:argv]
  if argv && argv.any?
    warn "warning: ARGV is not supported by the Chrome runner #{argv.inspect}"
  end

  options  = data[:options]
  @output  = options.fetch(:output, $stdout)
  @builder = data[:builder].call
end

Instance Attribute Details

#builderObject (readonly)

Returns the value of attribute builder.



34
35
36
# File 'lib/opal/cli_runners/chrome.rb', line 34

def builder
  @builder
end

#exit_statusObject (readonly)

Returns the value of attribute exit_status.



34
35
36
# File 'lib/opal/cli_runners/chrome.rb', line 34

def exit_status
  @exit_status
end

#outputObject (readonly)

Returns the value of attribute output.



34
35
36
# File 'lib/opal/cli_runners/chrome.rb', line 34

def output
  @output
end

Class Method Details

.call(data) ⇒ Object



18
19
20
21
# File 'lib/opal/cli_runners/chrome.rb', line 18

def self.call(data)
  runner = new(data)
  runner.run
end

Instance Method Details

#runObject



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
# File 'lib/opal/cli_runners/chrome.rb', line 36

def run
  mktmpdir do |dir|
    with_chrome_server do
      prepare_files_in(dir)

      env = {
        'CHROME_HOST' => chrome_host,
        'CHROME_PORT' => chrome_port.to_s,
        'NODE_PATH' => File.join(__dir__, 'node_modules'),
        'OPAL_CDP_EXT' => builder.output_extension
      }

      cmd = [
        RbConfig.ruby,
        "#{__dir__}/../../../exe/opal",
        '--no-exit',
        '-I', __dir__,
        '-r', 'source-map-support-node',
        SCRIPT_PATH,
        dir
      ]

      Kernel.exec(env, *cmd)
    end
  end
end