/**************************************************************************** ** ** Copyright (C) 2011-2012 Denis Shienkov ** Copyright (C) 2011 Sergey Belyashov ** Copyright (C) 2012 Laszlo Papp ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtSerialPort module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ #include "qserialportinfo.h" #include "qserialportinfo_p.h" #include "qserialport_win_p.h" #include #include #include #include #include QT_BEGIN_NAMESPACE typedef QPair GuidFlagsPair; static inline const QList& guidFlagsPairs() { static const QList guidFlagsPairList = QList() // Standard Setup Ports Class GUID << qMakePair(QUuid(0x4D36E978, 0xE325, 0x11CE, 0xBF, 0xC1, 0x08, 0x00, 0x2B, 0xE1, 0x03, 0x18), DWORD(DIGCF_PRESENT)) // Standard Setup Modems Class GUID << qMakePair(QUuid(0x4D36E96D, 0xE325, 0x11CE, 0xBF, 0xC1, 0x08, 0x00, 0x2B, 0xE1, 0x03, 0x18), DWORD(DIGCF_PRESENT)) // Standard Serial Port Device Interface Class GUID << qMakePair(QUuid(0x86E0D1E0, 0x8089, 0x11D0, 0x9C, 0xE4, 0x08, 0x00, 0x3E, 0x30, 0x1F, 0x73), DWORD(DIGCF_PRESENT | DIGCF_DEVICEINTERFACE)) // Standard Modem Device Interface Class GUID << qMakePair(QUuid(0x2C7089AA, 0x2E0E, 0x11D1, 0xB1, 0x14, 0x00, 0xC0, 0x4F, 0xC2, 0xAA, 0xE4), DWORD(DIGCF_PRESENT | DIGCF_DEVICEINTERFACE)); return guidFlagsPairList; } static QStringList portNamesFromHardwareDeviceMap() { HKEY hKey = 0; if (::RegOpenKeyEx(HKEY_LOCAL_MACHINE, L"HARDWARE\\DEVICEMAP\\SERIALCOMM", 0, KEY_QUERY_VALUE, &hKey) != ERROR_SUCCESS) return QStringList(); QStringList result; DWORD index = 0; static const DWORD maximumValueNameInChars = 16383; QByteArray outputValueName(maximumValueNameInChars * sizeof(wchar_t), 0); QByteArray outputBuffer; DWORD requiredDataBytes = 0; forever { DWORD requiredValueNameChars = maximumValueNameInChars; const LONG ret = ::RegEnumValue(hKey, index, reinterpret_cast(outputValueName.data()), &requiredValueNameChars, NULL, NULL, reinterpret_cast(outputBuffer.data()), &requiredDataBytes); if (ret == ERROR_MORE_DATA) { outputBuffer.resize(requiredDataBytes); } else if (ret == ERROR_SUCCESS) { result.append(QString::fromWCharArray(reinterpret_cast(outputBuffer.constData()))); ++index; } else { break; } } ::RegCloseKey(hKey); return result; } static QString deviceRegistryProperty(HDEVINFO deviceInfoSet, PSP_DEVINFO_DATA deviceInfoData, DWORD property) { DWORD dataType = 0; QByteArray devicePropertyByteArray; DWORD requiredSize = 0; forever { if (::SetupDiGetDeviceRegistryProperty(deviceInfoSet, deviceInfoData, property, &dataType, reinterpret_cast(devicePropertyByteArray.data()), devicePropertyByteArray.size(), &requiredSize)) { break; } if (::GetLastError() != ERROR_INSUFFICIENT_BUFFER || (dataType != REG_SZ && dataType != REG_EXPAND_SZ)) { return QString(); } devicePropertyByteArray.resize(requiredSize); } return QString::fromWCharArray(reinterpret_cast(devicePropertyByteArray.constData())); } static QString deviceInstanceIdentifier(HDEVINFO deviceInfoSet, PSP_DEVINFO_DATA deviceInfoData) { DWORD requiredSize = 0; if (::SetupDiGetDeviceInstanceId(deviceInfoSet, deviceInfoData, NULL, 0, &requiredSize)) return QString(); QByteArray data(requiredSize * sizeof(wchar_t), 0); if (!::SetupDiGetDeviceInstanceId(deviceInfoSet, deviceInfoData, reinterpret_cast(data.data()), data.size(), NULL)) { // TODO: error handling with GetLastError return QString(); } return QString::fromWCharArray(reinterpret_cast(data.constData())); } static QString devicePortName(HDEVINFO deviceInfoSet, PSP_DEVINFO_DATA deviceInfoData) { const HKEY key = ::SetupDiOpenDevRegKey(deviceInfoSet, deviceInfoData, DICS_FLAG_GLOBAL, 0, DIREG_DEV, KEY_READ); if (key == INVALID_HANDLE_VALUE) return QString(); static const QStringList portNameRegistryKeyList = QStringList() << QStringLiteral("PortName") << QStringLiteral("PortNumber"); QString portName; foreach (const QString &portNameKey, portNameRegistryKeyList) { DWORD bytesRequired = 0; DWORD dataType = 0; QByteArray outputBuffer; forever { const LONG ret = ::RegQueryValueEx(key, reinterpret_cast(portNameKey.utf16()), NULL, &dataType, reinterpret_cast(outputBuffer.data()), &bytesRequired); if (ret == ERROR_MORE_DATA) { outputBuffer.resize(bytesRequired); continue; } else if (ret == ERROR_SUCCESS) { if (dataType == REG_SZ) portName = QString::fromWCharArray((reinterpret_cast(outputBuffer.constData()))); else if (dataType == REG_DWORD) portName = QStringLiteral("COM%1").arg(*(PDWORD(outputBuffer.constData()))); } break; } } ::RegCloseKey(key); return portName; } class SerialPortNameEqualFunctor { public: explicit SerialPortNameEqualFunctor(const QString &serialPortName) : m_serialPortName(serialPortName) { } bool operator() (const QSerialPortInfo &serialPortInfo) const { return serialPortInfo.portName() == m_serialPortName; } private: const QString &m_serialPortName; }; static QString deviceSerialNumber(const QString &instanceIdentifier) { int firstbound = instanceIdentifier.lastIndexOf(QLatin1Char('\\')); int lastbound = instanceIdentifier.indexOf(QLatin1Char('_'), firstbound); if (instanceIdentifier.startsWith(QStringLiteral("USB\\"))) { if (lastbound != instanceIdentifier.size() - 3) lastbound = instanceIdentifier.size(); int ampersand = instanceIdentifier.indexOf(QLatin1Char('&'), firstbound); if (ampersand != -1 && ampersand < lastbound) return QString(); } else if (instanceIdentifier.startsWith(QStringLiteral("FTDIBUS\\"))) { firstbound = instanceIdentifier.lastIndexOf(QLatin1Char('+')); lastbound = instanceIdentifier.indexOf(QLatin1Char('\\'), firstbound); if (lastbound == -1) return QString(); } else { return QString(); } return instanceIdentifier.mid(firstbound + 1, lastbound - firstbound - 1); } QList QSerialPortInfo::availablePorts() { static const QString usbVendorIdentifierPrefix(QStringLiteral("VID_")); static const QString usbProductIdentifierPrefix(QStringLiteral("PID_")); static const QString pciVendorIdentifierPrefix(QStringLiteral("VEN_")); static const QString pciDeviceIdentifierPrefix(QStringLiteral("DEV_")); static const int vendorIdentifierSize = 4; static const int productIdentifierSize = 4; QList serialPortInfoList; foreach (const GuidFlagsPair &uniquePair, guidFlagsPairs()) { const HDEVINFO deviceInfoSet = ::SetupDiGetClassDevs(reinterpret_cast(&uniquePair.first), NULL, 0, uniquePair.second); if (deviceInfoSet == INVALID_HANDLE_VALUE) return serialPortInfoList; SP_DEVINFO_DATA deviceInfoData; ::memset(&deviceInfoData, 0, sizeof(deviceInfoData)); deviceInfoData.cbSize = sizeof(deviceInfoData); DWORD index = 0; while (::SetupDiEnumDeviceInfo(deviceInfoSet, index++, &deviceInfoData)) { QSerialPortInfo serialPortInfo; QString s = devicePortName(deviceInfoSet, &deviceInfoData); if (s.isEmpty() || s.contains(QStringLiteral("LPT"))) continue; if (std::find_if(serialPortInfoList.begin(), serialPortInfoList.end(), SerialPortNameEqualFunctor(s)) != serialPortInfoList.end()) { continue; } serialPortInfo.d_ptr->portName = s; serialPortInfo.d_ptr->device = QSerialPortPrivate::portNameToSystemLocation(s); serialPortInfo.d_ptr->description = deviceRegistryProperty(deviceInfoSet, &deviceInfoData, SPDRP_DEVICEDESC); serialPortInfo.d_ptr->manufacturer = deviceRegistryProperty(deviceInfoSet, &deviceInfoData, SPDRP_MFG); s = deviceInstanceIdentifier(deviceInfoSet, &deviceInfoData).toUpper(); serialPortInfo.d_ptr->serialNumber = deviceSerialNumber(s); int index = s.indexOf(usbVendorIdentifierPrefix); if (index != -1) { serialPortInfo.d_ptr->vendorIdentifier = s.mid(index + usbVendorIdentifierPrefix.size(), vendorIdentifierSize) .toInt(&serialPortInfo.d_ptr->hasVendorIdentifier, 16); } else { index = s.indexOf(pciVendorIdentifierPrefix); if (index != -1) serialPortInfo.d_ptr->vendorIdentifier = s.mid(index + pciVendorIdentifierPrefix.size(), vendorIdentifierSize) .toInt(&serialPortInfo.d_ptr->hasVendorIdentifier, 16); } index = s.indexOf(usbProductIdentifierPrefix); if (index != -1) { serialPortInfo.d_ptr->productIdentifier = s.mid(index + usbProductIdentifierPrefix.size(), productIdentifierSize) .toInt(&serialPortInfo.d_ptr->hasProductIdentifier, 16); } else { index = s.indexOf(pciDeviceIdentifierPrefix); if (index != -1) serialPortInfo.d_ptr->productIdentifier = s.mid(index + pciDeviceIdentifierPrefix.size(), productIdentifierSize) .toInt(&serialPortInfo.d_ptr->hasProductIdentifier, 16); } serialPortInfoList.append(serialPortInfo); } ::SetupDiDestroyDeviceInfoList(deviceInfoSet); } foreach (const QString &portName, portNamesFromHardwareDeviceMap()) { if (std::find_if(serialPortInfoList.begin(), serialPortInfoList.end(), SerialPortNameEqualFunctor(portName)) == serialPortInfoList.end()) { QSerialPortInfo serialPortInfo; serialPortInfo.d_ptr->portName = portName; serialPortInfo.d_ptr->device = QSerialPortPrivate::portNameToSystemLocation(portName); serialPortInfoList.append(serialPortInfo); } } return serialPortInfoList; } QList QSerialPortInfo::standardBaudRates() { return QSerialPortPrivate::standardBaudRates(); } bool QSerialPortInfo::isBusy() const { const HANDLE handle = ::CreateFile(reinterpret_cast(systemLocation().utf16()), GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL); if (handle == INVALID_HANDLE_VALUE) { if (::GetLastError() == ERROR_ACCESS_DENIED) return true; } else { ::CloseHandle(handle); } return false; } bool QSerialPortInfo::isValid() const { const HANDLE handle = ::CreateFile(reinterpret_cast(systemLocation().utf16()), GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL); if (handle == INVALID_HANDLE_VALUE) { if (::GetLastError() != ERROR_ACCESS_DENIED) return false; } else { ::CloseHandle(handle); } return true; } QT_END_NAMESPACE