Sha256: 93f4bebceeb2860430f08f7938fcd28864bc7e9417d2d05018b908c5002dc9bf

Contents?: true

Size: 1.58 KB

Versions: 10

Compression:

Stored size: 1.58 KB

Contents

require 'benchmark_driver/runner'

module BenchmarkDriver
  class << JobParser = Module.new
    # @param [Hash] config
    # @param [Hash] default_params - Special default values not written in job definition
    def parse(config, default_params: {})
      config = symbolize_keys(config)
      type = config.fetch(:type)
      if !type.is_a?(String)
        raise ArgumentError.new("Invalid type: #{config[:type].inspect} (expected String)")
      elsif !type.match(/\A[A-Za-z0-9_]+\z/)
        raise ArgumentError.new("Invalid type: #{config[:type].inspect} (expected to include only [A-Za-z0-9_])")
      end
      config.delete(:type)

      # Dynamic dispatch for plugin support
      job = ::BenchmarkDriver.const_get("Runner::#{camelize(type)}::JobParser", false).parse(config)
      default_params.each do |key, value|
        if job.respond_to?(key) && job.respond_to?("#{key}=") && job.public_send(key).nil?
          job.public_send("#{key}=", value)
        end
      end
      job
    end

    private

    def camelize(str)
      str.split('_').map(&:capitalize).join
    end

    # @param [Object] config
    def symbolize_keys(config)
      case config
      when Hash
        config.dup.tap do |hash|
          hash.keys.each do |key|
            case key
            when String, Symbol
              hash[key.to_sym] = symbolize_keys(hash.delete(key))
            else # Struct
              hash[key] = symbolize_keys(hash.delete(key))
            end
          end
        end
      when Array
        config.map { |c| symbolize_keys(c) }
      else
        config
      end
    end
  end
end

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
benchmark_driver-0.14.2 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.14.0 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.13.3 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.13.2 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.13.1 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.13.0 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.12.0 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.11.1 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.11.0 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.16 lib/benchmark_driver/job_parser.rb