Files
MuditaOS/module-apps/apps-common/notifications/NotificationProvider.hpp
Adam Wulkiewicz fe708cdf31 [MOS-670] Change clang-format AlwaysBreakTemplateDeclarations to Yes
Add --all and --fix-all options to style-check-hook
2022-08-26 15:22:39 +02:00

56 lines
1.5 KiB
C++

// Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
#pragma once
#include "NotificationData.hpp"
#include "NotificationsConfiguration.hpp"
#include "policies/NotificationsListPolicy.hpp"
#include <PhoneModes/Common.hpp>
namespace sys
{
class Service;
}
class NotificationsRecord;
namespace db
{
class NotificationMessage;
namespace query::notifications
{
class GetAllResult;
}
} // namespace db
namespace notifications
{
class NotificationProvider
{
template <NotificationType type, typename T>
bool handleNotSeenWithCounter(NotificationsRecord &&record);
public:
explicit NotificationProvider(sys::Service *ownerService, NotificationsConfiguration &notifcationConfig);
void handle(locks::PhoneLockTimeUpdate *msg);
void handle(db::query::notifications::GetAllResult *msg);
void handle(db::NotificationMessage *msg);
void handle(sys::phone_modes::Tethering tethering);
void handleSnooze(unsigned snoozeCount);
void requestNotSeenNotifications();
void send(NotificationOnReceiveUpdate updateOnReceive = NotificationOnReceiveUpdate::FullRebuild);
using Notifications = std::map<NotificationType, std::shared_ptr<Notification>>;
private:
sys::Service *ownerService;
NotificationsConfiguration &notifcationConfig;
NotificationsListPolicy listPolicy;
Notifications notifications;
};
} // namespace notifications