Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
SRecConverter.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef IMT_BASE_LIB_SRECCONVERTER_SRECCONVERTER_H
4#define IMT_BASE_LIB_SRECCONVERTER_SRECCONVERTER_H
5
6#include <array>
10#include <string>
11#include <vector>
12
13namespace imt {
14namespace base {
15namespace lib {
16namespace srecconverter {
17
21// AXIVION Next Construct AutosarC++19_03-M2.10.1: Name of main class proviced in namespace is same as namespace.
23
24public:
25
31 SRecConverter(uint32_t const pageSizeKb, uint32_t const flashSizeKb);
32
38 bool convert(std::string const& fileName);
39
45
50 std::vector<uint8_t> getPageNumberList() const;
51
57
63 DataRecord const* getDataRecord(uint32_t const recordNr) const;
64
70
71private:
72
73 // Defines the record types
74 enum class RecordType : uint8_t {
75 // AXIVION Construct CodingStyle-Naming.Enumerator: Allowed naming, compatibility purposes
76 Record_Header = 0, // S0 -> block header type
77 Record_Data_2Byte = 1, // S1 -> data block with 2 address bytes
78 Record_Data_3Byte = 2, // S2 -> data block with 3 address bytes
79 Record_Data_4Byte = 3, // S3 -> data block with 4 address bytes
80 Record_Row_Count = 5, // S5 -> number of data rows
81 Record_End_4Byte = 7, // S7 -> end of block with 4 address bytes
82 Record_End_3Byte = 8, // S8 -> end of block with 3 address bytes
83 Record_End_2Byte = 9, // S9 -> end of block with 2 address bytes
84 Record_Unknown = 99,
85 Record_Empty = 100
86 };
87
88 // Struct
89 static uint32_t const MAX_PRG_DATA_LEN {16U};
90
91 // AXIVION Next Line AutosarC++19_03-A2.7.3: used for internal (private) only
92 struct SingleLineDataRecord {
93 // AXIVION Next Line AutosarC++19_03-A2.7.3: used for internal (private) only
94 uint32_t m_address; // 4 bytes, address
95 // AXIVION Next Line AutosarC++19_03-A2.7.3: used for internal (private) only
96 std::array<uint8_t, MAX_PRG_DATA_LEN> m_data; // 16 bytes, array with program data
97 // AXIVION Next Line AutosarC++19_03-A2.7.3: used for internal (private) only
98 uint16_t m_length; // data length
99 };
100
105 bool readFileAndFillSingleLinesToList(std::string const& fileName);
106
112 bool createSingleLineRecord(std::vector<std::string>& fileSingleLineDataList);
113
119 bool createDataRecords(std::vector<SingleLineDataRecord>& singleLineDataRecordList);
120
126 void createPageNumberList(uint32_t const pageSizeKb, std::vector<DataRecord>& dataRecordList);
127
131 bool isFlashSizeValid() const;
132
137 static RecordType getRecordType(std::string const& line);
138
142 static void fillProgramData(std::string const& line, uint32_t const length, uint8_t* const pData);
143
147 static uint32_t getInt(std::string const& str);
148
149 static constexpr uint32_t RECORD_TYPE_INDEX {1U}; // start index
150 static constexpr uint32_t RECORD_TYPE_LEN {1U}; // nr of signs
151 static constexpr uint32_t DATA_LENGTH_INDEX {RECORD_TYPE_INDEX + RECORD_TYPE_LEN};
152 static constexpr uint32_t DATA_LENGTH_LEN {2U};
153 static constexpr uint32_t ADDRESS_INDEX {DATA_LENGTH_INDEX + DATA_LENGTH_LEN};
154 static constexpr uint32_t ADDRESS_LEN {8U};
155 static constexpr uint32_t DATA_INDEX {ADDRESS_INDEX + ADDRESS_LEN};
156 static constexpr uint32_t ADDRESS_SIZE {4U}; // byte, 32-Bit address
157 static constexpr uint32_t CHECKSUM_SIZE {1U}; // byte, 8-Bit checksum
158 static constexpr uint32_t RECORD_SIZE {DataRecord::MAX_RECORD_SIZE};
159 static constexpr uint32_t FLASH_START_ADDRESS {0x08000000U};
160 static constexpr uint32_t BYTES_PER_KILOBYTE {1024U}; // 1024byte equals 1kByte
161
162 uint32_t const m_pageSizeKb;
163 uint32_t const m_flashSizeKb;
164 std::vector<std::string> m_fileSingleLineDataList;
165 std::vector<SingleLineDataRecord> m_singleLineDataRecordList;
166 std::vector<DataRecord> m_dataRecordList;
167 std::vector<uint8_t> m_pageNumberList;
168 // AXIVION Next Codeline AutosarC++19_03-A12.1.3: All data members initialized in custom constructor
169 uint32_t m_dataSize;
170};
171
172} // namespace srecconverter
173} // namespace lib
174} // namespace base
175} // namespace imt
176
177#endif // IMT_BASE_LIB_SRECCONVERTER_SRECCONVERTER_H
Base class for a not movable class that disables copy, assignment and move of instances.
Definition Nonmovable.h:51
The SRecConverter is used to read a Motorola srecord binary file.
bool convert(std::string const &fileName)
Converts the srecord.
DataRecord const * getDataRecord(uint32_t const recordNr) const
Gets the data of a single record.
uint32_t getDataSize() const
Returns the data size of program or eeprom data in bytes.
std::vector< uint8_t > getPageNumberList() const
Returns the page number list.
SRecConverter(uint32_t const pageSizeKb, uint32_t const flashSizeKb)
Constructor.
uint32_t getRecordCount() const
Returns the number of records.
uint8_t getPageCount() const
Returns the number of pages (1kB || 2kB) containing in Motorola srecord file.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int16 uint16_t
Definition stdint.h:63
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62
static constexpr uint16_t MAX_RECORD_SIZE
Maximal record size in bytes.
Definition DataRecord.h:25