Sha256: cb16c9c2779318e6260c9f18450acbfb56c05715f08f923e14e3b4a5b4497e54
Contents?: true
Size: 1.24 KB
Versions: 2
Compression:
Stored size: 1.24 KB
Contents
# frozen_string_literal: true module Physical class Package extend Forwardable attr_reader :container, :items, :void_fill_density, :id def initialize(id: nil, container: nil, items: [], void_fill_density: Measured::Weight(0, :g), dimensions: nil, weight: nil, properties: {}) @id = id || SecureRandom.uuid @void_fill_density = Types::Weight[void_fill_density] @container = container || Physical::Box.new(dimensions: dimensions || [], weight: weight || Measured::Weight(0, :g), properties: properties) @items = Set[*items] end delegate [:dimensions, :width, :length, :height, :properties] => :container def <<(item) @items.add(item) end alias_method :add, :<< def >>(item) @items.delete(item) end alias_method :delete, :>> def weight container.weight + items.map(&:weight).reduce(Measured::Weight(0, :g), &:+) + void_fill_weight end def remaining_volume container.inner_volume - items.map(&:volume).reduce(Measured::Volume(0, :ml), &:+) end def void_fill_weight return Measured::Weight(0, :g) if container.volume.value.infinite? Measured::Weight(void_fill_density.value * remaining_volume.value, void_fill_density.unit) end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
physical-0.3.3 | lib/physical/package.rb |
physical-0.3.2 | lib/physical/package.rb |