mirror of
https://github.com/kavishdevar/librepods.git
synced 2026-01-29 06:10:52 +00:00
89 lines
2.2 KiB
C++
89 lines
2.2 KiB
C++
#ifndef BLEMANAGER_H
|
|
#define BLEMANAGER_H
|
|
|
|
#include <QObject>
|
|
#include <QBluetoothDeviceDiscoveryAgent>
|
|
#include <QMap>
|
|
#include <QString>
|
|
#include <QDateTime>
|
|
|
|
class QTimer;
|
|
|
|
class DeviceInfo
|
|
{
|
|
public:
|
|
QString name;
|
|
QString address;
|
|
int leftPodBattery = -1; // -1 indicates not available
|
|
int rightPodBattery = -1;
|
|
int caseBattery = -1;
|
|
bool leftCharging = false;
|
|
bool rightCharging = false;
|
|
bool caseCharging = false;
|
|
quint16 deviceModel = 0;
|
|
quint8 lidOpenCounter = 0;
|
|
quint8 deviceColor = 0;
|
|
quint8 status = 0;
|
|
QByteArray rawData;
|
|
|
|
// Additional status flags from Kotlin version
|
|
bool isLeftPodInEar = false;
|
|
bool isRightPodInEar = false;
|
|
bool isLeftPodMicrophone = false;
|
|
bool isRightPodMicrophone = false;
|
|
bool isThisPodInTheCase = false;
|
|
bool isOnePodInCase = false;
|
|
bool areBothPodsInCase = false;
|
|
|
|
// Lid state enumeration
|
|
enum class LidState
|
|
{
|
|
OPEN = 0x0,
|
|
CLOSED = 0x1,
|
|
UNKNOWN,
|
|
};
|
|
LidState lidState = LidState::UNKNOWN;
|
|
|
|
// Connection state enumeration
|
|
enum class ConnectionState : uint8_t
|
|
{
|
|
DISCONNECTED = 0x00,
|
|
IDLE = 0x04,
|
|
MUSIC = 0x05,
|
|
CALL = 0x06,
|
|
RINGING = 0x07,
|
|
HANGING_UP = 0x09,
|
|
UNKNOWN = 0xFF // Using 0xFF for representing null in the original
|
|
};
|
|
ConnectionState connectionState = ConnectionState::UNKNOWN;
|
|
|
|
QDateTime lastSeen; // Timestamp of last detection
|
|
};
|
|
|
|
class BleManager : public QObject
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
explicit BleManager(QObject *parent = nullptr);
|
|
~BleManager();
|
|
|
|
void startScan();
|
|
void stopScan();
|
|
const QMap<QString, DeviceInfo> &getDevices() const;
|
|
|
|
private slots:
|
|
void onDeviceDiscovered(const QBluetoothDeviceInfo &info);
|
|
void onScanFinished();
|
|
void onErrorOccurred(QBluetoothDeviceDiscoveryAgent::Error error);
|
|
void pruneOldDevices();
|
|
|
|
private:
|
|
QBluetoothDeviceDiscoveryAgent *discoveryAgent;
|
|
QMap<QString, DeviceInfo> devices;
|
|
|
|
QTimer *pruneTimer; // Timer for periodic pruning
|
|
static const int PRUNE_INTERVAL_MS = 5000; // Check every 5 seconds
|
|
static const int DEVICE_TIMEOUT_MS = 10000; // Remove after 10 seconds
|
|
};
|
|
|
|
#endif // BLEMANAGER_H
|