eive-obsw/mission/utility/GlobalConfigHandler.cpp

269 lines
8.1 KiB
C++
Raw Normal View History

/*
* GlobalConfigHandler.cpp
*
* Created on: May 3, 2022
* Author: Jona Petri (IRS)
*/
#include "GlobalConfigHandler.h"
2022-07-14 17:35:49 +02:00
#include <fsfw/ipc/MessageQueueIF.h>
2022-07-14 17:35:49 +02:00
#include <fsfw/ipc/MutexFactory.h>
#include <fsfw/ipc/QueueFactory.h>
2022-07-14 17:35:49 +02:00
#include "fsfw/serviceinterface/ServiceInterface.h"
MutexIF* GlobalConfigHandler::configLock = nullptr;
2022-07-14 17:35:49 +02:00
GlobalConfigHandler::GlobalConfigHandler(object_id_t objectId, std::string configFilePath)
: SystemObject(objectId),
NVMParameterBase(configFilePath),
commandQueue(QueueFactory::instance()->createMessageQueue(20)) {
if (configLock == nullptr) {
configLock = MutexFactory::instance()->createMutex();
}
}
2022-07-14 17:35:49 +02:00
ReturnValue_t GlobalConfigHandler::initialize() {
ReturnValue_t result = SystemObject::initialize();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::initialize: SystemObject::initialize() failed with "
<< result << std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
2022-07-14 17:35:49 +02:00
result = ReadConfigFile();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::initialize: Creating JSON file at " << getFullName()
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
result = ResetConfigFile();
if (result != RETURN_OK) {
return result;
}
}
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::initialize success " << std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
2022-07-14 17:35:49 +02:00
GlobalConfigHandler::~GlobalConfigHandler() {}
ReturnValue_t GlobalConfigHandler::performOperation(uint8_t operationCode) {
ReturnValue_t result = RETURN_OK;
2022-07-14 17:35:49 +02:00
sif::debug << "GlobalConfigHandler::performOperation" << std::endl;
return result;
}
2022-07-14 17:35:49 +02:00
ReturnValue_t GlobalConfigHandler::lockConfigFile() {
ReturnValue_t result = RETURN_OK;
result = configLock->lockMutex(MutexIF::TimeoutType::WAITING, 10);
return result;
}
2022-07-14 17:35:49 +02:00
ReturnValue_t GlobalConfigHandler::unlockConfigFile() {
ReturnValue_t result = RETURN_OK;
2022-07-14 17:35:49 +02:00
result = configLock->unlockMutex();
return result;
}
2022-07-14 17:35:49 +02:00
template <typename T>
ReturnValue_t GlobalConfigHandler::setConfigFileValue(ParamIds paramID, T data) {
ReturnValue_t result = RETURN_OK;
ReturnValue_t resultSet = RETURN_OK;
2022-07-14 17:35:49 +02:00
result = lockConfigFile();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::setConfigFileValue lock mutex failed with " << result
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
2022-07-14 17:35:49 +02:00
std::string paramString;
paramString = PARAM_KEY_MAP[paramID];
2022-07-14 17:35:49 +02:00
// Check if key exists in map before setting value. No check is done in setValue! Somehow
// PARAM_KEY_MAP.count(paramID) == 0 does not work
if (paramString.empty() == true) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::setConfigFileValue ParamId " << PARAM_KEY_MAP[paramID]
<< " not found!" << std::endl;
#endif
2022-07-14 17:35:49 +02:00
triggerEvent(SET_CONFIGFILEVALUE_FAILED, 1, 0);
return RETURN_FAILED;
}
2022-07-14 17:35:49 +02:00
resultSet = setValue(PARAM_KEY_MAP[paramID], data);
if (resultSet != RETURN_OK) {
triggerEvent(SET_CONFIGFILEVALUE_FAILED, 0, 0);
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::setConfigFileValue set json failed with " << resultSet
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
}
2022-07-14 17:35:49 +02:00
result = unlockConfigFile();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::setConfigFileValue unlock mutex failed with " << result
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
2022-07-14 17:35:49 +02:00
return resultSet;
}
2022-07-14 17:35:49 +02:00
template <typename T>
ReturnValue_t GlobalConfigHandler::getConfigFileValue(ParamIds paramID, T& data) {
ReturnValue_t result = RETURN_OK;
ReturnValue_t resultGet = RETURN_OK;
2022-07-14 17:35:49 +02:00
result = lockConfigFile();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::getConfigFileValue lock mutex failed with " << result
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
2022-07-14 17:35:49 +02:00
resultGet = getValue(PARAM_KEY_MAP[paramID], data);
if (resultGet != RETURN_OK) {
triggerEvent(GET_CONFIGFILEVALUE_FAILED, 0, 0);
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::getConfigFileValue getValue failed with " << resultGet
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
}
result = unlockConfigFile();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::getConfigFileValue unlock mutex failed with " << result
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
2022-07-14 17:35:49 +02:00
return resultGet;
}
2022-07-14 17:35:49 +02:00
ReturnValue_t GlobalConfigHandler::resetConfigFileValues() {
ReturnValue_t result = RETURN_OK;
result = lockConfigFile();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::resetConfigFileValues lock mutex failed with " << result
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
insertValue(PARAM_KEY_MAP[PARAM0], PARAM0_DEFAULT);
insertValue(PARAM_KEY_MAP[PARAM1], PARAM1_DEFAULT);
2022-07-14 17:35:49 +02:00
result = unlockConfigFile();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::resetConfigFileValues unlock mutex failed with " << result
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
return result;
}
2022-07-14 17:35:49 +02:00
ReturnValue_t GlobalConfigHandler::WriteConfigFile() {
ReturnValue_t result = RETURN_OK;
ReturnValue_t resultWrite = RETURN_OK;
result = lockConfigFile();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::WriteConfigFile lock mutex failed with " << result
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
2022-07-14 17:35:49 +02:00
resultWrite = writeJsonFile();
if (resultWrite != RETURN_OK) {
triggerEvent(WRITE_CONFIGFILE_FAILED, 0, 0);
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::WriteConfigFile write json failed with " << resultWrite
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
}
2022-07-14 17:35:49 +02:00
result = unlockConfigFile();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::WriteConfigFile unlock mutex failed with " << result
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
return resultWrite;
}
2022-07-14 17:35:49 +02:00
ReturnValue_t GlobalConfigHandler::ReadConfigFile() {
ReturnValue_t result = RETURN_OK;
ReturnValue_t resultRead = RETURN_OK;
result = lockConfigFile();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::ReadConfigFile lock mutex failed with " << result
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
2022-07-14 17:35:49 +02:00
resultRead = readJsonFile();
if (resultRead != RETURN_OK) {
triggerEvent(READ_CONFIGFILE_FAILED, 0, 0);
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::ReadConfigFile read json failed with " << resultRead
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
}
2022-07-14 17:35:49 +02:00
result = unlockConfigFile();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::ReadConfigFile unlock mutex failed with " << result
<< std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
2022-07-14 17:35:49 +02:00
return resultRead;
}
2022-07-14 17:35:49 +02:00
ReturnValue_t GlobalConfigHandler::ResetConfigFile() {
ReturnValue_t result = RETURN_OK;
result = resetConfigFileValues();
if (result != RETURN_OK) {
#if OBSW_VERBOSE_LEVEL >= 1
2022-07-14 17:35:49 +02:00
sif::info << "GlobalConfigHandler::ResetConfigFile failed with " << result << std::endl;
#endif
2022-07-14 17:35:49 +02:00
return result;
}
result = writeJsonFile();
return result;
}
2022-07-14 17:35:49 +02:00
ReturnValue_t GlobalConfigHandler::setConfigFileName(std::string configFileName) {
ReturnValue_t result = RETURN_OK;
setFullName(configFileName);
result = ResetConfigFile();
return result;
}
2022-07-14 17:35:49 +02:00
std::string GlobalConfigHandler::getConfigFileName() { return getFullName(); }
2022-07-14 17:35:49 +02:00
template ReturnValue_t GlobalConfigHandler::getConfigFileValue<double>(ParamIds paramID,
double& data);
template ReturnValue_t GlobalConfigHandler::getConfigFileValue<int32_t>(ParamIds paramID,
int32_t& data);
2022-07-14 17:35:49 +02:00
template ReturnValue_t GlobalConfigHandler::setConfigFileValue<double>(ParamIds paramID,
double data);
template ReturnValue_t GlobalConfigHandler::setConfigFileValue<int32_t>(ParamIds paramID,
int32_t data);