Class: RQRCode::QRBitBuffer

Inherits:
Object
  • Object
show all
Defined in:
lib/rqrcode/qrcode/qr_bit_buffer.rb

Constant Summary collapse

PAD0 =
0xEC
PAD1 =
0x11

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(version) ⇒ QRBitBuffer

Returns a new instance of QRBitBuffer.



20
21
22
23
24
# File 'lib/rqrcode/qrcode/qr_bit_buffer.rb', line 20

def initialize(version)
  @version = version
  @buffer = []
  @length = 0
end

Instance Attribute Details

#bufferObject (readonly)

Returns the value of attribute buffer.



15
16
17
# File 'lib/rqrcode/qrcode/qr_bit_buffer.rb', line 15

def buffer
  @buffer
end

Instance Method Details

#alphanumeric_encoding_start(length) ⇒ Object



65
66
67
68
69
70
# File 'lib/rqrcode/qrcode/qr_bit_buffer.rb', line 65

def alphanumeric_encoding_start(length)
  
  put( QRMODE[:mode_alpha_numk], 4 )
  put(length, QRUtil.get_length_in_bits(QRMODE[:mode_alpha_numk], @version))
  
end

#byte_encoding_start(length) ⇒ Object



58
59
60
61
62
63
# File 'lib/rqrcode/qrcode/qr_bit_buffer.rb', line 58

def byte_encoding_start(length)
  
  put( QRMODE[:mode_8bit_byte], 4 )
  put(length, QRUtil.get_length_in_bits(QRMODE[:mode_8bit_byte], @version))
  
end

#end_of_message(max_data_bits) ⇒ Object



85
86
87
# File 'lib/rqrcode/qrcode/qr_bit_buffer.rb', line 85

def end_of_message(max_data_bits)
  put( 0, 4 ) unless get_length_in_bits+4 > max_data_bits
end

#get(index) ⇒ Object



27
28
29
30
# File 'lib/rqrcode/qrcode/qr_bit_buffer.rb', line 27

def get( index )
  buf_index = (index / 8).floor
  (( (@buffer[buf_index]).rszf(7 - index % 8)) & 1) == 1
end

#get_length_in_bitsObject



40
41
42
# File 'lib/rqrcode/qrcode/qr_bit_buffer.rb', line 40

def get_length_in_bits
  @length
end

#pad_until(prefered_size) ⇒ Object



72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/rqrcode/qrcode/qr_bit_buffer.rb', line 72

def pad_until(prefered_size)
  # Align on byte
  while get_length_in_bits % 8 != 0
    put_bit( false )
  end
  
  # Pad with padding code words
  while get_length_in_bits < prefered_size
    put( QRBitBuffer::PAD0, 8 )
    put( QRBitBuffer::PAD1, 8 ) if get_length_in_bits < prefered_size
  end
end

#put(num, length) ⇒ Object



33
34
35
36
37
# File 'lib/rqrcode/qrcode/qr_bit_buffer.rb', line 33

def put( num, length )
  ( 0...length ).each do |i|
    put_bit((((num).rszf(length - i - 1)) & 1) == 1)
  end
end

#put_bit(bit) ⇒ Object



45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/rqrcode/qrcode/qr_bit_buffer.rb', line 45

def put_bit( bit )
  buf_index = ( @length / 8 ).floor
  if @buffer.size <= buf_index
    @buffer << 0
  end

  if bit
    @buffer[buf_index] |= ((0x80).rszf(@length % 8))
  end

  @length += 1
end