OSX获得CD速度(ioctl)

时间:2012-02-16 20:57:19

标签: c macos ioctl

我正在分发使用光盘的软件,并且在默认的全速下它太嘈杂而不能接受。我的目标是使用ioctl降低磁盘的速度,但我不知道如何从/ Volumes / MyDisk / Application中找到/ dev / disk(n)。

以下是我到目前为止所做的,但我不希望磁盘路径硬编码。

#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <IOKit/storage/IOCDMediaBSDClient.h>

int main () {
    // ------------------------------------
    //   Open Drive
    // ------------------------------------
    int fd = open("/dev/disk1",O_RDONLY);
    if (fd == -1) {
        printf("Error opening drive \n");
        exit(1);
    }

    // ------------------------------------
    //   Get Speed
    // ------------------------------------
    unsigned int speed;
    if (ioctl(fd,DKIOCCDGETSPEED,&speed)) {
        printf("Must not be a CD \n");
    }
    else {
        printf("CD Speed: %d KB/s \n",speed);
    }

    // ------------------------------------
    //   Close Drive
    // ------------------------------------
    close(fd);
    return 0;
}

1 个答案:

答案 0 :(得分:2)

您可能需要遍历/ dev中的磁盘条目,打开每个磁盘条目,然后使用其他一些ioctl()来识别它们的类型。

#include <stdio.h>
#include <stdlib.h>
#include <fcntl.h>
#include <IOKit/storage/IOCDMediaBSDClient.h>

int main( int argc, char *argv[])
{
    int i, fd;
    unsigned short speed;
    char disk[40];

    for (i = 0; i < 100; ++i)
    {
        sprintf( disk, "/dev/disk%u", i);
        fd = open( disk, O_RDONLY);
        if (fd != -1)
        {
            if (ioctl( fd, DKIOCCDGETSPEED, &speed))
            {
                printf( "%s is not a CD\n", disk);
            }
            else
            {
                printf( "%s CD Speed is %u KB/s\n", disk, speed);
            }
            close( fd);
        }
    }

    return 0;
}

在我的旧MacBook Pro上,DVD驱动器中没有磁盘,它告诉我disk0和disk1都不是CD驱动器。加载磁盘(并修复代码以使用无符号的短路速度),它将/ dev / disk2报告为速度为4234 KB / s的CD。