logiops/src/logid/DeviceMonitor.h

47 lines
1.2 KiB
C
Raw Normal View History

#ifndef LOGID_DEVICEMONITOR_H
#define LOGID_DEVICEMONITOR_H
2019-09-20 21:34:36 +00:00
#include <map>
#include <thread>
#include <mutex>
#include "backend/raw/DeviceMonitor.h"
#include "backend/hidpp/Device.h"
#define MAX_CONNECTION_TRIES 10
#define TIME_BETWEEN_CONNECTION_TRIES 500ms
2019-10-05 01:56:17 +00:00
namespace logid
{
2019-10-05 01:56:17 +00:00
class Device;
struct ConnectedDevice {
Device *device;
std::thread associatedThread;
};
class DeviceMonitor : public backend::raw::DeviceMonitor
2019-10-05 01:56:17 +00:00
{
public:
~DeviceMonitor();
2019-10-05 01:56:17 +00:00
/*
2019-10-05 01:56:17 +00:00
Device* insertNewDevice (const std::string &path, HIDPP::DeviceIndex index);
Device* insertNewReceiverDevice (const std::string &path, HIDPP::DeviceIndex index);
void stopAndDeleteAllDevicesIn (const std::string &path);
void stopAndDeleteDevice (const std::string &path, HIDPP::DeviceIndex index);
*/
2019-10-05 01:56:17 +00:00
protected:
void addDevice(std::string path) override;
void removeDevice(std::string path) override;
2019-10-05 01:56:17 +00:00
private:
std::mutex devices_mutex;
std::vector<std::shared_ptr<backend::hidpp::Device>> devices; //tmp
//std::map<std::string, std::map<backend::hidpp::DeviceIndex, ConnectedDevice>> devices;
2019-10-05 01:56:17 +00:00
};
extern DeviceMonitor* finder;
2019-10-05 01:56:17 +00:00
}
#endif //LOGID_DEVICEFINDER_H