20

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

4

3 回答 3

20

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

或者,您可以使用IOServiceGetMatchingServicesIOServiceMatching(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;
}
于 2011-09-27T12:22:23.063 回答
7

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

工具信息ioreg

$ man ioreg

获取 USB 设备列表:

$ ioreg -Src IOUSBDevice
于 2011-09-27T11:23:29.643 回答
3

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

于 2011-09-27T11:18:19.067 回答