forked from MobileChromeApps/cordova-plugin-chrome-apps-usb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
usb.js
201 lines (176 loc) · 5.64 KB
/
usb.js
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
var exec = require('cordova/exec');
var platformId = require('cordova/platform').id;
var callbackWithError = require('cordova-plugin-chrome-apps-common.errors').callbackWithError;
var base64 = require('cordova/base64')
try {
var runtime = require('cordova-plugin-chrome-apps-runtime');
} catch(e) {}
exports.getDevices = function(options, callback) {
cordova.exec(
function(devices) { // successCallback
callback(devices);
},
function(msg) { // errorCallback
callbackWithError('Get devices failed: ' + msg, callback);
},
'ChromeUsb',
'getDevices',
[options]
);
};
exports.openDevice = function(device, callback) {
cordova.exec(
function(handle) { // successCallback
callback(handle);
},
function(msg) { // errorCallback
callbackWithError('Open device failed: ' + msg, callback);
},
'ChromeUsb',
'openDevice',
[device]
);
};
exports.closeDevice = function(handle, opt_callback) {
var callback = opt_callback || function() {}
cordova.exec(
callback, // successCallback
function(msg) { // errorCallback
callbackWithError('Close failed: ' + msg, callback);
},
'ChromeUsb',
'closeDevice',
[{handle:handle.handle}]
);
};
exports.listInterfaces = function(handle, callback) {
cordova.exec(
function(interfaceDescriptors) {
interfaceDescriptors.forEach(function (interfaceDescriptor) {
interfaceDescriptor.extra_data = base64.toArrayBuffer(interfaceDescriptor.extra_data);
});
callback(interfaceDescriptors);
}, // successCallback
function(msg) { // errorCallback
callbackWithError('List interfaces failed: ' + msg, callback, []);
},
'ChromeUsb',
'listInterfaces',
[{handle:handle.handle}]
);
};
exports.claimInterface = function(handle, interfaceNumber, callback) {
if (typeof interfaceNumber != "number") {
// List interfaces returns an object, the caller must extract the number
// from it.
return callbackWithError('interfaceNumber must be a number, not: ' +
JSON.stringify(interfaceNumber));
}
cordova.exec(
callback, // successCallback
function(msg) { // errorCallback
callbackWithError('Claim failed: ' + msg, callback);
},
'ChromeUsb',
'claimInterface',
[{ handle: handle.handle,
interfaceNumber: interfaceNumber}]
);
};
exports.releaseInterface = function(handle, interfaceNumber, callback) {
cordova.exec(
callback, // successCallback
function(msg) { // errorCallback
callbackWithError('Release interface failed: ' + msg, callback);
},
'ChromeUsb',
'releaseInterface',
[{handle:handle.handle,
interfaceNumber:interfaceNumber}]
);
};
exports.controlTransfer = function(handle, transferInfo, callback) {
var params = {};
var ALLOWED_PROPERTIES = [
'direction', 'recipient', 'requestType', 'request', 'value',
'index', 'length', 'timeout',
// Skip 'data' -- sent as positional param 1
];
for (var i = 0; i < ALLOWED_PROPERTIES.length; ++i) {
var name = ALLOWED_PROPERTIES[i];
params[name] = transferInfo[name];
}
params.handle = handle.handle;
cordova.exec(
function(data) { // successCallback
callback({resultCode: 0, data:data});
},
function(msg) { // errorCallback
callbackWithError('Control transfer failed: ' + msg, callback, {resultCode: 1});
},
'ChromeUsb',
'controlTransfer',
[params, transferInfo['data']]
);
};
exports.bulkTransfer = function(handle, transferInfo, callback) {
if (typeof transferInfo.endpoint != "number") {
// List interfaces returns endpoints an object, the caller must extract the
// number from it.
return callbackWithError('endpoint must be a number, not: ' +
JSON.stringify(transferInfo.endpoint));
}
var params = {
handle: handle.handle,
direction: transferInfo.direction,
endpoint: transferInfo.endpoint,
length: transferInfo.length,
timeout: transferInfo.timeout
};
cordova.exec(
function(data) { // successCallback
callback({resultCode: 0, data:data});
},
function(msg) { // errorCallback
callbackWithError('Bulk transfer failed: ' + msg, callback, {resultCode: 1});
},
'ChromeUsb',
'bulkTransfer',
[params, transferInfo['data']]
);
};
exports.interruptTransfer = function(handle, transferInfo, callback) {
if (typeof transferInfo.endpoint != "number") {
// List interfaces returns endpoints an object, the caller must extract the
// number from it.
return callbackWithError('endpoint must be a number, not: ' +
JSON.stringify(transferInfo.endpoint));
}
var params = {
handle: handle.handle,
direction: transferInfo.direction,
endpoint: transferInfo.endpoint,
length: transferInfo.length,
timeout: transferInfo.timeout
};
cordova.exec(
function(data) { // successCallback
callback({resultCode: 0, data:data});
},
function(msg) { // errorCallback
callbackWithError('Interrupt transfer failed: ' + msg, callback, {resultCode: 1});
},
'ChromeUsb',
'interruptTransfer',
[params, transferInfo['data']]
);
};
exports.requestAccess = function(device, interfaceId, callback) {
// Deprecated. Always returns true.
setTimeout(function() {
callback(true);
}, 0);
};