Class: RQRCodeCore::QRNumeric

Inherits:
Object
  • Object
show all
Defined in:
lib/rqrcode_core/qrcode/qr_numeric.rb

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ QRNumeric

Returns a new instance of QRNumeric.



7
8
9
10
11
# File 'lib/rqrcode_core/qrcode/qr_numeric.rb', line 7

def initialize(data)
  raise QRCodeArgumentError, "Not a numeric string `#{data}`" unless QRNumeric.valid_data?(data)

  @data = data
end

Class Method Details

.valid_data?(data) ⇒ Boolean

Returns:

  • (Boolean)


13
14
15
# File 'lib/rqrcode_core/qrcode/qr_numeric.rb', line 13

def self.valid_data?(data)
  (data.chars - NUMERIC).empty?
end

Instance Method Details

#write(buffer) ⇒ Object



17
18
19
20
21
22
23
24
25
26
27
# File 'lib/rqrcode_core/qrcode/qr_numeric.rb', line 17

def write(buffer)
  buffer.numeric_encoding_start(@data.size)

  @data.size.times do |i|
    if i % 3 == 0
      chars = @data[i, 3]
      bit_length = get_bit_length(chars.length)
      buffer.put(get_code(chars), bit_length)
    end
  end
end