这对我来说只是一个简单的错误,因此我犹豫地使用“不工作”一词。
这是我的代码,问题是从io_name_t
变量到char
数组的strcpy似乎不起作用,即数据未被复制。
定义结构以保存数据以供进一步使用:
static struct sUSBDevInfo {
char devName[200];
char svcPlane[200];
char othPlane[200];
int isScreen;
} USBDevInfo[99];
现在填充结构:
int getUSBDevices ()
{
int i = -1;
CFMutableDictionaryRef matchingDict;
io_iterator_t iter;
kern_return_t kr;
io_service_t device;
io_name_t deviceName;
io_string_t pathName;
matchingDict = IOServiceMatching(kIOUSBDeviceClassName);
if ( matchingDict == NULL)
{
return ( "No match" );
}
/* Now we have a dictionary, get an iterator.*/
kr = IOServiceGetMatchingServices(kIOMasterPortDefault, matchingDict, &iter);
if (kr != KERN_SUCCESS)
{
return (0);
}
/* iterate */
while ((device = IOIteratorNext(iter)))
{
/* do something with device, eg. check properties */
/***Display the device names ***/
kr = IORegistryEntryGetName(device, deviceName);
if (KERN_SUCCESS != kr)
{
deviceName[0] = '\0';
}
i++;
printf("\ndeviceName:%s",deviceName);
strcpy(USBDevInfo[i].devName, deviceName); /* !!! This and the following strcpy leave the dest variable unchanged !!! */
IORegistryEntryGetPath(device, kIOServicePlane, pathName);
strcpy(USBDevInfo[i].svcPlane, pathName);
IORegistryEntryGetPath(device, kIOUSBPlane, pathName);
strcpy(USBDevInfo[i].othPlane, pathName);
USBDevInfo[i].isScreen = isScreen(deviceName);
IOObjectRelease(device);
}
/* Done, release the iterator */
IOObjectRelease(iter);
return ( i );
}
我调试时显示deviceName
具有预期值(例如deviceName:Root Hub Simulation Simulation
),但strcpy到USBDevInfo[i].devName
会保持目标不变('\0'
)。
修改
尝试过试验。复制到另一个局部变量是有效的,但是对于全局静态结构项是无效的:
char cpy[200]; /* local variable */
.
.
strcpy(cpy, deviceName); /* Works - copied to cpy */
strcpy(USBDevInfo[i].devName, deviceName); /* Not working */
USBDevInfo[i].devName[0] = deviceName[3]; /* Not working */
修改2
请参阅下面的答案。
答案 0 :(得分:0)
修改2
修改头文件只包含结构的类型定义。
typedef struct sUSBDevInfo {
char devName[400];
char svcPlane[400];
char othPlane[400];
int isScreen;
} tUSBDevInfo;
将struct变量声明移动到C文件。
static tUSBDevInfo USBDevInfo[99];
现在strcpy有效。
因此,将struct数组变量放在标题中会导致代码无法更改数组中的值,但将其放在c文件中(作为全局)可以正常工作。