从设备实例路径字符串获取设备实例 DWORD

Get device instance DWORD from device instance path string

本文关键字:实例 DWORD 获取 路径 字符串      更新时间:2023-10-16

我得到一个设备实例路径,如下所示

L"\\?\USB#VID_0403&PID_6001#6&2cc2d230&0&2#{219d0508-57a8-4ff5-97a1-bd86587c6c7e}"

from IWDFRemoteInterfaceInitialize::RetrieveSymbolicLink.
但是对于CM_Get_Parent我需要设备的DEVINST/DWORD,这让我发疯。
例如,我试过

instancePath = L"\\?\USB#VID_0403&PID_6001#6&2cc2d230&0&2#{219d0508-57a8-4ff5-97a1-bd86587c6c7e}";
HDEVINFO hinfo = SetupDiGetClassDevs(NULL, instancePath, NULL, DIGCF_DEVICEINTERFACE | DIGCF_ALLCLASSES);

和其他一些设置...巫毒教没有成功。非常感谢任何帮助,因为 - 如前所述 - 我已经几个小时无法绕过这种疯狂了,尽管有几十个相反的例子(devid->实例路径),但我还没有找到任何例如路径>DEVINST。

虽然修改路径可能会起作用,但 Windows 文档明确表示不应解析设备路径。

不过,您可以使用 CfgMgr32 API 使用 CM_Get_Device_Interface_PropertyW () 和 DEVPKEY_Device_InstanceId

#include <cfgmgr32.h>
#include <initguid.h> // needed for devpkey.h to parse properly
#include <devpkey.h>
#include <cassert>
#include <string>
#include <vector>
/*
 *   @brief The following retrieves the Device Instance ID from the main device path.
 *   @param device_path A device path that has the form of the following:
 *                      \?usb#vid_[VENDOR_ID]&pid_[PRODUCT_ID]#INSTANCE_ID#{[DEVICE_INTERFACE_GUID]}
 *
 *                      Where the following components are described as:
 *                          1. VENDOR_ID             - The vendor ID of the device.
 *                          2. PRODUCT_ID            - The product ID of the device.
 *                          3. INSTANCE_ID           - The unique ID generated when the device connects to the host.
 *                          4. DEVICE_INTERFACE_GUID - The GUID that describes the interface of the device.
 *                                                     This is NOT the same as the "Device Class GUID."
 *   @return The Device Instance ID (linked below). A Device Instance ID has the form of:
 *           <device-id><instance-id>
 *
 *           Example: USBVID_2109&PID_08137&3981c8d6&0&2
 *   @see https://learn.microsoft.com/en-us/windows-hardware/drivers/install/device-instance-ids
 *   @see https://learn.microsoft.com/en-us/windows/win32/api/cfgmgr32/nf-cfgmgr32-cm_get_device_interface_propertyw
 */
std::wstring map_path (LPCWSTR device_path) {
    ULONG buf_size = 0;
    DEVPROPTYPE type;
    CM_Get_Device_Interface_PropertyW(
        device_path, &DEVPKEY_Device_InstanceId, &type,
        nullptr, &buf_size, 0);
    std::vector<BYTE> buffer(buf_size);
    auto result = CM_Get_Device_Interface_PropertyW(
        device_path, &DEVPKEY_Device_InstanceId, &type,
        buffer.data(), &buf_size, 0);
    assert(result == CR_SUCCESS);
    assert(type == DEVPROP_TYPE_STRING);
    // buffer will be null-terminated
    return reinterpret_cast<wchar_t*>(buffer.data());
}

正如你所说,没有直接的方法。

但是,您应该能够通过一些字符串编辑从设备路径/设备接口 ID 中获取设备实例 ID,请执行以下步骤:

  1. 完全卸下起始\\?\部分,直到USB
  2. 完全删除最后一个{...}部件
  3. #替换为

起点

"\\?\USB#VID_0403&PID_6001#6&2cc2d230&0&2#{219d0508-57a8-4ff5-97a1-bd86587c6c7e}"

你现在应该有

"USBVID_0403&PID_60016&2cc2d230&0&2"

这应该是有效的设备实例 ID。如果不是,请尝试删除最后一个"\"。

然后,你可以把它喂给CM_Locate_DevNode()并得到想要的DEVINST。