Skip to content
Snippets Groups Projects
Unverified Commit 27189a20 authored by Dimitrios Stoupis's avatar Dimitrios Stoupis
Browse files

Fully implemented the loadRawData subservice and added some error checkings

- Added service assertions to check if the correct packet is received
- Fully implemented the loadRawData function, with passing tests
- Tests to follow
parent caa21839
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,7 @@ MemoryManagementService::RawDataMemoryManagement::RawDataMemoryManagement( ...@@ -12,7 +12,7 @@ MemoryManagementService::RawDataMemoryManagement::RawDataMemoryManagement(
// Function declarations for the raw data memory management subservice // Function declarations for the raw data memory management subservice
//void MemoryManagementService::RawDataMemoryManagement::loadRawData(Message &request) { void MemoryManagementService::RawDataMemoryManagement::loadRawData(Message &request) {
/** /**
* Bare in mind that there is currently no error checking for invalid parameters. * Bare in mind that there is currently no error checking for invalid parameters.
* A future version will include error checking and the corresponding error report/notification, * A future version will include error checking and the corresponding error report/notification,
...@@ -21,25 +21,56 @@ MemoryManagementService::RawDataMemoryManagement::RawDataMemoryManagement( ...@@ -21,25 +21,56 @@ MemoryManagementService::RawDataMemoryManagement::RawDataMemoryManagement(
* @todo Add error checking and reporting for the parameters * @todo Add error checking and reporting for the parameters
* @todo Add failure reporting * @todo Add failure reporting
*/ */
/*uint8_t memoryID = request.readEnum8(); // Read the memory ID from the request // Check if we have the correct packet
uint8_t iterationCount = 0; // Get the iteration count assert(request.serviceType == 6);
assert(request.messageType == 2);
uint8_t memoryID = request.readEnum8(); // Read the memory ID from the request
// Variable declaration
uint8_t *readData = nullptr; // Pointer to store the data read from the memory
uint16_t iterationCount = 0; // Get the iteration count
uint16_t dataLength = 0; // Data length to read (updated for each new iteration) uint16_t dataLength = 0; // Data length to read (updated for each new iteration)
uint32_t startAddress = 0; // Start address for the memory read (updated in each new iteration) uint16_t allocatedLength = 0; // Length allocated for the readData array
uint64_t startAddress = 0; // Start address for the memory read (updated in each new iteration)
// Read the packet's values // Read the packet's values
iterationCount = request.readUint8(); iterationCount = request.readUint16();
startAddress = request.readUint32();
if (memoryID == MemoryManagementService::MemoryID::RAM) { if (memoryID == MemoryManagementService::MemoryID::RAM) {
for (std::size_t i = 0; i < dataLength; i++) { for (std::size_t j =0; j < iterationCount; j++) {
//\*(uint64_t *)startAddress = memoryData[i]; startAddress = request.readUint64(); // Start address of the memory
dataLength = request.readUint16(); // Data length to append
// Allocate more array space if needed
if (allocatedLength < dataLength) {
readData = static_cast<uint8_t *>(realloc(readData, dataLength));
if (readData == nullptr) {
// todo: Add error logging and reporting
free(readData);
return;
}
}
for (std::size_t i = 0; i < dataLength; i++) {
readData[i] = request.readByte();
}
// todo: Continue only if the checksum passes (when the checksum will be implemented)
for (std::size_t i = 0; i < dataLength; i++) {
*(reinterpret_cast<uint8_t *>(startAddress) + i) = readData[i];
}
} }
} else if (memoryID == MemoryManagementService::MemoryID::FLASH) { } else if (memoryID == MemoryManagementService::MemoryID::FLASH) {
// todo: Define FLASH specific access code when we transfer to embedded
} }
}*/ }
void MemoryManagementService::RawDataMemoryManagement::dumpRawData(Message &request) { void MemoryManagementService::RawDataMemoryManagement::dumpRawData(Message &request) {
// Check if we have the correct packet
assert(request.serviceType == 6);
assert(request.messageType == 5);
// Create the report message object of telemetry message subtype 6 // Create the report message object of telemetry message subtype 6
Message report = mainService->createTM(6); Message report = mainService->createTM(6);
...@@ -68,7 +99,7 @@ void MemoryManagementService::RawDataMemoryManagement::dumpRawData(Message &requ ...@@ -68,7 +99,7 @@ void MemoryManagementService::RawDataMemoryManagement::dumpRawData(Message &requ
// Allocate more array space if needed // Allocate more array space if needed
if (allocatedLength < readLength) { if (allocatedLength < readLength) {
readData = static_cast<uint8_t *>(realloc(readData, readLength)); readData = static_cast<uint8_t *>(realloc(readData, readLength));
if (!readData) { if (readData == nullptr) {
// todo: Add error logging and reporting // todo: Add error logging and reporting
free(readData); free(readData);
return; return;
...@@ -88,6 +119,6 @@ void MemoryManagementService::RawDataMemoryManagement::dumpRawData(Message &requ ...@@ -88,6 +119,6 @@ void MemoryManagementService::RawDataMemoryManagement::dumpRawData(Message &requ
// todo: implement and append the checksum part of the reporting packet // todo: implement and append the checksum part of the reporting packet
mainService->storeMessage(report); // Save the report message mainService->storeMessage(report); // Save the report message
report.resetRead(); // Reset the reading count request.resetRead(); // Reset the reading count
free(readData); // Free the allocated memory free(readData); // Free the allocated memory
} }
...@@ -31,8 +31,12 @@ int main() { ...@@ -31,8 +31,12 @@ int main() {
// ST[06] testing // ST[06] testing
char anotherStr[8] = "Fgthred"; char anotherStr[8] = "Fgthred";
char yetAnotherStr[2] = "F"; char yetAnotherStr[2] = "F";
char *pStr = static_cast<char *>(malloc(4));
*pStr = 'T';
*(pStr + 1) = 'G';
*(pStr + 2) = '\0';
MemoryManagementService memMangService; MemoryManagementService memMangService;
Message rcvPack = Message(6, 2, Message::TC, 1); Message rcvPack = Message(6, 5, Message::TC, 1);
rcvPack.appendEnum8(MemoryManagementService::MemoryID::RAM); // Memory ID rcvPack.appendEnum8(MemoryManagementService::MemoryID::RAM); // Memory ID
rcvPack.appendUint16(3); // Iteration count rcvPack.appendUint16(3); // Iteration count
rcvPack.appendUint64(reinterpret_cast<uint64_t >(string)); // Start address rcvPack.appendUint64(reinterpret_cast<uint64_t >(string)); // Start address
...@@ -46,5 +50,19 @@ int main() { ...@@ -46,5 +50,19 @@ int main() {
memMangService.rawDataMemorySubservice.dumpRawData(rcvPack); memMangService.rawDataMemorySubservice.dumpRawData(rcvPack);
rcvPack = Message(6, 2, Message::TC, 1);
uint8_t data[2] = {'h', 'R'};
rcvPack.appendEnum8(MemoryManagementService::MemoryID::RAM); // Memory ID
rcvPack.appendUint16(2); // Iteration count
rcvPack.appendUint64(reinterpret_cast<uint64_t >(pStr)); // Start address
rcvPack.appendUint16(2); // Data length to append
rcvPack.appendOctetString(2, data);
rcvPack.appendUint64(reinterpret_cast<uint64_t >(pStr + 1)); // Start address
rcvPack.appendUint16(1);
rcvPack.appendOctetString(1, data);
memMangService.rawDataMemorySubservice.loadRawData(rcvPack);
std::cout << pStr << std::endl;
return 0; return 0;
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment