Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
ECSS Services
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AcubeSat-OBC
ECSS Services
Commits
6e105aec
Commit
6e105aec
authored
6 years ago
by
athatheocsd
Browse files
Options
Downloads
Patches
Plain Diff
Changed comments and hardcoded values
parent
a7640c6a
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
inc/Services/EventActionService.hpp
+3
-4
3 additions, 4 deletions
inc/Services/EventActionService.hpp
src/Services/EventActionService.cpp
+9
-18
9 additions, 18 deletions
src/Services/EventActionService.cpp
with
12 additions
and
22 deletions
inc/Services/EventActionService.hpp
+
3
−
4
View file @
6e105aec
...
@@ -3,6 +3,8 @@
...
@@ -3,6 +3,8 @@
#define ECSS_EVENT_SERVICE_STRING_SIZE 64
#define ECSS_EVENT_SERVICE_STRING_SIZE 64
#define ECSS_EVENT_ACTION_STRUCT_ARRAY_SIZE 256
#include
"Service.hpp"
#include
"Service.hpp"
#include
"MessageParser.hpp"
#include
"MessageParser.hpp"
#include
"etl/String.hpp"
#include
"etl/String.hpp"
...
@@ -14,9 +16,6 @@
...
@@ -14,9 +16,6 @@
*
*
* ECSS 8.19 && 6.19
* ECSS 8.19 && 6.19
*
*
* Note towards the reviewers: Please double-check the string sizes that I use, the string
* initialization or rather the lack of it. Pay attention especially in parts of the code that I
* use strings <3 .
*
*
* @todo: (Possible) Use a etl::map for eventActionDefinitionArray
* @todo: (Possible) Use a etl::map for eventActionDefinitionArray
* @todo: check if executeAction should accept applicationID too
* @todo: check if executeAction should accept applicationID too
...
@@ -47,7 +46,7 @@ public:
...
@@ -47,7 +46,7 @@ public:
// If the size is changed maybe then indexOfAvailableSlots as well as the initiating loop in the
// If the size is changed maybe then indexOfAvailableSlots as well as the initiating loop in the
// constructor should be changed from uint16_t
// constructor should be changed from uint16_t
EventActionDefinition
eventActionDefinitionArray
[
256
];
EventActionDefinition
eventActionDefinitionArray
[
ECSS_EVENT_ACTION_STRUCT_ARRAY_SIZE
];
EventActionService
()
{
EventActionService
()
{
serviceType
=
19
;
serviceType
=
19
;
...
...
This diff is collapsed.
Click to expand it.
src/Services/EventActionService.cpp
+
9
−
18
View file @
6e105aec
...
@@ -3,8 +3,7 @@
...
@@ -3,8 +3,7 @@
#include
"MessageParser.hpp"
#include
"MessageParser.hpp"
/**
/**
* @todo: Should a check be added for index to not exceed the size of eventActionDefinitionArray
* @todo: Check if a uint16_t is needed (in case of changing the size of
* ? Also check if there a uint16_t is needed (in case of changing the size of
* eventActionDefinitionArray
* eventActionDefinitionArray
*/
*/
void
EventActionService
::
addEventActionDefinitions
(
Message
message
)
{
void
EventActionService
::
addEventActionDefinitions
(
Message
message
)
{
...
@@ -14,7 +13,7 @@ void EventActionService::addEventActionDefinitions(Message message) {
...
@@ -14,7 +13,7 @@ void EventActionService::addEventActionDefinitions(Message message) {
19
)
{
19
)
{
bool
flag
=
true
;
bool
flag
=
true
;
uint16_t
index
;
uint16_t
index
;
for
(
index
=
0
;
index
<
256
;
index
++
)
{
for
(
index
=
0
;
index
<
ECSS_EVENT_ACTION_STRUCT_ARRAY_SIZE
;
index
++
)
{
if
(
eventActionDefinitionArray
[
index
].
empty
==
true
)
{
if
(
eventActionDefinitionArray
[
index
].
empty
==
true
)
{
flag
=
false
;
flag
=
false
;
break
;
break
;
...
@@ -41,10 +40,9 @@ void EventActionService::deleteEventActionDefinitions(Message message) {
...
@@ -41,10 +40,9 @@ void EventActionService::deleteEventActionDefinitions(Message message) {
==
19
)
{
==
19
)
{
uint16_t
N
=
message
.
readUint16
();
uint16_t
N
=
message
.
readUint16
();
for
(
uint16_t
i
=
0
;
i
<
N
;
i
++
)
{
for
(
uint16_t
i
=
0
;
i
<
N
;
i
++
)
{
uint16_t
index
=
0
;
uint16_t
applicationID
=
message
.
readEnum16
();
uint16_t
applicationID
=
message
.
readEnum16
();
uint16_t
eventDefinitionID
=
message
.
readEnum16
();
uint16_t
eventDefinitionID
=
message
.
readEnum16
();
while
(
index
<
255
)
{
for
(
uint16_t
index
=
0
;
index
<
ECSS_EVENT_ACTION_STRUCT_ARRAY_SIZE
;
index
++
)
{
if
(
eventActionDefinitionArray
[
index
].
applicationId
==
applicationID
&&
if
(
eventActionDefinitionArray
[
index
].
applicationId
==
applicationID
&&
eventActionDefinitionArray
[
index
].
eventDefinitionID
==
eventDefinitionID
)
{
eventActionDefinitionArray
[
index
].
eventDefinitionID
==
eventDefinitionID
)
{
eventActionDefinitionArray
[
index
].
empty
=
true
;
eventActionDefinitionArray
[
index
].
empty
=
true
;
...
@@ -53,7 +51,6 @@ void EventActionService::deleteEventActionDefinitions(Message message) {
...
@@ -53,7 +51,6 @@ void EventActionService::deleteEventActionDefinitions(Message message) {
eventActionDefinitionArray
[
index
].
applicationId
=
0
;
eventActionDefinitionArray
[
index
].
applicationId
=
0
;
eventActionDefinitionArray
[
index
].
enabled
=
false
;
eventActionDefinitionArray
[
index
].
enabled
=
false
;
}
}
index
++
;
}
}
}
}
...
@@ -64,7 +61,7 @@ void EventActionService::deleteAllEventActionDefinitions(Message message) {
...
@@ -64,7 +61,7 @@ void EventActionService::deleteAllEventActionDefinitions(Message message) {
// TC[19,3]
// TC[19,3]
if
(
message
.
messageType
==
3
&&
message
.
packetType
==
Message
::
TC
&&
message
.
serviceType
if
(
message
.
messageType
==
3
&&
message
.
packetType
==
Message
::
TC
&&
message
.
serviceType
==
19
)
{
==
19
)
{
for
(
uint16_t
index
=
0
;
index
<
256
;
index
++
)
{
for
(
uint16_t
index
=
0
;
index
<
ECSS_EVENT_ACTION_STRUCT_ARRAY_SIZE
;
index
++
)
{
if
(
eventActionDefinitionArray
[
index
].
empty
==
false
)
{
if
(
eventActionDefinitionArray
[
index
].
empty
==
false
)
{
eventActionDefinitionArray
[
index
].
empty
=
true
;
eventActionDefinitionArray
[
index
].
empty
=
true
;
eventActionDefinitionArray
[
index
].
enabled
=
false
;
eventActionDefinitionArray
[
index
].
enabled
=
false
;
...
@@ -82,15 +79,13 @@ void EventActionService::enableEventActionDefinitions(Message message) {
...
@@ -82,15 +79,13 @@ void EventActionService::enableEventActionDefinitions(Message message) {
==
19
)
{
==
19
)
{
uint16_t
N
=
message
.
readUint16
();
uint16_t
N
=
message
.
readUint16
();
for
(
uint16_t
i
=
0
;
i
<
N
;
i
++
)
{
for
(
uint16_t
i
=
0
;
i
<
N
;
i
++
)
{
uint16_t
index
=
0
;
uint16_t
applicationID
=
message
.
readEnum16
();
uint16_t
applicationID
=
message
.
readEnum16
();
uint16_t
eventDefinitionID
=
message
.
readEnum16
();
uint16_t
eventDefinitionID
=
message
.
readEnum16
();
while
(
index
<
255
)
{
for
(
uint16_t
index
=
0
;
index
<
ECSS_EVENT_ACTION_STRUCT_ARRAY_SIZE
;
index
++
)
{
if
(
eventActionDefinitionArray
[
index
].
applicationId
==
applicationID
&&
if
(
eventActionDefinitionArray
[
index
].
applicationId
==
applicationID
&&
eventActionDefinitionArray
[
index
].
eventDefinitionID
==
eventDefinitionID
)
{
eventActionDefinitionArray
[
index
].
eventDefinitionID
==
eventDefinitionID
)
{
eventActionDefinitionArray
[
index
].
enabled
=
true
;
eventActionDefinitionArray
[
index
].
enabled
=
true
;
}
}
index
++
;
}
}
}
}
}
}
...
@@ -102,15 +97,13 @@ void EventActionService::disableEventActionDefinitions(Message message) {
...
@@ -102,15 +97,13 @@ void EventActionService::disableEventActionDefinitions(Message message) {
==
19
)
{
==
19
)
{
uint16_t
N
=
message
.
readUint16
();
uint16_t
N
=
message
.
readUint16
();
for
(
uint16_t
i
=
0
;
i
<
N
;
i
++
)
{
for
(
uint16_t
i
=
0
;
i
<
N
;
i
++
)
{
uint16_t
index
=
0
;
uint16_t
applicationID
=
message
.
readEnum16
();
uint16_t
applicationID
=
message
.
readEnum16
();
uint16_t
eventDefinitionID
=
message
.
readEnum16
();
uint16_t
eventDefinitionID
=
message
.
readEnum16
();
while
(
index
<
256
)
{
for
(
uint16_t
index
=
0
;
index
<
ECSS_EVENT_ACTION_STRUCT_ARRAY_SIZE
;
index
++
)
{
if
(
eventActionDefinitionArray
[
index
].
applicationId
==
applicationID
&&
if
(
eventActionDefinitionArray
[
index
].
applicationId
==
applicationID
&&
eventActionDefinitionArray
[
index
].
eventDefinitionID
==
eventDefinitionID
)
{
eventActionDefinitionArray
[
index
].
eventDefinitionID
==
eventDefinitionID
)
{
eventActionDefinitionArray
[
index
].
enabled
=
false
;
eventActionDefinitionArray
[
index
].
enabled
=
false
;
}
}
index
++
;
}
}
}
}
}
}
...
@@ -128,13 +121,13 @@ void EventActionService::eventActionStatusReport() {
...
@@ -128,13 +121,13 @@ void EventActionService::eventActionStatusReport() {
// TM[19,7]
// TM[19,7]
Message
report
=
createTM
(
7
);
Message
report
=
createTM
(
7
);
uint8_t
count
=
0
;
uint8_t
count
=
0
;
for
(
uint16_t
i
=
0
;
i
<
256
;
i
++
)
{
for
(
uint16_t
i
=
0
;
i
<
ECSS_EVENT_ACTION_STRUCT_ARRAY_SIZE
;
i
++
)
{
if
(
eventActionDefinitionArray
[
i
].
empty
==
false
)
{
if
(
eventActionDefinitionArray
[
i
].
empty
==
false
)
{
count
++
;
count
++
;
}
}
}
}
report
.
appendUint8
(
count
);
report
.
appendUint8
(
count
);
for
(
uint16_t
i
=
0
;
i
<
256
;
i
++
)
{
for
(
uint16_t
i
=
0
;
i
<
ECSS_EVENT_ACTION_STRUCT_ARRAY_SIZE
;
i
++
)
{
if
(
eventActionDefinitionArray
[
i
].
empty
==
false
)
{
if
(
eventActionDefinitionArray
[
i
].
empty
==
false
)
{
report
.
appendEnum16
(
eventActionDefinitionArray
[
i
].
applicationId
);
report
.
appendEnum16
(
eventActionDefinitionArray
[
i
].
applicationId
);
report
.
appendEnum16
(
eventActionDefinitionArray
[
i
].
eventDefinitionID
);
report
.
appendEnum16
(
eventActionDefinitionArray
[
i
].
eventDefinitionID
);
...
@@ -165,8 +158,7 @@ void EventActionService::disableEventActionFunction(Message message) {
...
@@ -165,8 +158,7 @@ void EventActionService::disableEventActionFunction(Message message) {
void
EventActionService
::
executeAction
(
uint16_t
eventID
)
{
void
EventActionService
::
executeAction
(
uint16_t
eventID
)
{
// Custom function
// Custom function
if
(
eventActionFunctionStatus
)
{
if
(
eventActionFunctionStatus
)
{
uint16_t
i
=
0
;
for
(
uint16_t
i
=
0
;
i
<
ECSS_EVENT_ACTION_STRUCT_ARRAY_SIZE
;
i
++
)
{
while
(
i
<
256
)
{
if
(
eventActionDefinitionArray
[
i
].
empty
==
false
&&
if
(
eventActionDefinitionArray
[
i
].
empty
==
false
&&
eventActionDefinitionArray
[
i
].
enabled
==
eventActionDefinitionArray
[
i
].
enabled
==
true
)
{
true
)
{
...
@@ -177,7 +169,6 @@ void EventActionService::executeAction(uint16_t eventID) {
...
@@ -177,7 +169,6 @@ void EventActionService::executeAction(uint16_t eventID) {
messageParser
.
execute
(
message
);
messageParser
.
execute
(
message
);
}
}
}
}
i
++
;
}
}
}
}
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment