使用带有指向stdin的文件指针的fseek

问题描述 投票:10回答:3

根据命令行参数,我设置一个文件指针指向指定文件或stdin(用于管道)。然后我将这个指针传递给许多不同的函数来从文件中读取。这是获取文件指针的函数:

FILE *getFile(int argc, char *argv[]) {
    FILE *myFile = NULL;
    if (argc == 2) {
        myFile = fopen(argv[1], "r");
        if (myFile == NULL)
           fprintf(stderr, "File \"%s\" not found\n", argv[1]);
    }
    else
        myFile = stdin;
    return myFile;
}

当它指向stdin时,fseek似乎不起作用。通过这个,我的意思是我使用它,然后使用fgetc,我得到了意想不到的结果。这是预期的行为吗?如果是,我该如何移动到流中的不同位置?

例如:

int main(int argc, char *argv[]) {
    FILE *myFile = getFile(argc, argv); // assume pointer is set to stdin
    int x = fgetc(myFile); // expected result
    int y = fgetc(myFile); // expected result
    int z = fgetc(myFile); // expected result

    int foo = bar(myFile); // unexpected result

    return 0;
}

int bar(FILE *myFile) {
    fseek(myFile, 4, 0);
    return fgetc(myFile);
}
c file pointers stdin piping
3个回答
13
投票

是的,fseek无法在stdin上运行是完全正常的 - 它通常只能在磁盘文件上运行,或者类似的东西。

虽然它确实是一个POSIX的东西,但你通常可以使用if (isatty(fileno(myFile)))来获得一个非常好的想法,即搜索是否适用于特定文件。在某些情况下,isatty和/或fileno将有一个主要的下划线(例如,IIRC与微软的编译器一起提供的版本)。


2
投票

Fseek()基于lseek(),lseek手册页讨论了可能的错误,包括:

 [ESPIPE]           Fildes is associated with a pipe, socket, or FIFO.

如果stdin连接到伪tty,我相信它会有套接字行为。


0
投票

以下是有关fseek函数的ANSI标准中的相关条目:

对于文本流,偏移量应为零,或者offset应为先前成功调用与同一文件关联的流上的ftell函数返回的值,并且应该是SEEK_SET

所以,可能但有一些限制

© www.soinside.com 2019 - 2024. All rights reserved.