summaryrefslogtreecommitdiffstats
path: root/src/platformsupport/devicediscovery/qdevicediscovery_udev.cpp
diff options
context:
space:
mode:
authorLaszlo Agocs <laszlo.agocs@theqtcompany.com>2015-03-07 16:06:58 +0100
committerLaszlo Agocs <laszlo.agocs@theqtcompany.com>2015-03-09 11:13:54 +0000
commit3fea1e53a14775a45e105efaf95066a8f1af5c18 (patch)
tree28d4468f0cc7fdbf1cc9db285acc55827b855d32 /src/platformsupport/devicediscovery/qdevicediscovery_udev.cpp
parent0fce009f1c72806c349de6892d514ec540b02e44 (diff)
Add joystick/gamepad recognition to device discovery
And to keep things readable, migrate to categorized logging. Change-Id: Ie9d82bb4e93d3b96f1a7bf54a37cfde4a941bc7d Reviewed-by: Andy Nichols <andy.nichols@theqtcompany.com>
Diffstat (limited to 'src/platformsupport/devicediscovery/qdevicediscovery_udev.cpp')
-rw-r--r--src/platformsupport/devicediscovery/qdevicediscovery_udev.cpp36
1 files changed, 13 insertions, 23 deletions
diff --git a/src/platformsupport/devicediscovery/qdevicediscovery_udev.cpp b/src/platformsupport/devicediscovery/qdevicediscovery_udev.cpp
index 358be828fa..8fa82e2ad7 100644
--- a/src/platformsupport/devicediscovery/qdevicediscovery_udev.cpp
+++ b/src/platformsupport/devicediscovery/qdevicediscovery_udev.cpp
@@ -38,22 +38,17 @@
#include <QObject>
#include <QHash>
#include <QSocketNotifier>
+#include <QLoggingCategory>
#include <linux/input.h>
-//#define QT_QPA_DEVICE_DISCOVERY_DEBUG
-
-#ifdef QT_QPA_DEVICE_DISCOVERY_DEBUG
-#include <QtDebug>
-#endif
-
QT_BEGIN_NAMESPACE
+Q_LOGGING_CATEGORY(lcDD, "qt.qpa.input")
+
QDeviceDiscovery *QDeviceDiscovery::create(QDeviceTypes types, QObject *parent)
{
-#ifdef QT_QPA_DEVICE_DISCOVERY_DEBUG
- qWarning() << "Try to create new UDeviceHelper";
-#endif
+ qCDebug(lcDD) << "udev device discovery for type" << types;
QDeviceDiscovery *helper = 0;
struct udev *udev;
@@ -62,7 +57,7 @@ QDeviceDiscovery *QDeviceDiscovery::create(QDeviceTypes types, QObject *parent)
if (udev) {
helper = new QDeviceDiscoveryUDev(types, udev, parent);
} else {
- qWarning("Failed to get udev library context.");
+ qWarning("Failed to get udev library context");
}
return helper;
@@ -72,18 +67,12 @@ QDeviceDiscoveryUDev::QDeviceDiscoveryUDev(QDeviceTypes types, struct udev *udev
QDeviceDiscovery(types, parent),
m_udev(udev), m_udevMonitor(0), m_udevMonitorFileDescriptor(-1), m_udevSocketNotifier(0)
{
-#ifdef QT_QPA_DEVICE_DISCOVERY_DEBUG
- qWarning() << "New UDeviceHelper created for type" << types;
-#endif
-
if (!m_udev)
return;
m_udevMonitor = udev_monitor_new_from_netlink(m_udev, "udev");
if (!m_udevMonitor) {
-#ifdef QT_QPA_DEVICE_DISCOVERY_DEBUG
- qWarning("Unable to create an Udev monitor. No devices can be detected.");
-#endif
+ qWarning("Unable to create an udev monitor. No devices can be detected.");
return;
}
@@ -128,11 +117,11 @@ QStringList QDeviceDiscoveryUDev::scanConnectedDevices()
}
if (m_types & Device_Tablet)
udev_enumerate_add_match_property(ue, "ID_INPUT_TABLET", "1");
+ if (m_types & Device_Joystick)
+ udev_enumerate_add_match_property(ue, "ID_INPUT_JOYSTICK", "1");
if (udev_enumerate_scan_devices(ue) != 0) {
-#ifdef QT_QPA_DEVICE_DISCOVERY_DEBUG
- qWarning() << "UDeviceHelper scan connected devices for enumeration failed";
-#endif
+ qWarning("Failed to scan devices");
return devices;
}
@@ -158,9 +147,7 @@ QStringList QDeviceDiscoveryUDev::scanConnectedDevices()
}
udev_enumerate_unref(ue);
-#ifdef QT_QPA_DEVICE_DISCOVERY_DEBUG
- qWarning() << "UDeviceHelper found matching devices" << devices;
-#endif
+ qCDebug(lcDD) << "Found matching devices" << devices;
return devices;
}
@@ -251,6 +238,9 @@ bool QDeviceDiscoveryUDev::checkDeviceType(udev_device *dev)
if ((m_types & Device_Tablet) && (qstrcmp(udev_device_get_property_value(dev, "ID_INPUT_TABLET"), "1") == 0))
return true;
+ if ((m_types & Device_Joystick) && (qstrcmp(udev_device_get_property_value(dev, "ID_INPUT_JOYSTICK"), "1") == 0))
+ return true;
+
if ((m_types & Device_DRM) && (qstrcmp(udev_device_get_subsystem(dev), "drm") == 0))
return true;