5

我想试试 splice 系统调用。我有这个功能 - 它应该将一个文件的内容复制到另一个文件:

static void test_splice( int in, int out ) {

        int i = 0, rcvd = 0;
        int filedes[2];
        off_t off = 0;

        if ( pipe( filedes ) < 0 ) {
                perror( "Kicha pipe" );
                exit( EXIT_FAILURE );
        }

        for ( i = 0; i < NUMLOOPS; ++i ) {

                if ( ( rcvd = splice( in, NULL, filedes[1], NULL, BUFSIZE, SPLICE_F_MORE | SPLICE_F_MOVE ) ) < 0 ) {
                        perror( "splice" );
                        exit( EXIT_FAILURE );
                }

                if ( splice( filedes[0], NULL, out, NULL, rcvd, SPLICE_F_MORE | SPLICE_F_MOVE ) < 0 ) {
                        perror( "splice" );
                        exit( EXIT_FAILURE );
                }
        }
}

在第一次迭代中对 splice 的第二次调用每次都返回 EINVAL (来自 perror 的无效参数) - 可能是什么原因?

4

2 回答 2

1

来自splice(2)

ERRORS
       ...    
       EINVAL Target  filesystem  doesn't  support  splicing;  target  file is
              opened in append mode; neither of the file descriptors refers to
              a pipe; or offset given for nonseekable device.
       ...    

OP 的评论表明他以附加模式打开了文件。

于 2016-05-29T02:46:00.190 回答
-1

我不知道这是否是最好的方法,但这对我有用:

http://vectrex.org.uk/mark/splicecopy.cpp

它创建一个线程来读取,另一个线程用于写入。这可能是不必要的。编写线程似乎只需要一次 splice() 调用,但读者在我的系统上大约每 64k 执行一次。

以上在 Fedora 13 x86_64 上进行了测试,似乎能够复制大(ish)文件。

于 2010-10-11T15:54:22.390 回答