2

まず第一に、Xcode でデバッグおよび実行すると、すべてが期待どおりに機能します。

しかし、アプリを「共有」しようとすると、つまりリリース ビルドを作成すると、standardErrors が出力されている間、NSTask は standardOutput を出力しません。そんなことがあるものか?

私のコード

- (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

これがまだ未解決の問題である場合は、このリンクに投稿した回答を確認してください。決定的なNSProgressIndicatorを使用してNSTaskの進行状況を確認するにはどうすればよいですか。- ココア

非同期NSTaskを作成し、標準出力または標準エラーから読み取るための優れたテンプレートを提供します。

于 2012-02-07T01:09:46.717 に答える
0

/usr/bin/compassOSX の標準インストールにインストールされているバイナリではありません (私の Maccompassにはバイナリという名前はありません)。/usr/bin

/usr/bin/compassしたがって、アプリが別の Mac (インストールされていない) で実行されている場合、このタスクを実行しようとすると、それが見つからず、stderr にいくつかのエラーしか出力されないことは非常に論理的です。

于 2011-11-24T09:27:13.973 に答える
0

リリース後にデバッグしようとしている場合は、Entitlements.plist というファイルを作成し、ビルドしてアーカイブする前に Can be debugged を設定する必要があります。

于 2011-11-24T09:27:57.357 に答える