• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: Using NSPipe to get system command output
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: Using NSPipe to get system command output


  • Subject: Re: Using NSPipe to get system command output
  • From: Andy Lee <email@hidden>
  • Date: Mon, 13 Aug 2012 19:52:27 -0400

You're very welcome. Although I wonder if you could simply replace the do-while loop with a call to NSTask's waitUntilExit method.

--Andy

On Aug 13, 2012, at 7:42 PM, Charlie Dickman <email@hidden> wrote:

> Andy,
>
> THANK YOU SO MUCH!!
>
> I am glad my inquiry spawned some interest but you have taught me how to fish ;^)
>
> Thanks again
>
> On Aug 13, 2012, at 7:27 PM, Andy Lee wrote:
>
>> Apple seems to have pulled the ancient "Moriarity" example which demonstrates basic use of NSTask, but my cleanup of it should still work.
>>
>> <https://github.com/aglee/MoreArty>
>>
>> --Andy
>>
>> On Aug 13, 2012, at 6:42 PM, Kyle Sluder <email@hidden> wrote:
>>
>>> On Mon, Aug 13, 2012, at 02:17 PM, Charlie Dickman wrote:
>>>> I'm trying to get the output from a vm_stat command using the following
>>>> code. My app hangs in the [vmRead availableData] call as it should if
>>>> there is no data available but it never comes back. What am I doing
>>>> wrong? I have searched through the sample code on apples developer site
>>>> with no luck.
>>>>
>>>> 	NSPipe *vmPipe = [NSPipe pipe];
>>>> 	NSFileHandle *vmRead = [vmPipe fileHandleForReading];
>>>>
>>>> 	[vm setLaunchPath: @"/usr/bin/vm_stat"];	//	1 page = 4096 bytes
>>>> 	[vm setStandardOutput: vmPipe];
>>>> 	[vm launch];
>>>> 	NSData *vmData = nil;
>>>> 	int vmDataLength = 0;
>>>> 	do {
>>>> 		vmData = [vmRead availableData];
>>>> 		vmDataLength = [vmData length];
>>>> 	} while (vmDataLength != 0);
>>>
>>>
>>> You can't do this. You need to run the runloop.
>>>
>>> --Kyle Sluder
>>> _______________________________________________
>>>
>>> Cocoa-dev mailing list (email@hidden)
>>>
>>> Please do not post admin requests or moderator comments to the list.
>>> Contact the moderators at cocoa-dev-admins(at)lists.apple.com
>>>
>>> Help/Unsubscribe/Update your Subscription:
>>>
>>> This email sent to email@hidden
>>
>
> Charlie Dickman
> email@hidden
>
>
>

_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden

  • Follow-Ups:
    • Re: Using NSPipe to get system command output
      • From: Ken Thomases <email@hidden>
References: 
 >Using NSPipe to get system command output (From: Charlie Dickman <email@hidden>)
 >Re: Using NSPipe to get system command output (From: Kyle Sluder <email@hidden>)
 >Re: Using NSPipe to get system command output (From: Andy Lee <email@hidden>)
 >Re: Using NSPipe to get system command output (From: Charlie Dickman <email@hidden>)

  • Prev by Date: Re: Classes incompatible with weak references
  • Next by Date: Re: Using NSPipe to get system command output
  • Previous by thread: Re: Using NSPipe to get system command output
  • Next by thread: Re: Using NSPipe to get system command output
  • Index(es):
    • Date
    • Thread