mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-25 06:18:18 -05:00
* [EGD-2420] tokenizer refactoring new class CellularCall * [EDG-2420] new file added * [EGD-2420] fixed include * [EGD-2420] added new ModemCall type and its usage in Sevice Cellular. missing dep in module-cellular. Fix in tokenizer. * [EGD-2420] get calllogrecordID one adding new entry to DB number as contact name * [EGD-2420] fixes at DB level api for update and delete Outgoing call seems to add proper calllog entries now * [EGD-2420][fix] fix for HF during call before full modem init * [EGD-2420] incoming and missed calls are handled code clean-up * [EGD-2420] ModemCall::to_string * [EGD-2420] added proper exceptions * [EGD-2420] minor clean up * [EGD-2420] split string with multichar delimiter * [EGD-2420] done some TODOs * [EGD-2420] PR fixes * [EGD-2420] separation between cellularcall and cellularservice PR fixes * [EGD-2420] duration based on timestamp instead of timer * [EGD-2420] new to_strings * [EGD-2420] fixes after rebase * [EGD-2420] operator<< * [EGD-2420] changed split params * [EGD-2420] changed returned db id * [EGD-2420] comment with explantaion
185 lines
5.8 KiB
C++
185 lines
5.8 KiB
C++
|
|
/*
|
|
* @file ATParser.cpp
|
|
* @author Mateusz Piesta (mateusz.piesta@mudita.com)
|
|
* @date 17.07.19
|
|
* @brief
|
|
* @copyright Copyright (C) 2019 mudita.com
|
|
* @details
|
|
*/
|
|
|
|
#include "ATParser.hpp"
|
|
#include "Service/Bus.hpp"
|
|
#include "bsp/cellular/bsp_cellular.hpp"
|
|
#include "service-cellular/messages/CellularMessage.hpp"
|
|
#include "ticks.hpp"
|
|
#include <Utils.hpp>
|
|
|
|
ATParser::ATParser(bsp::Cellular *cellular) : cellular(cellular) {
|
|
isInitialized = true;
|
|
}
|
|
|
|
std::vector<ATParser::Urc> ATParser::ParseURC() {
|
|
|
|
std::vector<ATParser::Urc> resp;
|
|
size_t maxPos = 0;
|
|
|
|
cpp_freertos::LockGuard lock(mutex);
|
|
|
|
auto pos = responseBuffer.find("RDY");
|
|
if (pos != std::string::npos) {
|
|
resp.push_back(ATParser::Urc::MeInitializationSuccessful);
|
|
maxPos = std::max(pos + strlen("RDY"), maxPos);
|
|
LOG_DEBUG("Received URC: MeInitializationSuccessful");
|
|
}
|
|
|
|
pos = responseBuffer.find("+CFUN: 1");
|
|
if (pos != std::string::npos) {
|
|
resp.push_back(ATParser::Urc::FullFuncionalityAvailable);
|
|
maxPos = std::max(pos + strlen("+CFUN: 1"), maxPos);
|
|
LOG_DEBUG("Received URC: FullFuncionalityAvailable");
|
|
}
|
|
pos = responseBuffer.find("+CPIN: READY");
|
|
if (pos != std::string::npos) {
|
|
resp.push_back(ATParser::Urc::SimCardReady);
|
|
maxPos = std::max(pos + strlen("+CPIN: READY"), maxPos);
|
|
LOG_DEBUG("Received URC: SimCardReady");
|
|
}
|
|
|
|
pos = responseBuffer.find("+QIND: SMS DONE");
|
|
if (pos != std::string::npos) {
|
|
resp.push_back(ATParser::Urc::SMSInitializationComplete);
|
|
maxPos = std::max(pos + strlen("+QIND: SMS DONE"), maxPos);
|
|
LOG_DEBUG("Received URC: SMSInitializationComplete");
|
|
}
|
|
|
|
pos = responseBuffer.find("+QIND: PB DONE");
|
|
if (pos != std::string::npos) {
|
|
resp.push_back(ATParser::Urc::PhonebookInitializationComplete);
|
|
maxPos = std::max(pos + strlen("+QIND: PB DONE"), maxPos);
|
|
LOG_DEBUG("Received URC: PhonebookInitializationComplete");
|
|
}
|
|
|
|
// manage string buffer
|
|
if(maxPos == 0){
|
|
|
|
}
|
|
else if (responseBuffer.size() >= maxPos) {
|
|
responseBuffer.erase();
|
|
} else {
|
|
responseBuffer = responseBuffer.substr(maxPos);
|
|
}
|
|
|
|
return resp;
|
|
}
|
|
|
|
int ATParser::ProcessNewData(sys::Service *service) {
|
|
char rawBuffer[256] = {0};
|
|
|
|
LOG_DEBUG("Receiving data from ProcessNewData");
|
|
auto length = cellular->Read(rawBuffer, sizeof(rawBuffer));
|
|
|
|
{
|
|
cpp_freertos::LockGuard lock(mutex);
|
|
LOG_DEBUG("Appending %i bytes to responseBuffer", length);
|
|
responseBuffer.append(reinterpret_cast<char *>(rawBuffer), length);
|
|
}
|
|
|
|
if (blockedTaskHandle) {
|
|
xTaskNotifyGive(blockedTaskHandle);
|
|
} else {
|
|
auto ret = ParseURC();
|
|
urcs.insert(std::end(urcs),std::begin(ret),std::end(ret));
|
|
// GSM modem is considered as fully operational when it outputs URCs specified below:
|
|
// 1) RDY
|
|
// 2) +CFUN: 1
|
|
// 3) +CPIN: READY
|
|
// 4) +QIND: SMS DONE
|
|
// 5) +QIND: PB DONE
|
|
if (urcs.size() == 5) {
|
|
cpp_freertos::LockGuard lock(mutex);
|
|
auto msg = std::make_shared<CellularNotificationMessage>(CellularNotificationMessage::Type::PowerUpProcedureComplete);
|
|
sys::Bus::SendMulticast(msg, sys::BusChannels::ServiceCellularNotifications, service);
|
|
LOG_DEBUG("[!!!] Fucking away data");
|
|
responseBuffer.erase();
|
|
urcs.clear();
|
|
}
|
|
|
|
}
|
|
return 1;
|
|
}
|
|
|
|
std::vector<std::string> ATParser::SendCommand(const char *cmd, size_t rxCount, uint32_t timeout) {
|
|
std::vector<std::string> tokens;
|
|
|
|
{
|
|
cpp_freertos::LockGuard lock(mutex);
|
|
responseBuffer.erase();
|
|
}
|
|
|
|
// Remove \r and \n for logging purposes
|
|
std::string cmdStr(cmd);
|
|
cmdStr.erase(std::remove(cmdStr.begin(), cmdStr.end(), '\r'), cmdStr.end());
|
|
cmdStr.erase(std::remove(cmdStr.begin(), cmdStr.end(), '\n'), cmdStr.end());
|
|
|
|
blockedTaskHandle = xTaskGetCurrentTaskHandle();
|
|
cellular->Write((void*)cmd, strlen(cmd));
|
|
|
|
uint32_t currentTime = cpp_freertos::Ticks::GetTicks();
|
|
uint32_t timeoutNeeded = timeout == UINT32_MAX ? UINT32_MAX : currentTime + timeout;
|
|
uint32_t timeElapsed = currentTime;
|
|
|
|
LOG_INFO("[AT]: %s, timeout value %d", cmdStr.c_str(), timeout);
|
|
|
|
while(1) {
|
|
|
|
if (timeElapsed >= timeoutNeeded)
|
|
{
|
|
LOG_MODEM_TIMEOUT("[AT]: %s, timeout %d - please check the value with Quectel_EC25&EC21_AT_Commands_Manual_V1.3.pdf", cmdStr.c_str(), timeout);
|
|
break;
|
|
}
|
|
|
|
auto ret = ulTaskNotifyTake(pdTRUE, timeoutNeeded - timeElapsed);
|
|
timeElapsed = cpp_freertos::Ticks::GetTicks();
|
|
if (ret)
|
|
{
|
|
std::vector<std::string> strings;
|
|
|
|
cpp_freertos::LockGuard lock(mutex);
|
|
// tokenize responseBuffer
|
|
// empty lines are also removed
|
|
auto ret = Tokenizer(responseBuffer, "\r\n", rxCount);
|
|
tokens.insert(std::end(tokens), std::begin(ret), std::end(ret));
|
|
|
|
if (tokens.size() < rxCount)
|
|
{
|
|
continue;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
LOG_MODEM_TIMEOUT("[AT]: %s, timeout %d - please check the value with Quectel_EC25&EC21_AT_Commands_Manual_V1.3.pdf", cmdStr.c_str(), timeout);
|
|
}
|
|
|
|
break;
|
|
}
|
|
|
|
blockedTaskHandle = nullptr;
|
|
responseBuffer.erase(); // TODO:M.P is it okay to flush buffer here ?
|
|
LOG_INFO("[AT]: %s - returning %i tokens in %d ms", cmdStr.c_str(), tokens.size(), timeElapsed - currentTime);
|
|
|
|
#if DEBUG_MODEM_OUTPUT_RESPONSE
|
|
for (auto s : tokens)
|
|
{
|
|
LOG_DEBUG("[]%s", s.c_str());
|
|
}
|
|
#endif
|
|
|
|
return tokens;
|
|
}
|
|
|
|
// for string delimiter
|
|
std::vector<std::string> ATParser::Tokenizer(const std::string &input, const std::string &delimiter, uint32_t maxTokenCount)
|
|
{
|
|
return utils::split(input, delimiter, maxTokenCount);
|
|
} |