2

我有一个简单的 Python 脚本,它询问您的姓名,然后将其吐出:

def main():
    print('Enter your name: ')
    for line in sys.stdin:
        print 'You entered: ' + line

很简单的东西!在 OS X 终端中运行它时,效果很好:

$ python nameTest.py 
Enter your name: 
Craig^D
You entered: Craig

但是,当尝试通过 运行此过程时NSTask只有在 Python 脚本中添加了额外的 flush() 调用时才会出现标准输出。

这就是我NSTask配置管道和管道的方式:

NSTask *_currentTask = [[NSTask alloc] init];
_currentTask.launchPath = @"/usr/bin/python";
_currentTask.arguments = [NSArray arrayWithObject:@"nameTest.py"];

NSPipe *pipe = [[NSPipe alloc] init];
_currentTask.standardOutput = pipe;
_currentTask.standardError = pipe;

dispatch_queue_t stdout_queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_BACKGROUND, 0);

__block dispatch_block_t checkBlock;

checkBlock = ^{
    NSData *readData = [[pipe fileHandleForReading] availableData];
    NSString *consoleOutput = [[NSString alloc] initWithData:readData encoding:NSUTF8StringEncoding];
    dispatch_sync(dispatch_get_main_queue(), ^{
        [self.consoleView appendString:consoleOutput];
    });
    if ([_currentTask isRunning]) {
        [NSThread sleepForTimeInterval:0.1];
        checkBlock();
    } else {
        dispatch_sync(dispatch_get_main_queue(), ^{
            NSData *readData = [[pipe fileHandleForReading] readDataToEndOfFile];
            NSString *consoleOutput = [[NSString alloc] initWithData:readData encoding:NSUTF8StringEncoding];
            [self.consoleView appendString:consoleOutput];
        });
    }
};

dispatch_async(stdout_queue, checkBlock);

[_currentTask launch];

但是在运行时NSTask,它是这样显示的(它最初是空白的,但在输入我的名字并按 CTRL+D 后,它会立即完成):

Craig^DEnter your name: 
You entered: Craig

所以,我的问题是:如何在不需要 Python 脚本中的额外 flush() 语句的情况下stdout从 my中读取?NSTask为什么Enter your name:提示在运行时不会立即出现NSTask

4

1 回答 1

5

当 Python 看到它的标准输出是一个终端时,它会安排sys.stdout在脚本从sys.stdin. 当您使用 运行脚本NSTask时,脚本的标准输出是管道,而不是终端。

更新

对此有一个特定于 Python 的解决方案。您可以将-u标志传递给 Python 解释器(例如_currentTask.arguments = @[ @"-u", @"nameTest.py"];),它告诉 Python 根本不要缓冲标准输入、标准输出或标准错误。你也可以PYTHONUNBUFFERED=1在进程的环境中设置来达到同样的效果。

原来的

适用于任何程序的更通用的解决方案使用所谓的“伪终端”(或历史上的“伪电传打字机”),我们将其简称为“pty”。(实际上,这就是终端应用程序本身所做的。它是一台罕见的 Mac 具有连接到串行端口的物理终端或电传打字机!)

每个 pty 实际上是一对虚拟设备:一个从设备和一个主设备。您写入主设备的字节,您可以从从设备读取,反之亦然。因此,这些设备更像是套接字(双向)而不是管道(单向)。此外,pty 还允许您设置终端 I/O 标志(或“termios”),以控制从站是否回显其输入,是一次传递一行还是一次传递一个字符等等。

openpty无论如何,您可以使用该功能轻松打开主/从对。这是一个小类别,您可以使用它使NSTask对象使用从属端作为任务的标准输入和输出。

NSTask+PTY.h

@interface NSTask (PTY)

- (NSFileHandle *)masterSideOfPTYOrError:(NSError **)error;

@end

NSTask+PTY.m

#import "NSTask+PTY.h"
#import <util.h>

@implementation NSTask (PTY)

- (NSFileHandle *)masterSideOfPTYOrError:(NSError *__autoreleasing *)error {
    int fdMaster, fdSlave;
    int rc = openpty(&fdMaster, &fdSlave, NULL, NULL, NULL);
    if (rc != 0) {
        if (error) {
            *error = [NSError errorWithDomain:NSPOSIXErrorDomain code:errno userInfo:nil];
        }
        return NULL;
    }
    fcntl(fdMaster, F_SETFD, FD_CLOEXEC);
    fcntl(fdSlave, F_SETFD, FD_CLOEXEC);
    NSFileHandle *masterHandle = [[NSFileHandle alloc] initWithFileDescriptor:fdMaster closeOnDealloc:YES];
    NSFileHandle *slaveHandle = [[NSFileHandle alloc] initWithFileDescriptor:fdSlave closeOnDealloc:YES];
    self.standardInput = slaveHandle;
    self.standardOutput = slaveHandle;
    return masterHandle;
}

@end

你可以像这样使用它:

NSTask *_currentTask = [[NSTask alloc] init];
_currentTask.launchPath = @"/usr/bin/python";
_currentTask.arguments = @[[[NSBundle mainBundle] pathForResource:@"nameTest" ofType:@"py"]];

NSError *error;
NSFileHandle *masterHandle = [_currentTask masterSideOfPTYOrError:&error];
if (!masterHandle) {
    NSLog(@"error: could not set up PTY for task: %@", error);
    return;
}

然后,您可以使用 读取任务并写入任务masterHandle

于 2012-11-13T05:07:57.720 回答