Tagged Questions

6
votes
1answer
183 views

NSTask and Git — Permissions issues

In my Cocoa application I'm trying to use NSTask to run some basic Git commands. Whenever I run a command that requires permissions (SSH keys) to access a remote (e.g. git push, git pull), it fails ...
6
votes
3answers
245 views

Ensure a subprocess is dead in Cocoa

I'm writing an application that kicks off a subprocess running a simple web server. I am using NSTask and communicating with it with pipes, and everything seems more or less fine. However, if my ...
3
votes
1answer
150 views

NSTask blocking the main thread

I'm using NSTask, but when I launch the task it blocks the main thread (so I can't update it) until the task ends. This is my code: NSString *hostsforping = @"google.es"; pingdata = [[NSTask ...
3
votes
1answer
820 views

How can I reload the com.apple.systemuiserver preferences into the SystemUIServer application?

For my Mac OSX application, I have a feature that removes the system clock in the upper right hand corner of the screen when a button is clicked. The preferences that control which system menus are ...
3
votes
3answers
1k views

Obtaining admin privileges to delete files using rm from a Cocoa app

I am making a small app that deletes log files. I am using an NSTask instance which runs rm and srm (secure rm) to delete files. I want to be able to delete files in: /Library/Logs ~/Library/Logs ...
2
votes
1answer
193 views

How to open pdf/jpg in Preview by using NSTask on Lion?

I have following code working well on Snow Leopard. It opens a file stored in temporary directory with preferred application. CFURLRef prefAppUrl = nil; ...
2
votes
2answers
128 views

NSTask: How to get context upon conclusion since no userInfo dictionary is supplied?

I'm trying to zip files using the command-line utility through NSTask. pseudocode: controller: init: register_self_as_observer_of_nstask_notifications startZip(file): file = ...
2
votes
1answer
181 views

Keep a NSTask Session Running - Cocoa

I run a simple grep command in my Cocoa app like so: NSTask *task; task = [[NSTask alloc] init]; [task setLaunchPath: @"/usr/bin/grep"]; NSArray *arguments; arguments = [NSArray arrayWithObjects: ...
2
votes
2answers
145 views

NSTask executed only once

I'm having trouble executing different NSTask's. Same launchPath, different arguments. I have a class who's instances administer own NSTask objects and depending on arguments those instances were ...
2
votes
1answer
262 views

NSTask or NSThread?

I have some code that is attached to an NSTimer. Around 5 times every second, it interacts with another application (by emulating keystrokes) and when appropriate spits out an NSNotification, that is ...
2
votes
1answer
574 views

NSNotification and Multithreading

I'm trying to get the notification NSTaskDidTerminateNotification in my multithreaded app but I can't get it working. It does seem to work when I tested it on a single threaded app. In init I have ...
2
votes
3answers
354 views

NSTask returning HTTP Headers

I'm running /usr/bin/perl or /usr/bin/php via an NSTask and want to retrieve the HTTP headers of the program. I've properly formatted the environment (Perl requires env vars to be prefixed with ...
2
votes
7answers
938 views

Problems with NSTask in OS X 10.6 Snow Leopard

Has anyone else seen or heard of any issues with NSTask in 10.6? This code worked fine yesterday, and is not working today. NSTask *task = [converter task]; [task waitUntilExit]; NSLog(@"Task did ...
1
vote
2answers
43 views

Is it possible to set an NSTask-owned window front and key?

I'm working on a Mac app that will optionally provide the ability to install some extra software that's in apple package format. This package requires elevated (root) privileges to install, and ...
1
vote
4answers
97 views

How to use a determinate NSProgressIndicator to check on the progress of NSTask? - Cocoa

What I have is NSTask running a long premade shell script and I want the NSProgressIndicator to check on how much is done. I've tried many things but just can't seem to get it to work. I know how to ...
1
vote
2answers
121 views

How to run a shell command in cocoa and get output?

After repeated searching I have not found an elegant solution to this issue: how to run a shell command in obj-c and get it's output. I have read many questions regarding this, but they all fail to ...
1
vote
2answers
91 views

NSTask blocks main thread

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 ...
1
vote
3answers
120 views

NSTask only returning standardError in release build

First of all, when debugging and running in Xcode everything works as expected. But when I try to "share" my app, i.e. make a release build, my NSTask won't output any standardOutput while ...
1
vote
1answer
49 views

Sending ETX to NSTask

I have an NSTask that's executing another program I wrote. In that command line program, it expects the ETX (control-C, or ASCII value 3) to pause one of its processes and call another function. How ...
1
vote
1answer
218 views

executing NSTask in the background

I'm executing a shell script using NSTask but the problem is that the shell script is one of those scripts that keeps running until you press control+c. It starts up fine but then my mac application ...
1
vote
1answer
211 views

NSTask character output to NSTextField unbuffered as continuous stream

What I want to accomplish is to start a command line (CL) task (wrapped NSTask) and pipe (NSPipe) the character output through an NSTextField label in my UI, in real-time as a stream of characters. ...
1
vote
1answer
173 views

Pass data into a tool's stdin using NSTask

Let's say I have some tool that, at some point in its execution, asks for user input. For example, it might ask for name and address. At another point it might ask for a password (and retyping of the ...
1
vote
1answer
268 views

Convert NSTask “/bin/sh -c” command into proper pipeline code

Can someone help me convert the following code into code that instead has two NSTasks for "cat" and "grep", showing how the two can be connected together with pipes? I suppose I would prefer the ...
1
vote
0answers
48 views

Determine which signal uncaught by terminated child process

I have a Mac OS X app (Cocoa), which spawns a C++ console helper app to do some work. The GUI spawns the helper via NSTask, and they communicate with each other via named pipes. This is all good. ...
1
vote
1answer
87 views

Create NSTask for gdb

I'm trying to create an NSTask that uses GDB to attach to a program, but my program just freezes after launching the task. Is this possible to do? Here is the code I'm using: NSTask *task = [NSTask ...
1
vote
3answers
585 views

NSTask waitUntilExit hanging app on jailbroken iOS

So I've got NSTask to run a script which generates a list of something, into a txt, which I read from. But if I use my current code (below), the alert pops up before the NSTask is finished, thus ...
1
vote
3answers
223 views

NSTask Output Formatting

I'm using an NSTask to grab the output from /usr/bin/man. I'm getting the output but without formatting (bold, underline). Something that should appear like this: Bold text with underline (note the ...
1
vote
2answers
336 views

NSTask Does Not Terminate

I'm trying to use NSTask to run the UNIX 'apropos' command. Here's my code: NSTask *apropos = [[NSTask alloc] init]; NSPipe *pipe = [[NSPipe alloc] init]; [apropos setLaunchPath:@"/usr/bin/apropos"]; ...
1
vote
2answers
201 views

NSTask problem with 'cat' command

I try concatenating files using the cat command. When I use this in the terminal, everything works fine : cat /Users/Home/Desktop/test.mp3* > test.mp3 Trying to reproduce this using an NSTask, ...
1
vote
2answers
310 views

Catch credential needed with NSTask and rsync

Fist post for a french developer! I'm trying to create a simple synchronization using rsync and objective-c. So I used NSTask like that : NSTask *task = [[NSTask alloc] init]; [task ...
1
vote
1answer
298 views

NSTask with bash script problem

For example, i have this simple bash script: #!/bin/sh cd $1; And this cocoa wrapper for it: NSTask *cd = [[NSTask alloc] init]; NSString *testFolder = [NSString ...
1
vote
3answers
463 views

How would I run an .sh file using NSTask and get its output?

I need to run an .sh file and get its output. I need to see the setup of the file as well. The .sh file simply runs a java app through terminal. Any ideas? I'm truly stuck on this..... Elijah The ...
1
vote
2answers
289 views

Why does an autoreleased NSTask block the runloop on an NSOperation thread indefinitely?

I've run into an while trying to launch an NSTask from inside an NSOperation. Here's a very simple app I've put together to showcase the problem. When you click the button, an NSOperation is queued. ...
1
vote
3answers
777 views

NSTask launch path not accessible

I am using the following code in my Cocoa project to call a script I made. The script is in the same folder as the project and even shows up under the "Resources" folder in XCode. The proper path is ...
1
vote
3answers
294 views

Saving System Profiler info in a .spx file using NSTask

In Cocoa, I am trying to implement a button, which when the user clicks on will capture the System profiler report and paste it on the Desktop. Code NSTask *taskDebug; NSPipe *pipeDebug; taskDebug ...
1
vote
1answer
222 views

Program structure regarding NSTask

I want to run an unknown amount (unknown at compile time) of NSTasks and I want to run an unknown amount (again, at compile time, max. 8) of them simultaneously. So basically I loop through a list of ...
1
vote
2answers
337 views

Ignoring user input while waiting for a task - Objective-C

I have an app with a button 'convert'. When I click this button, the app starts a new process using NSTask and then greys out the button until the process finishes. My problem is, the app saves any ...
1
vote
3answers
845 views

Working around NSFileHandle NSTask blocking when passing large amounts of data

I've got a bit of code that handles exporting data from my application. It takes in an NSString full of XML and runs it through a PHP script to generate HTMl, RTF, etc. It works well unless a user ...
1
vote
4answers
2k views

NSTask not picking up $PATH from the user's environment

I don't know why this method returns a blank string: - (NSString *)installedGitLocation { NSString *launchPath = @"/usr/bin/which"; // Set up the task NSTask *task = [[NSTask alloc] ...
0
votes
0answers
38 views

Launching a child process from a Cocoa app

What is the best way to launch a child process from a Cocoa application. The thing I really need to ensure is that all child processes terminate when the parent application quits. I'm more than ...
0
votes
1answer
30 views

Sandbox with NSTask

I have sandboxing enabled and use /sbin/ping with NSTask: [task setLaunchPath:@"/sbin/ping"]; [task setArguments:[NSArray arrayWithObjects:@"-c10", iPAddress, nil]]; Everything works great and I ...
0
votes
1answer
27 views

How to embed an executable in my project

I would like to embed a command-line executable in my Xcode/Cocoa project, to then start it with NSTask. Which path should I use in the setLaunchPath ? Thanks !
0
votes
1answer
22 views

NSTask to retrieve the output of an external command stopped woking on Lion

The following code was working fine until I upgraded to OSX Lion. It called an external command and saved the output into a NSString. I have no idea why it stopped working. Any ideas? -(NSString *) ...
0
votes
0answers
53 views

AppleScript keystroke in cocoa / obj-c application

I create this applescript (logout.scpt) which close active user session : tell application "System Events" to keystroke "q" using {command down, option down, shift down} In my cocoa app, I have a ...
0
votes
2answers
84 views

Getting data from NSTask in real-time using notifications doesn't work

I got a Cocoa command-line program in which I try to run NSTask program (tshark to monitor network) and get data from it in real-time. So I make a NSFileHandle , call ...
0
votes
1answer
66 views

NSTask 'launch path not accessible'

My application requires a dylib file to be in /usr/lib/. If it is not there, the application copies the dylib to /usr/lib/ from the application resources directory. To do this, I use a helper tool, ...
0
votes
1answer
51 views

How to Check FTP Connection via NSTask?

I want to write a cocoa application that checks if my ftp server is still up and running. So far I learned that CFFTP could be used but this is not object oriented code so a no go for me. Also some ...
0
votes
3answers
70 views

NSTask and arguments when running command line tools

How would I pass arguments (host in this case) to NSTask in this code? It does not accept the host NSString. If I pass the host value with the ping, for e.g.. [NSArray arrayWithObjects:@"-c",@"ping ...
0
votes
1answer
57 views

Send value from NSTextField to constantly running NSTask

There have been a couple of NSTask related questions, but after paging through them I still have no idea what to do. I'm writing a frontend for a java server in Cocoa, launched by java -Xmx1024M ...
0
votes
3answers
169 views

readInBackgroundAndNotify method not updating until NSTask complete [Updated]

So I am trying to run a NSTask in a background thread and display its output in a NSTextview that is on a NSPanel attached to my window ( Preference Pane ) using readInBackgroundAndNotify It does not ...

1 2