2#include <ossia/network/phidgets/detail/sensors.hpp>
4#include <eggs/variant.hpp>
14class phidgets_manager;
18 friend class phidgets_manager;
23 std::function<void(
int,
const char*)> onError;
25 PhidgetHandle handle()
const;
26 const std::string& name()
const;
27 const std::string& type()
const;
28 const std::string& label()
const;
39 bool is_attached()
const
42 Phidget_getAttached(m_handle, &ok);
45 bool is_hub_port_device()
const
48 Phidget_getIsHubPortDevice(m_handle, &ok);
54 Phidget_getIsLocal(m_handle, &ok);
57 bool is_remote()
const
60 Phidget_getIsRemote(m_handle, &ok);
63 bool channel_count()
const
66 Phidget_getDeviceChannelCount(m_handle, PHIDCHCLASS_NOTHING, &ok);
70 Phidget_DeviceClass device_class()
const {
return m_class; }
71 Phidget_DeviceID device_id()
const {
return m_id; }
73 void set_label(
const std::string& n);
76 phidget_device(PhidgetHandle hdl);
77 phidget_device(
const phidget_device&) =
delete;
78 phidget_device(phidget_device&&) =
delete;
79 phidget_device& operator=(
const phidget_device&) =
delete;
80 phidget_device& operator=(phidget_device&&) =
delete;
82 PhidgetHandle m_handle{};
84 Phidget_DeviceClass m_class{};
85 Phidget_DeviceID m_id{};
97 friend class phidgets_manager;
102 std::function<void(
int,
const char*)> onError;
104 PhidgetHandle handle()
const;
105 const std::string& name()
const;
106 const std::string& className()
const;
115 bool is_attached()
const
118 Phidget_getAttached(m_handle, &ok);
122 bool is_local()
const
125 Phidget_getIsLocal(m_handle, &ok);
129 bool is_remote()
const
132 Phidget_getIsRemote(m_handle, &ok);
137 phidget_channel(PhidgetHandle device, PhidgetHandle hdl);
138 phidget_channel(
const phidget_channel&) =
delete;
139 phidget_channel(phidget_channel&&) =
delete;
140 phidget_channel& operator=(
const phidget_channel&) =
delete;
141 phidget_channel& operator=(phidget_channel&&) =
delete;
143 PhidgetHandle m_device{};
144 PhidgetHandle m_handle{};
146 Phidget_ChannelClass m_class{};
147 Phidget_ChannelSubclass m_subclass{};
151 std::string m_className;
154using phidget_ptr = std::shared_ptr<phidget_device>;
155class phidgets_manager
159 phidgets_manager(
const phidgets_manager&) =
delete;
160 phidgets_manager(phidgets_manager&&) =
delete;
161 phidgets_manager& operator=(
const phidgets_manager&) =
delete;
162 phidgets_manager& operator=(phidgets_manager&&) =
delete;
165 std::function<void(phidget_ptr)> onDeviceCreated;
166 std::function<void(phidget_ptr)> onDeviceDestroyed;
170 const std::vector<phidget_ptr>& phidgets()
const {
return m_phidgets; }
173 PhidgetManagerHandle m_hdl{};
175 std::vector<phidget_ptr> m_phidgets;