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

Corrected the message saving in the loop

parent 774a5a79
No related branches found
No related tags found
No related merge requests found
#include "Services/TimeBasedSchedulingService.hpp" #include "Services/TimeBasedSchedulingService.hpp"
TimeBasedSchedulingService::TimeBasedSchedulingService() {
serviceType = 11;
}
void TimeBasedSchedulingService::enableScheduleExecution(Message &request) { void TimeBasedSchedulingService::enableScheduleExecution(Message &request) {
// Check if the correct packet is being processed // Check if the correct packet is being processed
...@@ -205,18 +210,18 @@ void TimeBasedSchedulingService::detailReportAllActivities(Message &request) { ...@@ -205,18 +210,18 @@ void TimeBasedSchedulingService::detailReportAllActivities(Message &request) {
assert(request.serviceType == 11); assert(request.serviceType == 11);
assert(request.messageType == 16); assert(request.messageType == 16);
// Create the report message object of telemetry message subtype 10 for each activity
Message report = createTM(10);
report.appendUint16(currentNumberOfActivities);
for (auto &activity : scheduledActivities) { for (auto &activity : scheduledActivities) {
// Create the report message object of telemetry message subtype 10 for each activity
Message report = createTM(10);
// todo: append sub-schedule and group ID if they are defined // todo: append sub-schedule and group ID if they are defined
report.appendUint32(activity.requestReleaseTime); // todo: Replace with the time parser report.appendUint32(activity.requestReleaseTime); // todo: Replace with the time parser
report.appendString(msgParser.convertTCToStr(activity.request)); report.appendString(msgParser.convertTCToStr(activity.request));
storeMessage(report); // Save the report
request.resetRead(); // todo: define if this statement is required
} }
storeMessage(report); // Save the report
request.resetRead(); // todo: define if this statement is required
} }
void TimeBasedSchedulingService::detailReporActivitiesByID(Message &request) { void TimeBasedSchedulingService::detailReporActivitiesByID(Message &request) {
......
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