如何让NSTextField根据命令行参数的输出不断更新其值?

时间:2012-10-10 23:03:09

标签: objective-c macos command-line nstask

我正在尝试在Cbjective-C中创建一个小型rsync程序。它目前通过NSTask访问终端命令行,并将命令行的输出读取到显示在NSTextField中的字符串;但是,当我在一个非常大的文件(大约8 GB)上使用这个小程序时,它在RSYNC完成之后才会显示输出。我希望NSTextField在进程运行时不断更新。我有以下代码,我正在寻找想法!:

 -(IBAction)sync:(id)sender
{
    NSString *sourcePath = self.source.stringValue;
    NSString *destinationPath = self.destination.stringValue;

    NSLog(@"The source is %@. The destination is %@.", sourcePath, destinationPath);

    NSTask *task;
    task = [[NSTask alloc] init];
    [task setLaunchPath:@"/usr/bin/rsync"];

    NSArray *arguments;
    arguments = [NSArray arrayWithObjects: @"-rptWav", @"--progress", sourcePath, destinationPath, nil];
    [task setArguments: arguments];

    NSPipe *pipe;
    pipe = [NSPipe pipe];
    [task setStandardOutput: pipe];

       // [task setStandardInput:[NSPipe pipe]];

    NSFileHandle *file;
    file = [pipe fileHandleForReading];

    [task launch];

    NSData *data;
    data = [file readDataToEndOfFile];

    while ([task isRunning])
    {
        NSString *readString;
        readString = [[NSString alloc] initWithData: data encoding:NSUTF8StringEncoding];

        textView.string = readString;
        NSLog(@"grep returned:\n%@", readString);

    }

    }

1 个答案:

答案 0 :(得分:0)

好的,问题在于您从管道读取数据的方式。您正在使用:

NSData *data = [file readDataToEndOfFile];

这将读取子进程一次写入的所有内容,直到管道关闭(子进程终止时)。

您需要做的是一次读取一个角色并重建输出线。您还希望使用非阻塞模式,以便在没有要读取的数据时不会中断主UI线程(更好的是,这应该在后台线程中完成,以便主UI线程保持完全不中断)。