mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-23 08:33:48 -04:00
Pagination added for contact endpoint. Introduced PagedContext and query message for contacts that returns the required contacts together with the number of all contacts in db.
63 lines
1.6 KiB
C++
63 lines
1.6 KiB
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#include "MessageHandler.hpp"
|
|
|
|
#include <endpoints/Context.hpp>
|
|
#include <endpoints/Endpoint.hpp>
|
|
#include <endpoints/EndpointFactory.hpp>
|
|
|
|
#include <FreeRTOS.h>
|
|
#include <log/log.hpp>
|
|
|
|
#include <bits/exception.h>
|
|
#include <cinttypes>
|
|
#include <memory>
|
|
|
|
namespace sys
|
|
{
|
|
class Service;
|
|
} // namespace sys
|
|
|
|
using namespace parserFSM;
|
|
|
|
xQueueHandle MessageHandler::sendQueue;
|
|
|
|
MessageHandler::MessageHandler(const std::string &message, sys::Service *OwnerService) : OwnerServicePtr(OwnerService)
|
|
{
|
|
try {
|
|
messageJson = json11::Json::parse(message, JsonErrorMsg);
|
|
}
|
|
catch (const std::exception &e) {
|
|
LOG_ERROR("Cannot create MessageHandler! err:%s", e.what());
|
|
}
|
|
}
|
|
|
|
void MessageHandler::processMessage()
|
|
{
|
|
auto context = ContextFactory::create(messageJson);
|
|
|
|
LOG_DEBUG("[MsgHandler]\nmethod: %d\nendpoint: %d\nuuid: %" PRIu32 "\nbody: %s\n",
|
|
static_cast<int>(context->getMethod()),
|
|
static_cast<int>(context->getEndpoint()),
|
|
context->getUuid(),
|
|
context->getBody().dump().c_str());
|
|
|
|
auto handler = EndpointFactory::create(*context, OwnerServicePtr);
|
|
|
|
if (handler != nullptr) {
|
|
handler->handle(*context);
|
|
}
|
|
else {
|
|
LOG_ERROR("No way to handle!");
|
|
}
|
|
}
|
|
|
|
void MessageHandler::putToSendQueue(const std::string &msg)
|
|
{
|
|
if (uxQueueSpacesAvailable(sendQueue) != 0) {
|
|
auto responseString = new std::string(msg);
|
|
xQueueSend(sendQueue, &responseString, portMAX_DELAY);
|
|
}
|
|
}
|