aboutsummaryrefslogtreecommitdiff
path: root/rmidevice/hiddevice.h
blob: d6ebd55c80f49f59fb61d65df678f5cbf2f9cdb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#ifndef _HIDDEVICE_H_
#define _HIDDEVICE_H_

#include <linux/hidraw.h>
#include "rmidevice.h"

class HIDDevice : public RMIDevice
{
public:
	HIDDevice(int bytesPerReadRequest = 0) : RMIDevice(bytesPerReadRequest), m_headIdx(0),
			m_tailIdx(0), m_deviceOpen(false), m_attnQueueCount(0)
	{}
	virtual int Open(const char * filename);
	virtual int Read(unsigned short addr, unsigned char *buf,
				unsigned short len);
	virtual int Write(unsigned short addr, const unsigned char *buf,
				 unsigned short len);
	virtual int SetMode(int mode);
	virtual int WaitForAttention(struct timeval * timeout = NULL, int *sources = NULL);
	virtual int GetAttentionReport(struct timeval * timeout, int *sources, unsigned char *buf, int *len);
	virtual void Close();
	~HIDDevice() { Close(); }

private:
	int m_fd;

	struct hidraw_report_descriptor m_rptDesc;
	struct hidraw_devinfo m_info;

	unsigned char *m_inputReport;
	unsigned char *m_outputReport;

	unsigned char *m_attnReportQueue;
	int m_headIdx;
	int m_tailIdx;
	unsigned char *m_readData;
	int m_dataBytesRead;

	size_t m_inputReportSize;
	size_t m_outputReportSize;
	size_t m_featureReportSize;

	bool m_deviceOpen;

	int m_attnQueueCount;

	enum mode_type {
		HID_RMI4_MODE_MOUSE			= 0,
		HID_RMI4_MODE_ATTN_REPORTS		= 1,
		HID_RMI4_MODE_NO_PACKED_ATTN_REPORTS	= 2,
	};

	int GetReport(int reportid, struct timeval * timeout = NULL);
	void PrintReport(const unsigned char *report);

	static const int HID_REPORT_QUEUE_MAX_SIZE = 8;
 };

#endif /* _HIDDEVICE_H_ */