Java/C++ PC Standby Detect and Prevent
Introduction
This article shows how your Java (and C++) program can detect and refuse sleep/standby/hibernate requests made by the user or the system.
Background
I wrote an application that is fed by a special PCI card, and runs 24/7. We found that if the PC went into standby mode, the PCI card was falsely activated, which was really bad. There was no easy way to uniformly disable the sleep/standby/hibernate features in Windows XP. Therefore, I decided to use the Windows API to detect whether a standby request is made and refuse it. Luckily, the Win32 API has a message, called WM_POWERBROADCAST, that is sent to all applications when the PC wants to go into standby or hibernate mode. The win32 subsystem will abort the standby if you return BROADCAST_QUERY_DENY from this message handler.
By using this API, the enclosed code is able to detect whether the computer goes into standby mode and, through the utilization of JNI, notify the rest of the Java code about that event. Also, the code lets you allow or disallow the PC to enter standby mode.
Using the Code
To use the code from Java, simply instantiate a StandByDetector object and provide the constructor with a reference to a StandByRequestListener. The listener will be notified when a standby/hibernate request is made on the PC. Use the setAllowStandby() to tell the code whether or not you want to allow entering a standby. Remember that the DLL (enclosed) has to be in your java.library.path path. Here is an example:
StandByDetector sd=new StandByDetector(new StandByRequestListener() {
public void standByRequested() {
System.out.println("standby requested");
}
});
sd.setAllowStandby(false);
To compile and run the demo:
- Extract the ZIP file contents into c:\temp, preserving the ZIP dir structure.
- Open cmd and cd into temp. Then, issue the following on the command line:
- Then, to run the demo, issue on the command line:
- Now try to put the PC in standby: Task manager->Shut Down->Stand By.
- You will note that the cmd shell shows the message "standby requested" and the PC does not go into standby.
javac com\ha\common\windows\*.java
java -Djava.library.path=C:\temp\com\ha\common\windows -classpath c:\temp\com.ha.common.windows.StandByDetector

Comments
You crave some tomato basil and mozzarella. For indoor power, these slippers are as liven up and manueverable as sneakers.
Posted by Soaceddew on 04/20/2013 02:10amHas honourable released several mod color Let off Inneva Woven shoes, Nike recently with another way to lure shoes with distinguishable styling to all [url=http://northernroofing.co.uk/roofins.cfm]nike free[/url] eyes. This brings special edition Pardon Inneva Woven is a Chaste Name of works in the series, represents shoes Italian made the assurance. Latest Allowed Inneva Woven clouded and bawdy are readily obtainable in two color schemes, to hand-knit Woven vamp in addition to infiltrated Italy's [url=http://markwarren.org.uk/goodbuy.cfm]nike free run[/url] finest crafts, during the interval gives athletes arrange to the foot of relieve, the most important opportunity is the intent of Unused 5 configuration, barefoot be aware it will contribute to cannot be ignored. Nike Disburden Inneva Woven SP Pale-complexioned Characterization Order off on Walk 16 at outlets on all sides the [url=http://northernroofing.co.uk/roofins.cfm]nike free uk[/url] trade-mark on the shelves, and on bargain-priced in restricted tone, interested friends should settle fasten attention to Nike announced the news.
Reply