Class: Phony::LocalSplitters::Fixed

Inherits:
Object
  • Object
show all
Defined in:
lib/phony/local_splitters/fixed.rb

Overview

Local splitter class to split the last part of a number, i.e. minus cc or ndc.

Countries can create new instances according to their needs.

Note: Countries should use instance_for

to avoid getting new local splitter instances.

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(format = nil) ⇒ Fixed

Initialize with a local format, like [3, 2, 2] (also the default).

The format [3, 2, 2] splits a number like ‘3332222’ into [‘333’, ‘22’, ‘22’].



28
29
30
31
32
# File 'lib/phony/local_splitters/fixed.rb', line 28

def initialize(format = nil)
  format = format&.dup || [3, 2, 2]
  @format, @length = extract_params format
  @format << @format.pop + 10
end

Class Method Details

.instance_for(format = nil) ⇒ Object

Get a splitter for the given format.

Caches the created splitter for the given format.



20
21
22
# File 'lib/phony/local_splitters/fixed.rb', line 20

def self.instance_for(format = nil)
  @mapping[format] ||= new(format)
end

Instance Method Details

#extract_params(format) ⇒ Object



34
35
36
37
38
39
40
41
42
43
44
# File 'lib/phony/local_splitters/fixed.rb', line 34

def extract_params(format)
  if format.last.respond_to? :max
    last = format.pop
    length = format.sum
    length = (length + last.min..length + last.max)
    format << last.min
  else
    length = format.sum
  end
  [format, length]
end

#plausible?(rest, hints = {}) ⇒ Boolean

Returns:

  • (Boolean)


58
59
60
61
62
# File 'lib/phony/local_splitters/fixed.rb', line 58

def plausible?(rest, hints = {})
  return true if hints[:check_length] == false

  @length === rest.inject(0) { |total, part| total + part.size }
end

#split(number) ⇒ Object

Split a local number according to an assumed country specific format.

Examples

  • split ‘3643533’ # => [‘364’, ‘35’, ‘33’] # (Switzerland)



51
52
53
54
55
56
# File 'lib/phony/local_splitters/fixed.rb', line 51

def split(number)
  @format.each_with_object([]) do |size, result|
    result << number.slice!(0..size - 1)
    return result if number.empty?
  end
end