Class: DBF::Header

Inherits:
Object
  • Object
show all
Defined in:
lib/dbf/header.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ Header

Returns a new instance of Header.



10
11
12
13
# File 'lib/dbf/header.rb', line 10

def initialize(data)
  @data = data
  unpack_header
end

Instance Attribute Details

#encodingObject (readonly)

Returns the value of attribute encoding.



8
9
10
# File 'lib/dbf/header.rb', line 8

def encoding
  @encoding
end

#encoding_keyObject (readonly)

Returns the value of attribute encoding_key.



7
8
9
# File 'lib/dbf/header.rb', line 7

def encoding_key
  @encoding_key
end

#header_lengthObject (readonly)

Returns the value of attribute header_length.



5
6
7
# File 'lib/dbf/header.rb', line 5

def header_length
  @header_length
end

#record_countObject (readonly)

Returns the value of attribute record_count.



4
5
6
# File 'lib/dbf/header.rb', line 4

def record_count
  @record_count
end

#record_lengthObject (readonly)

Returns the value of attribute record_length.



6
7
8
# File 'lib/dbf/header.rb', line 6

def record_length
  @record_length
end

#versionObject (readonly)

Returns the value of attribute version.



3
4
5
# File 'lib/dbf/header.rb', line 3

def version
  @version
end

Instance Method Details

#unpack_headerObject



15
16
17
18
19
20
21
22
23
24
25
26
# File 'lib/dbf/header.rb', line 15

def unpack_header
  @version = @data.unpack('H2').first

  case @version
  when '02'
    @record_count, @record_length = @data.unpack('x v x3 v')
    @header_length = 521
  else
    @record_count, @header_length, @record_length, @encoding_key = @data.unpack('x x3 V v2 x17 H2')
    @encoding = DBF::ENCODINGS[@encoding_key]
  end
end