Tagged Questions

6
votes
1answer
169 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
240 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
137 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
761 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
159 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
119 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
164 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
139 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
258 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
565 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
348 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
916 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
1answer
25 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
2answers
84 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
82 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
2answers
93 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
41 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
208 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
197 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
159 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
254 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
40 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
84 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
569 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
216 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
320 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
195 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
298 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
282 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
445 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
279 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
714 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
276 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
217 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
331 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
818 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
41 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
1answer
41 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
2answers
35 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 ...
0
votes
1answer
53 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
44 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
55 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
43 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
2answers
93 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 ...
0
votes
2answers
57 views

Cocoa - Add some bytes at the end of a file

I'm developing a Cocoa app that has to execute some terminal commands. One of these looks like: printf "\xc5\x20\x00\x00" >> aFile.txt I tried with NSTask (but I'm not sure how to split the ...
0
votes
0answers
54 views

Starting a C++ service from Cocoa application

I looked at NSTask and an example for executing shell commands asynchronously. I did use NSTask to start my C++ service and the service does look like it is running. However, the service is ...
0
votes
1answer
123 views

How to execute shell-command “ping” and get result into string in Objective-C/Cocoa?

I tried this code NSTask *task; task = [[NSTask alloc] init]; [task setLaunchPath: @"/usr/bin/ping"]; NSArray *arguments; arguments = [NSArray arrayWithObjects: @"-c", @"3",@"stackoverfow.com", ...
0
votes
0answers
76 views

How do I check for NSFileHandle has data available?

I'm working with NSTask, configured with 3 NSPipe, and want to read from standardOutput and standardError. I do it inside while - 1st for stdout, next for stderr. I can't use readInBackgroundAndNotify ...

1 2