Tagged Questions
3
votes
1answer
760 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 ...
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
7answers
914 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
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
125 views
How can you start a LaunchAgent for the first time without rebooting, when your code runs as a LaunchDaemon?
I have a LaunchDaemon. When it runs, it checks if SIMBL is installed. If SIMBL is not installed, it uses NSTask to run /usr/sbin/installer on the SIMBL.pkg.
SIMBL's postflight script then tries to ...
1
vote
1answer
137 views
NSTask's real-time output
I have a PHP script which has mutliple sleep() commands. I would like to execute it in my application with NSTask. My script looks like this:
echo "first\n"; sleep(1); echo "second\n"; sleep(1); echo ...
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
3answers
817 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 ...
0
votes
0answers
35 views
Prevent app on Mac OSX from stealing focus
Two application - A and B. Both are Cocoa apps.
A launches B as a child process (using NSTask) to do some work. B registers a signal handler and handles certain signals sent to the process. When the ...
0
votes
1answer
70 views
Can't pass command line arguments to an NSTask running the PHP CLI
Edit: [Solved] see below.
I'm launching PHP as an NSTask and trying to pass some command line options to it:
NSTask *php = [[NSTask alloc] init];
[php setLaunchPath: phpPath];
NSArray *args = ...
0
votes
1answer
116 views
How to run the “Purge” command through NSTask?
I'm making a free Mac app that is simply a wrapper over the "purge" command that can be run in Terminal. I'm tired of the ripoffs that are populating the Mac App Store and I just want to help people. ...
0
votes
0answers
60 views
Replacing Last Line in NSTextStorage
I'm rather new to Objective C, and I'm trying to put a simple NSTask wrapper around another coder's CLI application. I'm having a problem with output formatting: the original script uses output of the ...
0
votes
1answer
110 views
NSTask + calling NSLog in the task results in double printing messages to the console
I have a app that calls an NSTask, (I have written the NSTask and App code) and the NSTask calls NSLog at places where I want a line written out to the console.
Problem is that I see the console ...
0
votes
1answer
111 views
Running multiple NSTasks consecutively
I need to run multiple commands in sequence using NSTask and was wondering what would be a good way to tell if a task has finished so I can continue on to the next command. I'm using "sox" (which I am ...
0
votes
1answer
135 views
Wrapping exclude option in an rsync NSTask method
I am trying to wrap rsync in NSTask and use the exclude option to not sync hidden files (dot files). I know this works at the command line:
rsync -az --exclude='.*' source destination
My NSTask is ...
0
votes
0answers
133 views
NSTask with no dock icon for child processes
I am trying to create a simple launcher application on the Mac.
I am able to set LSUIElement = 1 on the parent application, but child processes launched from the application appear in the Dock when ...
0
votes
1answer
291 views
How to open a document using an application launched via NSTask?
I've grown tired of the built-in open Mac OS X command, mostly because it runs programs with your actual user ID instead of the effective user ID; this results in the fact sudo open Foo opens Foo with ...