2

首先,在 Xcode 中调试和运行时,一切都按预期工作。

但是当我尝试“共享”我的应用程序时,即进行发布构建时,我的 NSTask 不会输出任何标准输出,而标准错误被输出。这怎么可能?

我的代码

- (id)initWithWindow:(NSWindow *)window {
    self = [super initWithWindow:window];
    if (self) {
        // Initialization code here.
    }
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(readPipe:) name:NSFileHandleReadCompletionNotification object:nil];
    return self;
}


-(void) watchFile:(NSNotification *)notification {
        NSString *path = [[notification userInfo] valueForKey:@"path"];

        task = [[NSTask alloc] init];
        [task setLaunchPath:@"/usr/bin/compass"];
        [task setCurrentDirectoryPath:path];

        NSArray *arguments;
        arguments = [NSArray arrayWithObjects: @"watch",@"--boring", nil];
        [task setArguments: arguments];

        NSPipe *outPipe, *errPipe;
        outPipe = [NSPipe pipe];
        errPipe = [NSPipe pipe];
        [task setStandardOutput: outPipe];
        [task setStandardError: errPipe];
        [task setStandardInput: [NSPipe pipe]];

        standardHandle = [outPipe fileHandleForReading];
        [standardHandle readInBackgroundAndNotify];

        errorHandle = [errPipe fileHandleForReading];
        [errorHandle readInBackgroundAndNotify];

        [self setSplitterPosition:0.0f];

        [task launch];

    }

-(void)readPipe:(NSNotification *)notification {
        NSLog(@"reading pipe");
        NSData *data;
        NSString *text;

        if(!([notification object] == standardHandle) && !([notification object] == errorHandle)) {
            return;
        } 

        data = [[notification userInfo] objectForKey:NSFileHandleNotificationDataItem];
        text = [[NSString alloc] initWithData:data encoding:NSASCIIStringEncoding];

        if ([data length] == 0) {
            //error
            [self setSplitterPosition:150.0f];
            return;
        }

        [terminalViewController updateTerminal:text];    
        if(![text isEqualToString:@"\n"]) [self growlAlert:text title:@"Compapp"];

        [text release];
        if(task) [[notification object] readInBackgroundAndNotify];
    }
4

3 回答 3

0

/usr/bin/compasscompass不是 OSX 标准安装中安装的二进制文件(我的 Mac 上没有任何二进制文件/usr/bin

因此,当您的应用程序在另一台尚未/usr/bin/compass安装的 Mac 上运行并且您尝试运行此任务时,它找不到它并且仅在 stderr 上输出一些错误,这似乎很合乎逻辑。

于 2011-11-24T09:27:13.973 回答
0

如果您的意思是在发布后尝试调试,则需要创建一个名为 Entitlements.plist 的文件并设置 Can be debugged before you build and archive。

于 2011-11-24T09:27:57.357 回答
0

如果这对您来说仍然是一个悬而未决的问题,请查看我在此链接上发布的答案:如何使用确定的 NSProgressIndicator 来检查 NSTask 的进度?- 可可

它为创建异步 NSTask 和从标准输出或标准错误中读取提供了一个很好的模板。

于 2012-02-07T01:09:46.717 回答