Sha256: 0caecbeabeb508206269673ff6595172a7c4f79561551939c02e2b418775d201

Contents?: true

Size: 1.26 KB

Versions: 16

Compression:

Stored size: 1.26 KB

Contents

require 'benchmark_driver/runner'

module BenchmarkDriver
  class << JobParser = Module.new
    # @param [Hash] config
    def parse(config)
      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
      ::BenchmarkDriver.const_get("Runner::#{camelize(type)}::JobParser", false).parse(config)
    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

16 entries across 16 versions & 1 rubygems

Version Path
benchmark_driver-0.10.15 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.14 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.13 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.12 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.11 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.10 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.9 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.8 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.7 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.6 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.5 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.4 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.3 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.2 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.1 lib/benchmark_driver/job_parser.rb
benchmark_driver-0.10.0 lib/benchmark_driver/job_parser.rb