2020-03-28 14:05:28 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <array>
|
2020-10-20 14:57:39 -04:00
|
|
|
#include <atomic>
|
2020-11-15 09:05:51 -05:00
|
|
|
#include <cstddef>
|
|
|
|
#include <cstdint>
|
2020-03-28 14:05:28 -04:00
|
|
|
|
|
|
|
namespace Pinetime {
|
|
|
|
namespace Controllers {
|
|
|
|
class NotificationManager {
|
2021-04-18 13:28:14 -04:00
|
|
|
public:
|
|
|
|
enum class Categories {
|
|
|
|
Unknown,
|
|
|
|
SimpleAlert,
|
|
|
|
Email,
|
|
|
|
News,
|
|
|
|
IncomingCall,
|
|
|
|
MissedCall,
|
|
|
|
Sms,
|
|
|
|
VoiceMail,
|
|
|
|
Schedule,
|
|
|
|
HighProriotyAlert,
|
|
|
|
InstantMessage
|
|
|
|
};
|
|
|
|
static constexpr uint8_t MessageSize {100};
|
2020-03-28 14:05:28 -04:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
struct Notification {
|
|
|
|
using Id = uint8_t;
|
|
|
|
Id id;
|
|
|
|
bool valid = false;
|
|
|
|
uint8_t index;
|
|
|
|
uint8_t size;
|
|
|
|
std::array<char, MessageSize + 1> message;
|
|
|
|
Categories category = Categories::Unknown;
|
2021-04-04 06:10:47 -04:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
const char* Message() const;
|
|
|
|
const char* Title() const;
|
|
|
|
};
|
|
|
|
Notification::Id nextId {0};
|
2020-03-28 14:05:28 -04:00
|
|
|
|
2020-10-22 04:43:42 -04:00
|
|
|
void Push(Notification&& notif);
|
2020-10-20 14:57:39 -04:00
|
|
|
Notification GetLastNotification();
|
|
|
|
Notification GetNext(Notification::Id id);
|
|
|
|
Notification GetPrevious(Notification::Id id);
|
|
|
|
bool ClearNewNotificationFlag();
|
|
|
|
bool AreNewNotificationsAvailable();
|
2021-02-14 08:19:30 -05:00
|
|
|
bool IsVibrationEnabled();
|
|
|
|
void ToggleVibrations();
|
2020-03-28 14:05:28 -04:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
static constexpr size_t MaximumMessageSize() {
|
|
|
|
return MessageSize;
|
|
|
|
};
|
2020-10-21 16:15:02 -04:00
|
|
|
size_t NbNotifications() const;
|
2020-03-28 14:05:28 -04:00
|
|
|
|
2021-04-18 13:28:14 -04:00
|
|
|
private:
|
|
|
|
Notification::Id GetNextId();
|
|
|
|
static constexpr uint8_t TotalNbNotifications = 5;
|
|
|
|
std::array<Notification, TotalNbNotifications> notifications;
|
|
|
|
uint8_t readIndex = 0;
|
|
|
|
uint8_t writeIndex = 0;
|
|
|
|
bool empty = true;
|
|
|
|
std::atomic<bool> newNotification {false};
|
|
|
|
bool vibrationEnabled = true;
|
2020-03-28 14:05:28 -04:00
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|