I want an event when mac/linux machine goes to sleep and wakeup. Can any one please suggest a solution using java which can detect machine lock and unlock state.
I have tried running some command lines using java which gives a output which shows screen saver status but that process is not reliable because it varies from os versions.
Command that i'm firing for linux is
gnome-screensaver-command -q | grep -q 'is active'
And for mac is
echo $((`ioreg -n IODisplayWrangler | grep -i IOPowerManagement | perl -pe 's/^.*DevicePowerState\\\"=([0-9]+).*$/\\1/'`))
Ideally, you want Desktop.addAppEventListener. Using that, no native commands are needed:
However, if we look at gtk3_interface.c in the JDK source, and search for
ADD_SUPPORTED_ACTION
in that file, it appears the only supported desktop actions in Linux and Unix are open, browse, and mail.In that case, external commands seem like the only option. (I would prefer
upower --monitor
over gnome-screensaver-command.)You should not use grep or perl. You don’t need them. You have Java. Java has a full featured regex package which can do everything grep can do and most of the things perl can do: