2013-11-17 15:51:42 +01:00
|
|
|
// stl includes
|
|
|
|
#include <exception>
|
|
|
|
#include <cstring>
|
|
|
|
#include <algorithm>
|
|
|
|
|
|
|
|
// Local Hyperion includes
|
|
|
|
#include "LedDeviceMultiLightpack.h"
|
|
|
|
|
2013-11-20 20:54:04 +01:00
|
|
|
// from USB_ID.h (http://code.google.com/p/light-pack/source/browse/CommonHeaders/USB_ID.h)
|
|
|
|
#define USB_OLD_VENDOR_ID 0x03EB
|
|
|
|
#define USB_OLD_PRODUCT_ID 0x204F
|
|
|
|
#define USB_VENDOR_ID 0x1D50
|
|
|
|
#define USB_PRODUCT_ID 0x6022
|
|
|
|
|
2013-11-17 15:51:42 +01:00
|
|
|
bool compareLightpacks(LedDeviceLightpack * lhs, LedDeviceLightpack * rhs)
|
|
|
|
{
|
|
|
|
return lhs->getSerialNumber() < rhs->getSerialNumber();
|
|
|
|
}
|
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
LedDeviceMultiLightpack::LedDeviceMultiLightpack(const Json::Value &)
|
2016-08-14 10:46:44 +02:00
|
|
|
: LedDevice()
|
|
|
|
, _lightpacks()
|
2013-11-17 15:51:42 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
LedDeviceMultiLightpack::~LedDeviceMultiLightpack()
|
|
|
|
{
|
|
|
|
for (LedDeviceLightpack * device : _lightpacks)
|
|
|
|
{
|
|
|
|
delete device;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-23 20:07:12 +02:00
|
|
|
LedDevice* LedDeviceMultiLightpack::construct(const Json::Value &deviceConfig)
|
|
|
|
{
|
|
|
|
return new LedDeviceMultiLightpack(deviceConfig);
|
|
|
|
}
|
|
|
|
|
2013-11-17 15:51:42 +01:00
|
|
|
int LedDeviceMultiLightpack::open()
|
|
|
|
{
|
2013-11-20 20:54:04 +01:00
|
|
|
// retrieve a list with Lightpack serials
|
|
|
|
std::list<std::string> serialList = getLightpackSerials();
|
2013-11-17 15:51:42 +01:00
|
|
|
|
2013-11-20 20:54:04 +01:00
|
|
|
// sort the list of Lightpacks based on the serial to get a fixed order
|
|
|
|
std::sort(_lightpacks.begin(), _lightpacks.end(), compareLightpacks);
|
2013-11-17 15:51:42 +01:00
|
|
|
|
2013-11-20 20:54:04 +01:00
|
|
|
// open each lightpack device
|
|
|
|
for (const std::string & serial : serialList)
|
2013-11-17 15:51:42 +01:00
|
|
|
{
|
2016-07-13 11:18:12 +02:00
|
|
|
LedDeviceLightpack * device = new LedDeviceLightpack(serial);
|
|
|
|
int error = device->open();
|
2013-11-17 15:51:42 +01:00
|
|
|
|
|
|
|
if (error == 0)
|
|
|
|
{
|
|
|
|
_lightpacks.push_back(device);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-06-26 11:53:16 +02:00
|
|
|
Error(_log, "Error while creating Lightpack device with serial %s", serial.c_str());
|
2013-11-17 15:51:42 +01:00
|
|
|
delete device;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (_lightpacks.size() == 0)
|
|
|
|
{
|
2016-06-26 11:53:16 +02:00
|
|
|
Warning(_log, "No Lightpack devices were found");
|
2013-11-17 15:51:42 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-06-26 11:53:16 +02:00
|
|
|
Info(_log, "%d Lightpack devices were found", _lightpacks.size());
|
2013-11-17 15:51:42 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return _lightpacks.size() > 0 ? 0 : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LedDeviceMultiLightpack::write(const std::vector<ColorRgb> &ledValues)
|
|
|
|
{
|
|
|
|
const ColorRgb * data = ledValues.data();
|
|
|
|
int size = ledValues.size();
|
|
|
|
|
|
|
|
for (LedDeviceLightpack * device : _lightpacks)
|
|
|
|
{
|
|
|
|
int count = std::min(device->getLedCount(), size);
|
|
|
|
|
|
|
|
if (count > 0)
|
|
|
|
{
|
|
|
|
device->write(data, count);
|
|
|
|
|
|
|
|
data += count;
|
|
|
|
size -= count;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2016-06-26 11:53:16 +02:00
|
|
|
Warning(_log, "Unable to write data to Lightpack device: no more led data available");
|
2013-11-17 15:51:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int LedDeviceMultiLightpack::switchOff()
|
|
|
|
{
|
|
|
|
for (LedDeviceLightpack * device : _lightpacks)
|
|
|
|
{
|
|
|
|
device->switchOff();
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2013-11-20 20:54:04 +01:00
|
|
|
|
|
|
|
std::list<std::string> LedDeviceMultiLightpack::getLightpackSerials()
|
|
|
|
{
|
|
|
|
std::list<std::string> serialList;
|
2016-06-26 11:53:16 +02:00
|
|
|
Logger * log = Logger::getInstance("LedDevice");
|
|
|
|
Debug(log, "Getting list of Lightpack serials");
|
2013-11-20 20:54:04 +01:00
|
|
|
|
|
|
|
// initialize the usb context
|
|
|
|
libusb_context * libusbContext;
|
|
|
|
int error = libusb_init(&libusbContext);
|
|
|
|
if (error != LIBUSB_SUCCESS)
|
|
|
|
{
|
2016-08-07 07:06:56 +02:00
|
|
|
Error(log,"Error while initializing USB context(%d): %s", error, libusb_error_name(error));
|
2013-11-20 20:54:04 +01:00
|
|
|
libusbContext = nullptr;
|
|
|
|
return serialList;
|
|
|
|
}
|
|
|
|
//libusb_set_debug(_libusbContext, 3);
|
2016-06-26 11:53:16 +02:00
|
|
|
Info(log, "USB context initialized in multi Lightpack device");
|
2013-11-20 20:54:04 +01:00
|
|
|
|
|
|
|
// retrieve the list of usb devices
|
|
|
|
libusb_device ** deviceList;
|
|
|
|
ssize_t deviceCount = libusb_get_device_list(libusbContext, &deviceList);
|
|
|
|
|
|
|
|
// iterate the list of devices
|
|
|
|
for (ssize_t i = 0 ; i < deviceCount; ++i)
|
|
|
|
{
|
|
|
|
libusb_device_descriptor deviceDescriptor;
|
|
|
|
error = libusb_get_device_descriptor(deviceList[i], &deviceDescriptor);
|
|
|
|
if (error != LIBUSB_SUCCESS)
|
|
|
|
{
|
2016-08-07 07:06:56 +02:00
|
|
|
Error(log, "Error while retrieving device descriptor(%d): %s", error, libusb_error_name(error));
|
2013-11-20 20:54:04 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ((deviceDescriptor.idVendor == USB_VENDOR_ID && deviceDescriptor.idProduct == USB_PRODUCT_ID) ||
|
|
|
|
(deviceDescriptor.idVendor == USB_OLD_VENDOR_ID && deviceDescriptor.idProduct == USB_OLD_PRODUCT_ID))
|
|
|
|
{
|
2016-06-26 11:53:16 +02:00
|
|
|
Info(log, "Found a lightpack device. Retrieving serial...");
|
2013-11-20 20:54:04 +01:00
|
|
|
|
|
|
|
// get the serial number
|
|
|
|
std::string serialNumber;
|
|
|
|
if (deviceDescriptor.iSerialNumber != 0)
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
serialNumber = LedDeviceMultiLightpack::getString(deviceList[i], deviceDescriptor.iSerialNumber);
|
|
|
|
}
|
|
|
|
catch (int e)
|
|
|
|
{
|
2016-08-07 07:06:56 +02:00
|
|
|
Error(log,"Unable to retrieve serial number(%d): %s", e, libusb_error_name(e));
|
2013-11-20 20:54:04 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-06-26 11:53:16 +02:00
|
|
|
Error(log, "Lightpack device found with serial %s", serialNumber.c_str());;
|
2013-11-20 20:54:04 +01:00
|
|
|
serialList.push_back(serialNumber);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// free the device list
|
|
|
|
libusb_free_device_list(deviceList, 1);
|
|
|
|
libusb_exit(libusbContext);
|
|
|
|
|
|
|
|
return serialList;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string LedDeviceMultiLightpack::getString(libusb_device * device, int stringDescriptorIndex)
|
|
|
|
{
|
|
|
|
libusb_device_handle * handle = nullptr;
|
|
|
|
|
|
|
|
int error = libusb_open(device, &handle);
|
|
|
|
if (error != LIBUSB_SUCCESS)
|
|
|
|
{
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
|
|
|
char buffer[256];
|
|
|
|
error = libusb_get_string_descriptor_ascii(handle, stringDescriptorIndex, reinterpret_cast<unsigned char *>(buffer), sizeof(buffer));
|
|
|
|
if (error <= 0)
|
|
|
|
{
|
|
|
|
libusb_close(handle);
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
|
|
|
|
libusb_close(handle);
|
|
|
|
return std::string(buffer, error);
|
|
|
|
}
|