Class: Value

Inherits:
Object
  • Object
show all
Defined in:
lib/values.rb

Class Method Summary collapse

Class Method Details

.new(*fields, &block) ⇒ Object

Raises:

  • (ArgumentError)


2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# File 'lib/values.rb', line 2

def self.new(*fields, &block)
  raise ArgumentError.new('wrong number of arguments (0 for 1+)') if fields.empty?

  Class.new do
    attr_reader(:hash, *fields)

    define_method(:initialize) do |*values|
      raise ArgumentError.new("wrong number of arguments, #{values.size} for #{fields.size}") if fields.size != values.size

      fields.zip(values) do |field, value|
        instance_variable_set(:"@#{field}", value)
      end

      @hash = self.class.hash ^ values.hash

      freeze
    end

    const_set :VALUE_ATTRS, fields

    def self.with(hash)
      unexpected_keys = hash.keys - self::VALUE_ATTRS
      if unexpected_keys.any?
        raise ArgumentError.new("Unexpected hash keys: #{unexpected_keys}")
      end

      missing_keys = self::VALUE_ATTRS - hash.keys
      if missing_keys.any?
        raise ArgumentError.new("Missing hash keys: #{missing_keys} (got keys #{hash.keys})")
      end

      new(*hash.values_at(*self::VALUE_ATTRS))
    end

    def ==(other)
      eql?(other)
    end

    def eql?(other)
      self.class == other.class && values == other.values
    end

    def values
      self.class::VALUE_ATTRS.map { |field| send(field) }
    end

    def inspect
      attributes = self.class::VALUE_ATTRS.map { |field| "#{field}=#{send(field).inspect}" }.join(", ")
      "#<#{self.class.name} #{attributes}>"
    end

    class_eval &block if block
  end
end