Sha256: 2b25e176562b2839680f5f145a55ed3037d3d2e4c436215468d445bd874bb089

Contents?: true

Size: 1.95 KB

Versions: 4

Compression:

Stored size: 1.95 KB

Contents

# Copyright 2014 Red Hat, Inc, and individual contributors.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.

require 'set'

module TorqueBox
  module OptionUtils
    protected

    def validate_options(options, valid_keys)
      options.keys.each do |key|
        unless valid_keys.include?(key)
          fail ArgumentError.new("#{key} is not a valid option")
        end
      end
    end

    def opts_to_hash(opts_class)
      org.projectodd.wunderboss.Option.optsFor(opts_class).reduce({}) do |hash, entry|
        hash[entry.name.to_sym] = entry
        hash
      end
    end

    def opts_to_set(opts_class)
      Set.new(opts_to_hash(opts_class).keys)
    end

    def optset(*things)
      set = Set.new
      things.each do |thing|
        if thing.is_a?(Symbol)
          set << thing
        elsif thing.is_a?(Enumerable)
          set += thing
        else
          set += opts_to_set(thing)
        end
      end
      set
    end

    def option_defaults(opts_class)
      org.projectodd.wunderboss.Option.optsFor(opts_class).reduce({}) do |hash, entry|
        hash[entry.name.to_sym] = entry.defaultValue
        hash
      end
    end

    def extract_options(options, opts_class)
      opts_hash = opts_to_hash(opts_class)
      extracted_options = {}
      options.each_pair do |key, value|
        if opts_hash.include?(key)
          extracted_options[opts_hash[key]] = value.is_a?(Symbol) ? value.to_s : value
        end
      end
      extracted_options
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
torquebox-core-4.0.0.beta3-java lib/torquebox/option_utils.rb
torquebox-core-4.0.0.beta2-java lib/torquebox/option_utils.rb
torquebox-core-4.0.0.beta1-java lib/torquebox/option_utils.rb
torquebox-core-4.0.0.alpha1-java lib/torquebox/option_utils.rb