From my main thread I call a selector using

[self performSelectorInBackground:@selector(startTask) withObject:nil];

This is the method startTask:

-(void)startTask{    
   NSTask *task = [[NSTask alloc] init];
   NSPipe *pipe = [[NSPipe alloc] init];
   NSFileHandle *fh = [pipe fileHandleForReading];

   NSArray *args = [NSArray arrayWithObjects:@"-z",iPAddress, [NSString stringWithFormat:@"%@",portNumber], nil];

   [task setLaunchPath:@"/usr/bin/nc"];
   [task setArguments:args];
   [task setStandardOutput:pipe];

   NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
   [nc removeObserver:self];
   [nc addObserver:self
          selector:@selector(dataReady:)
              name:NSFileHandleReadCompletionNotification
            object:fh];

   [task launch];
   [fh readInBackgroundAndNotify];
}

This should prevent NSTask from blocking the main thread (and the UI). But it doesn't. If I remove

[task launch];

The main thread doesn't get blocked. What am I doing wrong? o_O

(BTW dataReady just handles the data. It's not this method, that blocks...)

EDIT: I just found out, that I am not calling the selector from the main thread. I call it from a separate thread! Unfortunately I have to call it from that thread.

link|improve this question

Have a look at stackoverflow.com/questions/7676508/…, you're approach seemed to work in that case. – Damien Nov 28 '11 at 15:53
Please take a sample of your application while its main thread is blocked and edit your question to include the stack trace of the main thread. – Peter Hosey Nov 29 '11 at 7:54
feedback

2 Answers

up vote 3 down vote accepted

I don't know if this is the answer to your question, but you do have a fundamental issue:

The docs for readInBackgroundAndNotify say:

You must call this method from a thread that has an active run loop.

You are not doing that because startTask is on its own thread and you are not running a run loop on it.

link|improve this answer
It doesn't matter if I remove readInBackgroundAndNotify or not. The problem remains. But you are right. I should also chance that. I edited my question!!! I found out, that I am not calling the selector from the main thread. I call it from a separate thread! – Daniel Nov 28 '11 at 14:38
@Daniel: Yes, that's what JeremyP said. – Peter Hosey Nov 29 '11 at 7:54
I misunderstood the answer. That is indeed the solution. – Daniel Dec 1 '11 at 15:12
feedback

I'm not sure what the issue is but I suggest looking into NSOperationQueue.

NSOperationQueue *queue = [[NSOperationQueue alloc] init];
[queue addOperationWithBlock:^(void) {
   NSTask *task = [[NSTask alloc] init];
   NSPipe *pipe = [[NSPipe alloc] init];
   NSFileHandle *fh = [pipe fileHandleForReading];

   NSArray *args = [NSArray arrayWithObjects:@"-z",iPAddress, [NSString stringWithFormat:@"%@",portNumber], nil];

   [task setLaunchPath:@"/usr/bin/nc"];
   [task setArguments:args];
   [task setStandardOutput:pipe];

   NSNotificationCenter *nc = [NSNotificationCenter defaultCenter];
   [nc removeObserver:self];
   [nc addObserver:self
          selector:@selector(dataReady:)
              name:NSFileHandleReadCompletionNotification
            object:fh];

   [task launch];
}];
[queue autorelease];

Lemme know if you have any questions

In the documentation heres some info on NSOperationQueue just if you were wondering:

Operation queues usually provide the threads used to run their operations. In Mac OS X v10.6 and later, operation queues use the libdispatch library (also known as Grand Central Dispatch) to initiate the execution of their operations. As a result, operations are always executed on a separate thread, regardless of whether they are designated as concurrent or non-concurrent operations.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.