Class: Fit4Ruby::FitFile

Inherits:
Object
  • Object
show all
Includes:
CRC16
Defined in:
lib/fit4ruby/FitFile.rb

Instance Method Summary collapse

Methods included from CRC16

#compute_crc, #write_crc

Constructor Details

#initializeFitFile

Returns a new instance of FitFile.



31
32
33
# File 'lib/fit4ruby/FitFile.rb', line 31

def initialize()
  @header = nil
end

Instance Method Details

#read(file_name, filter = nil) ⇒ Object



35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
# File 'lib/fit4ruby/FitFile.rb', line 35

def read(file_name, filter = nil)
  @file_name = file_name
  definitions = {}
  begin
    io = ::File.open(file_name, 'rb')
  rescue StandardError => e
    Log.fatal "Cannot open FIT file '#{file_name}': #{e.message}"
  end

  entities = []
  begin
    while !io.eof?
      offset = io.pos

      header = FitHeader.read(io)

      # If the header has a CRC the header is not included in the
      # checksumed bytes. Otherwise it is included.
      check_crc(io, header.has_crc? ? header.header_size : 0,
                offset + header.end_pos)

      # Rewind back to the beginning of the data right after the header.
      io.seek(header.header_size)

      entity = FitFileEntity.new
      # This Array holds the raw data of the records that may be needed to
      # dump a human readable form of the FIT file.
      records = []
      # This hash will hold a counter for each record type. The counter is
      # incremented each time the corresponding record type is found.
      record_counters = Hash.new { 0 }
      while io.pos < offset + header.end_pos
        record = FitRecord.new(definitions, entity)
        record.read(io, entity, filter, record_counters)
        records << record if filter
      end
      # Skip the 2 CRC bytes
      io.seek(2, :CUR)

      header.dump if filter && filter.record_numbers.nil?
      dump_records(records) if filter

      entity.check
      entities << entity
    end
  ensure
    io.close
  end

  return nil if entities.empty?

  entities[0].top_level_record
end

#write(file_name, top_level_record) ⇒ Object



89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# File 'lib/fit4ruby/FitFile.rb', line 89

def write(file_name, top_level_record)
  begin
    io = ::File.open(file_name, 'wb+')
  rescue StandardError => e
    Log.fatal "Cannot open FIT file '#{file_name}': #{e.message}"
  end

  begin
    # Create a header object, but don't yet write it into the file.
    header = FitHeader.new
    start_pos = header.header_size

    # Move the pointer behind the header section.
    io.seek(start_pos)
    id_mapper = FitMessageIdMapper.new
    top_level_record.write(io, id_mapper)
    end_pos = io.pos

    crc = write_crc(io, start_pos, end_pos)

    # Complete the data of the header section and write it at the start of
    # the file.
    header.data_size = end_pos - start_pos
    io.seek(0)
    header.write(io)
  ensure
    io.close
  end
end