0

我是 Objective-C 的新手,所以如果我遗漏了什么,请原谅我。但我们都必须从某个地方开始:)

我有一个从另一个开源项目获得的代码片段,它执行一个命令并将结果传递给另一个方法。我需要做的是听取打印到标准输出的每一行新行并对每一行做一些事情。

我正在使用的代码片段如下:

    NSMutableArray *args  = [NSMutableArray array];

    NSString *input = [details valueForKey:@"input"];

    for (NSString *i in [input componentsSeparatedByCharactersInSet:[NSCharacterSet whitespaceCharacterSet]]) {
        [args addObject:i];
    }

    NSTask *scriptTask = [NSTask new];
    NSPipe *outputPipe = [NSPipe pipe];

    if ([_NSFileManager() isExecutableFileAtPath:scriptPath] == NO) {
        NSArray *chmodArguments = @[@"+x", scriptPath];

        NSTask *chmod = [NSTask launchedTaskWithLaunchPath:@"/bin/chmod" arguments:chmodArguments];

        [chmod waitUntilExit];
    }

    [scriptTask setStandardOutput:outputPipe];
    [scriptTask setLaunchPath:scriptPath];
    [scriptTask setArguments:args];

    NSFileHandle *filehandle = [outputPipe fileHandleForReading];

    [scriptTask launch];
    [scriptTask waitUntilExit];

    NSData *outputData = [filehandle readDataToEndOfFile];

    NSString *outputString  = [NSString stringWithData:outputData encoding:NSUTF8StringEncoding];

    if (NSObjectIsNotEmpty(outputString)) {
        [self.world.iomt inputText:outputString command:IRCPrivateCommandIndex("privmsg")];
    }

因此,与其等待过程完成然后对结果做一些事情,我需要等待命令打印到标准输出的每一行新行。

我的背景主要是 web 开发,所以我想如果你使用 Node.js 和事件发射器,我的目标会类似于以下内容:

task = new Task("ls");

task.addListener("newline", function(data) {
    somethingElse("sendmsg", data);
});

task.run();

希望您了解我要实现的目标。谢谢!

4

1 回答 1

0

您可以做的是向 NSFileHandle 添加一个观察者,以便在它读取某些内容时通知您。

例子:

[fileHandler readInBackgroundAndNotify];
//Need to set NSTask output pipes
[self.task setStandardOutput: outputPipe];
[self.task setStandardError: outputPipe];

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(readFromTask:) name:NSFileHandleReadCompletionNotification object:fileHandler];

-(void)readFromTask:(NSNotification *)aNotifcation;
    {
        NSData *data = [[aNotifcation userInfo] objectForKey: NSFileHandleNotificationDataItem];
        if (data != 0) {
            NSString *text = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

                // Do something with the text

            [text release];
            [[aNotifcation object] readInBackgroundAndNotify];  
        }
    }

然后,您可以将通知添加到任务中以指示其何时完成,以便您进行清理。

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(taskEnded:) name:NSTaskDidTerminateNotification object:task];



- (void)taskEnded:(NSNotification *) aNotifcation
{
    NSData *data = [[aNotifcation userInfo] objectForKey: NSFileHandleNotificationDataItem];
    if (data != 0) {
        NSString *text = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

    [text release];

}

[self.task release];

}

因此,从您的代码中,您可以删除:

 [scriptTask waitUntilExit];

并将数据处理移动到通知中。

NSData *outputData = [filehandle readDataToEndOfFile];

NSString *outputString  = [NSString stringWithData:outputData encoding:NSUTF8StringEncoding];

if (NSObjectIsNotEmpty(outputString)) {
    [self.world.iomt inputText:outputString command:IRCPrivateCommandIndex("privmsg")];
}

这是一个粗略的想法,有一个很好的帖子

http://www.cocoabuilder.com/archive/cocoa/306145-nstask-oddity-with-getting-stdout.html

于 2012-10-27T12:39:30.783 回答