Sha256: 4fd85c84a888e6317790602b9b7530ead73a5bd4a12988057ad52f016ea860e8

Contents?: true

Size: 1.83 KB

Versions: 5

Compression:

Stored size: 1.83 KB

Contents

require 'benchmark_driver/struct'
require 'rbconfig'

module BenchmarkDriver
  # All CLI options
  Config = ::BenchmarkDriver::Struct.new(
    :runner_type,   # @param [String]
    :output_type,   # @param [String]
    :output_opts,   # @param [Hash{ Symbol => Object }]
    :paths,         # @param [Array<String>]
    :executables,   # @param [Array<BenchmarkDriver::Config::Executable>]
    :filters,       # @param [Array<Regexp>]
    :repeat_count,  # @param [Integer]
    :repeat_result, # @param [String]
    :run_duration,  # @param [Float]
    :timeout,       # @param [Float,nil]
    :verbose,       # @param [Integer]
    defaults: {
      runner_type: 'ips',
      output_type: 'compare',
      output_opts: {},
      filters: [],
      repeat_count: 1,
      repeat_result: 'best',
      run_duration: 3.0,
      verbose: 0,
    },
  )

  # Subset of FullConfig passed to JobRunner
  Config::RunnerConfig = ::BenchmarkDriver::Struct.new(
    :repeat_count,  # @param [Integer]
    :repeat_result, # @param [String]
    :run_duration,  # @param [Float]
    :timeout,       # @param [Float,nil]
    :verbose,       # @param [Integer]
  )

  Config::Executable = ::BenchmarkDriver::Struct.new(
    :name,    # @param [String]
    :command, # @param [Array<String>]
  ) do
    def initialize(*)
      super
      @cache = {} # modifiable storage even after `#freeze`
    end

    # @return [String] - Return result of `ruby -v`. This is for convenience of output plugins.
    def description
      @cache[:description] ||= IO.popen([*command, '-v'], &:read).rstrip
    end

    # @return [String] - Return RUBY_VERSION
    def version
      @cache[:version] ||= IO.popen([*command, '-e', 'print RUBY_VERSION'], &:read)
    end
  end
  Config.defaults[:executables] = [
    BenchmarkDriver::Config::Executable.new(name: RUBY_VERSION, command: [RbConfig.ruby]),
  ]
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
benchmark_driver-0.15.4 lib/benchmark_driver/config.rb
benchmark_driver-0.15.3 lib/benchmark_driver/config.rb
benchmark_driver-0.15.2 lib/benchmark_driver/config.rb
benchmark_driver-0.15.1 lib/benchmark_driver/config.rb
benchmark_driver-0.15.0 lib/benchmark_driver/config.rb