Class: Latinum::Collection

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/latinum/collection.rb

Overview

Aggregates a set of resources, typically used for summing values.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(names = Set.new) ⇒ Collection

Initialize the collection with a given set of resource names.



30
31
32
33
# File 'lib/latinum/collection.rb', line 30

def initialize(names = Set.new)
	@names = names
	@resources = Hash.new {|hash, key| @names << key; BigDecimal.new("0")}
end

Instance Attribute Details

#namesObject (readonly)

All resource names which have been added to the collection, e.g. ‘[’NZD’, ‘USD’]‘.



36
37
38
# File 'lib/latinum/collection.rb', line 36

def names
  @names
end

#resourcesObject (readonly)

A map of ‘name` => `total` for all added resources. Totals are stored as BigDecimal instances.



39
40
41
# File 'lib/latinum/collection.rb', line 39

def resources
  @resources
end

Instance Method Details

#<<(object) ⇒ Object

Add a resource, an array of resources, or another collection into this one.



47
48
49
50
51
52
53
54
55
56
57
58
# File 'lib/latinum/collection.rb', line 47

def << object
	case object
	when Resource
		add(object)
	when Array
		object.each { |resource| add(resource) }
	when Collection
		object.resources.each { |name, amount| @resources[name] += amount }
	end
	
	return self
end

#[](key) ⇒ Object

Get a ‘Resource` for the given name:



61
62
63
# File 'lib/latinum/collection.rb', line 61

def [] key
	Resource.new(@resources[key], key)
end

#[]=(key, amount) ⇒ Object

Set a ‘BigDecimal` value for the given name:



66
67
68
# File 'lib/latinum/collection.rb', line 66

def []= key, amount
	@resources[key] = amount
end

#add(resource) ⇒ Object

Add a resource into the totals.



42
43
44
# File 'lib/latinum/collection.rb', line 42

def add resource
	@resources[resource.name] += resource.amount
end

#eachObject



70
71
72
73
74
75
76
# File 'lib/latinum/collection.rb', line 70

def each
	return to_enum(:each) unless block_given?
	
	@resources.each do |key, value|
		yield Resource.new(value, key)
	end
end