-
Notifications
You must be signed in to change notification settings - Fork 0
/
USBDetectionC.cpp
96 lines (77 loc) · 2.82 KB
/
USBDetectionC.cpp
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/** @file
@brief Implementation
@date 2016
@author
Sensics, Inc.
<http://sensics.com/osvr>
*/
// Copyright 2016 Sensics, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// Internal Includes
#include "USBDetectionC.h"
#include "USBDetection.h"
// Library/third-party includes
// - none
// Standard includes
#include <stdlib.h>
OSVR_USBMonitor osvrUSBDetectionMonitorInit() {
OSVR_USBMonitor monitor = new OSVR_USBMonitorObject();
return monitor;
}
void osvrUSBDetectionStartMonitor(OSVR_USBMonitor monitor) {
monitor->startMonitor();
}
USB_StatusCode osvrUSBDetectionMonitorUpdate(OSVR_USBMonitor monitor,
OSVR_USBDeviceDescriptor *dev) {
return monitor->checkMessages(dev);
}
USB_ReturnCode osvrUSBDetectionStopMonitor(OSVR_USBMonitor monitor) {
return USB_RETURN_SUCCESS;
}
void osvrUSBDetectionMonitorShutdown(OSVR_USBMonitor monitor) {
monitor->monitorShutdown();
delete (monitor);
}
size_t osvrUSBDetectionGetDeviceList(OSVR_USBMonitor monitor,
OSVR_USBDeviceDescriptor ***devices) {
std::vector<OSVR_USBDeviceDescriptor> devList = monitor->getDeviceList();
size_t numDevices = devList.size();
OSVR_USBDeviceDescriptor **list = (OSVR_USBDeviceDescriptor **)malloc(
numDevices * sizeof(OSVR_USBDeviceDescriptor *));
for (int i = 0; i < numDevices; i++) {
list[i] = (OSVR_USBDeviceDescriptor *)malloc(
sizeof(OSVR_USBDeviceDescriptor));
list[i]->productID = devList.at(i).productID;
list[i]->vendorID = devList.at(i).vendorID;
}
*devices = list;
return numDevices;
}
void osvrUSBDetectionFreeDeviceList(OSVR_USBDeviceDescriptor **devices,
size_t numDevices) {
for (int i = 0; i < numDevices; i++) {
free(devices[i]);
}
free(devices);
}
USB_ReturnCode osvrUSBDetectionRegisterDeviceAddedCallback(
OSVR_USBMonitor monitor, OSVR_DeviceAddedCallback cb, void *userdata) {
monitor->registerDeviceAddedCallback(cb, userdata);
return USB_RETURN_SUCCESS;
}
USB_ReturnCode osvrUSBDetectionRegisterDeviceRemovedCallback(
OSVR_USBMonitor monitor, OSVR_DeviceRemovedCallback cb, void *userdata) {
monitor->registerDeviceRemovedCallback(cb, userdata);
return USB_RETURN_SUCCESS;
}