如何创建程序列出Mac中的所有USB设备?

时间:2011-09-27 10:47:09

标签: c++ xcode macos iokit

我对Mac OS X操作系统的曝光率有限,现在我开始使用Xcode并正在研究I / O套件。我需要在命令行工具下在Xcode中创建一个程序,以便列出Mac系统中连接的所有USB设备。那些以前有过这方面经验的人,请帮助我。如果有人能为我提供示例代码,那么它将非常有用,因为我正在寻找起点。

3 个答案:

答案 0 :(得分:19)

您可以根据需要调整USBPrivateDataSample,示例设置通知程序,列出当前连接的设备,然后等待设备连接/分离。如果您这样做,则需要删除usbVendorusbProduct匹配的词典,以便匹配所有USB设备。

或者,您可以使用IOServiceGetMatchingServices使用由IOServiceMatching(kIOUSBDeviceClassName)创建的字典来获取所有当前匹配服务的迭代器。

这是一个简短的样本(我从未运行过):

#include <IOKit/IOKitLib.h>
#include <IOKit/usb/IOUSBLib.h>

int main(int argc, const char *argv[])
{
    CFMutableDictionaryRef matchingDict;
    io_iterator_t iter;
    kern_return_t kr;
    io_service_t device;

    /* set up a matching dictionary for the class */
    matchingDict = IOServiceMatching(kIOUSBDeviceClassName);
    if (matchingDict == NULL)
    {
        return -1; // fail
    }

    /* Now we have a dictionary, get an iterator.*/
    kr = IOServiceGetMatchingServices(kIOMasterPortDefault, matchingDict, &iter);
    if (kr != KERN_SUCCESS)
    {
        return -1;
    }

    /* iterate */
    while ((device = IOIteratorNext(iter)))
    {
        /* do something with device, eg. check properties */
        /* ... */
        /* And free the reference taken before continuing to the next item */
        IOObjectRelease(device);
    }

   /* Done, release the iterator */
   IOObjectRelease(iter);
   return 0;
}

答案 1 :(得分:7)

您只需访问IOKit 注册表即可。您可能可以使用ioreg工具执行此操作(例如,通过system()popen()运行)。如果没有,那么您至少可以使用它来验证您的代码:

有关ioreg工具的信息:

$ man ioreg

获取USB设备列表:

$ ioreg -Src IOUSBDevice

答案 2 :(得分:2)

如果您运行system_profiler SPUSBDataType它将列出连接到系统的所有USB设备,您可以通过将其转储到文本文件或将其从命令读入应用程序并工作来与该数据进行交互在那里。