Newer
Older
/*
* Open Pixel Control server for Fadecandy
*
* Copyright (c) 2013 Micah Elizabeth Scott
*
* Permission is hereby granted, free of charge, to any person obtaining a copy of
* this software and associated documentation files (the "Software"), to deal in
* the Software without restriction, including without limitation the rights to
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
* the Software, and to permit persons to whom the Software is furnished to do so,
* subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "usbdevice.h"
#include "enttecdmxdevice.h"
FCServer::FCServer(rapidjson::Document &config)
: mConfig(config),
mListen(config["listen"]),
mColor(config["color"]),
mDevices(config["devices"]),
mVerbose(config["verbose"].IsTrue()),
mNetServer(cbOpcMessage, cbJsonMessage, this, mVerbose),
mUSBHotplugThread(0),
* Validate the listen [host, port] list.
*/
if (mListen.IsArray() && mListen.Size() == 2) {
const Value &host = mListen[0u];
const Value &port = mListen[1];
const char *hostStr = 0;
if (host.IsString()) {
hostStr = host.GetString();
} else if (!host.IsNull()) {
mError << "Hostname in 'listen' must be null (any) or a hostname string.\n";
}
if (!port.IsUint()) {
mError << "The 'listen' port must be an integer.\n";
}
} else {
mError << "The required 'listen' configuration key must be a [host, port] list.\n";
}
/*
* Minimal validation on 'devices'
*/
if (!mDevices.IsArray()) {
mError << "The required 'devices' configuration key must be an array.\n";
}
bool FCServer::start(libusb_context *usb)
const Value &host = mListen[0u];
const Value &port = mListen[1];
const char *hostStr = host.IsString() ? host.GetString() : NULL;
return mNetServer.start(hostStr, port.GetUint()) && startUSB(usb);
bool FCServer::startUSB(libusb_context *usb)
Micah Elizabeth Scott
committed
mUSB = usb;
// Enumerate all attached devices, and get notified of hotplug events
libusb_hotplug_register_callback(mUSB,
libusb_hotplug_event(LIBUSB_HOTPLUG_EVENT_DEVICE_ARRIVED |
LIBUSB_HOTPLUG_EVENT_DEVICE_LEFT),
LIBUSB_HOTPLUG_ENUMERATE,
LIBUSB_HOTPLUG_MATCH_ANY,
LIBUSB_HOTPLUG_MATCH_ANY,
LIBUSB_HOTPLUG_MATCH_ANY,
cbHotplug, this, 0);
// On platforms without real USB hotplug, emulate it with a polling thread
if (!libusb_has_capability(LIBUSB_CAP_HAS_HOTPLUG)) {
mUSBHotplugThread = new tthread::thread(usbHotplugThreadFunc, this);
}
return true;
void FCServer::cbOpcMessage(OPC::Message &msg, void *context)
/*
* Broadcast the OPC message to all configured devices.
*/
FCServer *self = static_cast<FCServer*>(context);
Micah Elizabeth Scott
committed
self->mEventMutex.lock();
for (std::vector<USBDevice*>::iterator i = self->mUSBDevices.begin(), e = self->mUSBDevices.end(); i != e; ++i) {
USBDevice *dev = *i;
dev->writeMessage(msg);
}
Micah Elizabeth Scott
committed
self->mEventMutex.unlock();
int FCServer::cbHotplug(libusb_context *ctx, libusb_device *device, libusb_hotplug_event event, void *user_data)
{
FCServer *self = static_cast<FCServer*>(user_data);
Micah Elizabeth Scott
committed
self->mEventMutex.lock();
if (event & LIBUSB_HOTPLUG_EVENT_DEVICE_ARRIVED) {
self->usbDeviceArrived(device);
}
if (event & LIBUSB_HOTPLUG_EVENT_DEVICE_LEFT) {
self->usbDeviceLeft(device);
}
Micah Elizabeth Scott
committed
self->mEventMutex.unlock();
void FCServer::usbDeviceArrived(libusb_device *device)
{
/*
* New USB device. Is this a device we recognize?
*/
USBDevice *dev;
if (FCDevice::probe(device)) {
Micah Elizabeth Scott
committed
dev = new FCDevice(device, mVerbose);
} else if (EnttecDMXDevice::probe(device)) {
Micah Elizabeth Scott
committed
dev = new EnttecDMXDevice(device, mVerbose);
} else {
return;
}
int r = dev->open();
if (r < 0) {
if (mVerbose) {
switch (r) {
// Errors that may occur transiently while WinUSB is installing...
#ifdef _WIN32
case LIBUSB_ERROR_NOT_FOUND:
case LIBUSB_ERROR_NOT_SUPPORTED:
std::clog << "Waiting for Windows to install " << dev->getName() << " driver. This may take a moment...\n";
break;
#endif
default:
std::clog << "Error opening " << dev->getName() << ": " << libusb_strerror(libusb_error(r)) << "\n";
break;
}
}
delete dev;
return;
}
if (!dev->probeAfterOpening()) {
// We were mistaken, this device isn't actually one we want.
delete dev;
return;
}
for (unsigned i = 0; i < mDevices.Size(); ++i) {
if (dev->matchConfiguration(mDevices[i])) {
// Found a matching configuration for this device. We're keeping it!
dev->loadConfiguration(mDevices[i]);
dev->writeColorCorrection(mColor);
mUSBDevices.push_back(dev);
if (mVerbose) {
std::clog << "USB device " << dev->getName() << " attached.\n";
}
jsonConnectedDevicesChanged();
return;
}
}
if (mVerbose) {
std::clog << "USB device " << dev->getName() << " has no matching configuration. Not using it.\n";
}
delete dev;
void FCServer::usbDeviceLeft(libusb_device *device)
{
/*
* Is this a device we recognize? If so, delete it.
*/
for (std::vector<USBDevice*>::iterator i = mUSBDevices.begin(), e = mUSBDevices.end(); i != e; ++i) {
USBDevice *dev = *i;
if (dev->getDevice() == device) {
usbDeviceLeft(i);
void FCServer::usbDeviceLeft(std::vector<USBDevice*>::iterator iter)
{
USBDevice *dev = *iter;
if (mVerbose) {
std::clog << "USB device " << dev->getName() << " removed.\n";
}
mUSBDevices.erase(iter);
delete dev;
jsonConnectedDevicesChanged();
}
void FCServer::mainLoop()
{
for (;;) {
int err = libusb_handle_events_completed(mUSB, 0);
if (err) {
std::clog << "Error handling USB events: " << libusb_strerror(libusb_error(err)) << "\n";
Micah Elizabeth Scott
committed
// Sometimes this happens on Windows during normal operation if we're queueing a lot of output URBs. Meh.
}
// Flush completed transfers
mEventMutex.lock();
for (std::vector<USBDevice*>::iterator i = mUSBDevices.begin(), e = mUSBDevices.end(); i != e; ++i) {
USBDevice *dev = *i;
dev->flush();
Micah Elizabeth Scott
committed
mEventMutex.unlock();
}
}
bool FCServer::usbHotplugPoll()
{
/*
* For platforms without libusbx hotplug support,
* see if we can fake it by polling for new devices. This can
* happen on a different thread, and it probably should.
* Returns true on success.
*/
libusb_device **list;
ssize_t listSize;
listSize = libusb_get_device_list(mUSB, &list);
if (listSize < 0) {
std::clog << "Error polling for USB devices: " << libusb_strerror(libusb_error(listSize)) << "\n";
return false;
}
// Take the lock after get_device_list completes
Micah Elizabeth Scott
committed
mEventMutex.lock();
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
// Look for devices that were added
for (ssize_t listItem = 0; listItem < listSize; ++listItem) {
bool isNew = true;
for (std::vector<USBDevice*>::iterator i = mUSBDevices.begin(), e = mUSBDevices.end(); i != e; ++i) {
USBDevice *dev = *i;
if (dev->getDevice() == list[listItem]) {
isNew = false;
}
}
if (isNew) {
usbDeviceArrived(list[listItem]);
}
}
// Look for devices that were removed
for (std::vector<USBDevice*>::iterator i = mUSBDevices.begin(), e = mUSBDevices.end(); i != e; ++i) {
USBDevice *dev = *i;
libusb_device *usbdev = dev->getDevice();
bool isRemoved = true;
for (ssize_t listItem = 0; listItem < listSize; ++listItem) {
if (list[listItem] == usbdev) {
isRemoved = false;
}
}
if (isRemoved) {
usbDeviceLeft(i);
}
}
Micah Elizabeth Scott
committed
mEventMutex.unlock();
libusb_free_device_list(list, true);
return true;
}
void FCServer::usbHotplugThreadFunc(void *arg)
{
FCServer *self = (FCServer*) arg;
while (self->usbHotplugPoll()) {
tthread::this_thread::sleep_for(tthread::chrono::seconds(1));
}
}
void FCServer::cbJsonMessage(libwebsocket *wsi, rapidjson::Document &message, void *context)
{
// Received a JSON message from a WebSockets client.
// Replies are formed by modifying the original message.
FCServer *self = (FCServer*) context;
const Value &vtype = message["type"];
if (!vtype.IsString()) {
lwsl_notice("NOTICE: Received JSON is missing mandatory \"type\" string\n");
return;
}
const char *type = vtype.GetString();
// Hold the event lock while dispatching
self->mEventMutex.lock();
if (!strcmp(type, "list_connected_devices")) {
self->jsonListConnectedDevices(message);
} else if (!strcmp(type, "server_info")) {
self->jsonServerInfo(message);
} else if (message.HasMember("device")) {
self->jsonDeviceMessage(message);
} else {
message.AddMember("error", "Unknown message type", message.GetAllocator());
}
self->mEventMutex.unlock();
// Remove heavyweight members we should never reply with
message.RemoveMember("pixels");
// All messages get a reply, and we leave any extra parameters on the message
// so that clients can keep track of asynchronous completions.
self->mNetServer.jsonReply(wsi, message);
}
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
void FCServer::jsonDeviceMessage(rapidjson::Document &message)
{
/*
* If this message has a "device" member and doesn't match any server-global
* message types, give each matching device a chance to handle it.
*/
const Value &device = message["device"];
bool matched = false;
if (device.IsObject()) {
for (unsigned i = 0; i != mUSBDevices.size(); i++) {
USBDevice *usbDev = mUSBDevices[i];
if (usbDev->matchConfiguration(device)) {
matched = true;
usbDev->writeMessage(message);
if (message.HasMember("error"))
break;
}
}
}
if (!matched) {
message.AddMember("error", "No matching device found", message.GetAllocator());
}
}
void FCServer::jsonListConnectedDevices(rapidjson::Document &message)
{
message.AddMember("devices", rapidjson::kArrayType, message.GetAllocator());
Value &list = message["devices"];
for (unsigned i = 0; i != mUSBDevices.size(); i++) {
USBDevice *usbDev = mUSBDevices[i];
list.PushBack(rapidjson::kObjectType, message.GetAllocator());
mUSBDevices[i]->describe(list[i], message.GetAllocator());
}
}
void FCServer::jsonServerInfo(rapidjson::Document &message)
{
// Server version
message.AddMember("version", kFCServerVersion, message.GetAllocator());
// Server configuration
message.AddMember("config", rapidjson::kObjectType, message.GetAllocator());
message.DeepCopy(message["config"], mConfig);
void FCServer::jsonConnectedDevicesChanged()
{
rapidjson::Document message;
message.SetObject();
message.AddMember("type", "connected_devices_changed", message.GetAllocator());
jsonListConnectedDevices(message);
mNetServer.jsonBroadcast(message);
}