eive-obsw/bsp_q7s/memory/SdCardManager.cpp

283 lines
8.6 KiB
C++
Raw Normal View History

2021-07-07 20:50:11 +02:00
#include "SdCardManager.h"
2021-07-12 11:37:10 +02:00
#include "linux/utility/utility.h"
2021-07-07 20:50:11 +02:00
#include "fsfw/ipc/MutexFactory.h"
2021-07-08 00:03:17 +02:00
#include "fsfw/serviceinterface/ServiceInterface.h"
2021-07-07 20:50:11 +02:00
#include <fstream>
#include <filesystem>
SdCardManager* SdCardManager::factoryInstance = nullptr;
SdCardManager::SdCardManager() {
}
SdCardManager::~SdCardManager() {
}
void SdCardManager::create() {
if(factoryInstance == nullptr) {
factoryInstance = new SdCardManager();
}
}
SdCardManager* SdCardManager::instance() {
SdCardManager::create();
return SdCardManager::factoryInstance;
}
2021-07-12 11:37:10 +02:00
ReturnValue_t SdCardManager::switchOnSdCard(sd::SdCard sdCard, bool doMountSdCard) {
std::pair<sd::SdStatus, sd::SdStatus> active;
2021-07-08 12:07:39 +02:00
ReturnValue_t result = sdCardActive(active);
2021-07-12 11:37:10 +02:00
// Not allowed, this function turns on one SD card
if(sdCard == sd::SdCard::BOTH) {
sif::warning << "SdCardManager::switchOffSdCard: API does not allow sd::SdStatus::BOTH"
<< std::endl;
return HasReturnvaluesIF::RETURN_FAILED;
}
2021-07-08 12:07:39 +02:00
if(result != HasReturnvaluesIF::RETURN_OK) {
return result;
}
2021-07-12 11:37:10 +02:00
if(sdCard == sd::SdCard::SLOT_0) {
2021-07-12 13:26:02 +02:00
if(active.first == sd::SdStatus::MOUNTED) {
return ALREADY_MOUNTED;
}
else if(active.first == sd::SdStatus::ON) {
if(not doMountSdCard) {
return ALREADY_ON;
}
else {
return mountSdCard(sdCard);
}
2021-07-12 11:37:10 +02:00
}
2021-07-12 13:26:02 +02:00
2021-07-12 11:37:10 +02:00
}
else if(sdCard == sd::SdCard::SLOT_1) {
if(active.second == sd::SdStatus::ON or active.second == sd::SdStatus::MOUNTED) {
return ALREADY_ON;
}
2021-07-08 12:07:39 +02:00
}
2021-07-12 11:37:10 +02:00
result = setSdCardState(sdCard, true);
if(result != HasReturnvaluesIF::RETURN_OK or not doMountSdCard) {
return result;
}
return mountSdCard(sdCard);
2021-07-07 20:50:11 +02:00
}
2021-07-12 11:37:10 +02:00
ReturnValue_t SdCardManager::switchOffSdCard(sd::SdCard sdCard, bool doUnmountSdCard) {
std::pair<sd::SdStatus, sd::SdStatus> active;
2021-07-08 12:07:39 +02:00
ReturnValue_t result = sdCardActive(active);
if(result != HasReturnvaluesIF::RETURN_OK) {
return result;
}
2021-07-12 11:37:10 +02:00
// Not allowed, this function turns on off SD card
if(sdCard == sd::SdCard::BOTH) {
sif::warning << "SdCardManager::switchOffSdCard: API does not allow sd::SdStatus::BOTH"
<< std::endl;
return HasReturnvaluesIF::RETURN_FAILED;
2021-07-08 12:07:39 +02:00
}
2021-07-12 11:37:10 +02:00
if(sdCard == sd::SdCard::SLOT_0) {
if(active.first == sd::SdStatus::OFF) {
return ALREADY_OFF;
}
}
else if(sdCard == sd::SdCard::SLOT_1) {
if(active.second == sd::SdStatus::OFF) {
return ALREADY_OFF;
}
}
if(doUnmountSdCard) {
result = unmountSdCard(sdCard);
if(result != HasReturnvaluesIF::RETURN_OK) {
return result;
}
}
2021-07-08 11:23:08 +02:00
return setSdCardState(sdCard, false);
}
ReturnValue_t SdCardManager::setSdCardState(sd::SdCard sdCard, bool on) {
std::string sdstring = "";
std::string statestring = "";
if(sdCard == sd::SdCard::SLOT_0) {
sdstring = "0";
}
else if(sdCard == sd::SdCard::SLOT_1) {
sdstring = "1";
}
if(on) {
statestring = "on";
}
else {
statestring = "off";
}
std::ostringstream command;
2021-07-09 17:21:26 +02:00
command << "q7hw sd set " << sdstring << " " << statestring;
2021-07-08 11:23:08 +02:00
int result = std::system(command.str().c_str());
if(result == 0) {
return HasReturnvaluesIF::RETURN_OK;
}
sif::warning << "SdCardManager::setSdCardState: system call failed with code " <<
result << std::endl;
2021-07-08 12:07:39 +02:00
return SYSTEM_CALL_ERROR;
2021-07-07 20:50:11 +02:00
}
2021-07-12 11:37:10 +02:00
ReturnValue_t SdCardManager::sdCardActive(std::pair<sd::SdStatus, sd::SdStatus>& active) {
2021-07-08 00:03:17 +02:00
using namespace std;
2021-07-12 11:47:23 +02:00
if(not filesystem::exists(SD_STATE_FILE)) {
2021-07-08 11:23:08 +02:00
return STATUS_FILE_NEXISTS;
2021-07-07 20:50:11 +02:00
}
2021-07-08 00:03:17 +02:00
// Now the file should exist in any case. Still check whether it exists.
2021-07-12 11:47:23 +02:00
fstream sdStatus(SD_STATE_FILE);
2021-07-08 00:03:17 +02:00
if (not sdStatus.good()) {
2021-07-08 11:23:08 +02:00
return STATUS_FILE_NEXISTS;
2021-07-08 00:03:17 +02:00
}
string line;
uint8_t idx = 0;
2021-07-12 11:37:10 +02:00
sd::SdCard currentSd = sd::SdCard::SLOT_0;
// Process status file line by line
2021-07-08 00:03:17 +02:00
while (std::getline(sdStatus, line)) {
2021-07-12 11:37:10 +02:00
processSdStatusLine(active, line, idx, currentSd);
}
return HasReturnvaluesIF::RETURN_OK;
}
ReturnValue_t SdCardManager::mountSdCard(sd::SdCard sdCard) {
using namespace std;
if(sdCard == sd::SdCard::BOTH) {
sif::warning << "SdCardManager::mountSdCard: API does not allow sd::SdStatus::BOTH"
<< std::endl;
return HasReturnvaluesIF::RETURN_FAILED;
}
std::string mountDev;
std::string mountPoint;
if(sdCard == sd::SdCard::SLOT_0) {
mountDev = SD_0_DEV_NAME;
mountPoint = SD_0_MOUNT_POINT;
}
else if(sdCard == sd::SdCard::SLOT_1) {
mountDev = SD_0_DEV_NAME;
mountPoint = SD_1_MOUNT_POINT;
}
if(not std::filesystem::exists(mountDev)) {
sif::warning << "SdCardManager::mountSdCard: Device file does not exists. Make sure to"
" turn on the SD card" << std::endl;
return MOUNT_ERROR;
}
string sdMountCommand = "mount " + mountDev + " " + mountPoint;
int result = system(sdMountCommand.c_str());
if (result != 0) {
utility::handleSystemError(result, "SdCardManager::mountSdCard");
return SYSTEM_CALL_ERROR;
}
return HasReturnvaluesIF::RETURN_OK;
}
ReturnValue_t SdCardManager::unmountSdCard(sd::SdCard sdCard) {
using namespace std;
if(sdCard == sd::SdCard::BOTH) {
sif::warning << "SdCardManager::unmountSdCard: API does not allow sd::SdStatus::BOTH"
<< std::endl;
return HasReturnvaluesIF::RETURN_FAILED;
}
string mountPoint;
if(sdCard == sd::SdCard::SLOT_0) {
mountPoint = SD_0_MOUNT_POINT;
}
else if(sdCard == sd::SdCard::SLOT_1) {
mountPoint = SD_1_MOUNT_POINT;
}
if(filesystem::is_empty(mountPoint)) {
// The mount point will always exist, but if it is empty, that is strong hint that
// the SD card was not mounted properly. Still proceed with operation.
sif::warning << "SdCardManager::unmountSdCard: Mount point is empty!" << std::endl;
}
string sdUnmountCommand = "umount " + mountPoint;
int result = system(sdUnmountCommand.c_str());
if (result != 0) {
utility::handleSystemError(result, "SdCardManager::unmountSdCard");
return SYSTEM_CALL_ERROR;
}
return HasReturnvaluesIF::RETURN_OK;
}
void SdCardManager::processSdStatusLine(std::pair<sd::SdStatus, sd::SdStatus> &active,
std::string& line, uint8_t& idx, sd::SdCard& currentSd) {
using namespace std;
istringstream iss(line);
string word;
bool slotLine = false;
bool mountLine = false;
while(iss >> word) {
if (word == "Slot") {
slotLine = true;
}
if(word == "Mounted") {
mountLine = true;
}
if(slotLine) {
2021-07-09 17:54:32 +02:00
if (word == "1:") {
currentSd = sd::SdCard::SLOT_1;
}
2021-07-08 11:23:08 +02:00
if(word == "on") {
2021-07-09 17:54:32 +02:00
if(currentSd == sd::SdCard::SLOT_0) {
2021-07-12 11:37:10 +02:00
active.first = sd::SdStatus::ON;
2021-07-09 17:54:32 +02:00
}
else {
2021-07-12 11:37:10 +02:00
active.second = sd::SdStatus::ON;
2021-07-09 17:54:32 +02:00
}
2021-07-08 11:23:08 +02:00
}
else if (word == "off") {
2021-07-09 17:54:32 +02:00
if(currentSd == sd::SdCard::SLOT_0) {
2021-07-12 11:37:10 +02:00
active.first = sd::SdStatus::OFF;
2021-07-09 17:54:32 +02:00
}
else {
2021-07-12 11:37:10 +02:00
active.second = sd::SdStatus::OFF;
2021-07-09 17:54:32 +02:00
}
2021-07-08 11:23:08 +02:00
}
2021-07-12 11:37:10 +02:00
}
if(mountLine) {
if(currentSd == sd::SdCard::SLOT_0) {
active.first = sd::SdStatus::MOUNTED;
}
2021-07-08 11:23:08 +02:00
else {
2021-07-12 11:37:10 +02:00
active.second = sd::SdStatus::MOUNTED;
2021-07-08 11:23:08 +02:00
}
2021-07-12 11:37:10 +02:00
}
2021-07-09 17:54:32 +02:00
2021-07-12 11:37:10 +02:00
if(idx > 5) {
sif::warning << "SdCardManager::sdCardActive: /tmp/sd_status.txt has more than 6 "
"lines and might be invalid!" << std::endl;
2021-07-08 00:03:17 +02:00
}
}
2021-07-12 11:37:10 +02:00
idx++;
2021-07-07 20:50:11 +02:00
}
sd::SdCard SdCardManager::getPreferredSdCard() const {
2021-07-09 17:54:32 +02:00
//int result = std::system("xsc_scratch read PREFSD > /tmp/pref_sd.txt");
2021-07-07 20:50:11 +02:00
return preferredSdCard;
}
void SdCardManager::setPreferredSdCard(sd::SdCard sdCard) {
preferredSdCard = sdCard;
}
2021-07-08 00:03:17 +02:00
ReturnValue_t SdCardManager::updateSdCardStateFile() {
2021-07-12 11:47:23 +02:00
// Use q7hw utility and pipe the command output into the state file
2021-07-12 11:49:19 +02:00
std::string updateCmd = "q7hw sd info all > " + std::string(SD_STATE_FILE);
2021-07-12 11:47:23 +02:00
int result = std::system(updateCmd.c_str());
2021-07-08 00:03:17 +02:00
if(result == 0) {
return HasReturnvaluesIF::RETURN_OK;
}
sif::warning << "SdCardManager::updateSdCardStateFile: system call failed with code " <<
result << std::endl;
return HasReturnvaluesIF::RETURN_FAILED;
2021-07-07 20:50:11 +02:00
}