Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the correct way to prevent sleep on OS X? [duplicate]

Tags:

cocoa

osx-lion

Possible Duplicate:
How to programmatically prevent a Mac from going to sleep?

What is the correct method on the current version of OS X (10.7) for preventing sleep while an application or process is running?

In particular, is IOCancelPowerChange still (or did it ever) serve this purpose? I call IOCancelPowerChange in response to kIOMessageCanSystemSleep, but that doesn't do the trick.


Essentially the same question as the first part of this one has been asked before, but the documentation it points to is quite old and the answer was never accepted.

like image 362
orome Avatar asked Dec 10 '11 21:12

orome


People also ask

Will my Mac go to sleep while copying files?

This is because if your Mac is in the middle of an action such as copying files, it will not go entirely into sleep mode (e.g. your display may go to sleep, but your drives are still fully powered up for read/write purposes).

How do I stop my Mac from going to sleep 2021?

Keep your Mac from going to sleep automatically: Click Power Adapter, then select “Prevent your Mac from sleeping automatically when the display is off.” Put hard disks to sleep: Click Battery or Power Adapter, then select “Put hard disks to sleep when possible.”


1 Answers

IOCancelPowerChange continues to work but only for idle triggered sleep; it will not work for sleep triggered by the Finder's Sleep menu item, programmatically requested, or from a push of the power button.

Apple's Q&A1340 answers the question "Q: How can my application get notified when the computer is going to sleep or waking from sleep? How do I prevent sleep?"

Listing 2 of Q&A1340:

#import <IOKit/pwr_mgt/IOPMLib.h>

// kIOPMAssertionTypeNoDisplaySleep prevents display sleep,
// kIOPMAssertionTypeNoIdleSleep prevents idle sleep

//reasonForActivity is a descriptive string used by the system whenever it needs 
//  to tell the user why the system is not sleeping. For example, 
//  "Mail Compacting Mailboxes" would be a useful string.

//  NOTE: IOPMAssertionCreateWithName limits the string to 128 characters. 
CFStringRef* reasonForActivity= CFSTR("Describe Activity Type");

IOPMAssertionID assertionID;
IOReturn success = IOPMAssertionCreateWithName(kIOPMAssertionTypeNoDisplaySleep, 
                                    kIOPMAssertionLevelOn, reasonForActivity, &assertionID); 
if (success == kIOReturnSuccess)
{

    //Add the work you need to do without 
    //  the system sleeping here.

    success = IOPMAssertionRelease(assertionID);
    //The system will be able to sleep again. 
}

Note that you can only stop idle time sleep, not sleep triggered by the user.

For applications supporting Mac OS X 10.6 and later, use the new IOPMAssertion family of functions. These functions allow other applications and utilities to see your application's desire not to sleep; this is critical to working seamlessly with third party power management software.

like image 148
Graham Miln Avatar answered Dec 20 '22 05:12

Graham Miln