App-XScreenSaver-DBus
view release on metacpan or search on metacpan
lib/App/XScreenSaver/DBus/Logind.pm view on Meta::CPAN
package App::XScreenSaver::DBus::Logind;
use v5.20;
use Moo;
use experimental qw(signatures postderef);
use curry;
use Net::DBus;
use IPC::Run;
use Log::Any;
our $VERSION = '1.0.6'; # VERSION
# ABSTRACT: implements the logind "inhibitor locks" and "session lock" protocols
has bus => ( is => 'lazy', builder => sub { Net::DBus->system() } );
has logind_srv => (
is => 'lazy',
builder => sub { shift->bus->get_service('org.freedesktop.login1') },
);
has logind_obj => (
is => 'lazy',
builder => sub { shift->logind_srv->get_object('/org/freedesktop/login1') },
);
has session_obj => (
is => 'lazy',
builder => sub($self) {
my $session_path = $self->logind_obj->GetSessionByPID($$);
return $self->logind_srv->get_object($session_path);
},
);
has inhibit_fd => ( is => 'rwp' );
has log => ( is => 'lazy', builder => sub { Log::Any->get_logger } );
sub start($self) {
$self->logind_obj->connect_to_signal(
'PrepareForSleep',
$self->curry::weak::_going_to_sleep,
);
$self->session_obj->connect_to_signal(
'Lock',
$self->curry::weak::_lock,
);
$self->session_obj->connect_to_signal(
'Unlock',
$self->curry::weak::_unlock,
);
$self->_inhibit();
return;
}
sub _inhibit($self) {
return if $self->inhibit_fd;
$self->_set_inhibit_fd(
$self->logind_obj->Inhibit(
'sleep',
'xscreensaver','locking before sleep',
'delay',
)
);
$self->log->debugf('got logind inhibit fd %d',$self->inhibit_fd);
return;
}
sub _uninhibit($self) {
return unless $self->inhibit_fd;
# logind/dbus gives us a file *descriptor* (i.e. a number),
# but `close` wants a file *handle*; this `open` creates the
# handle without opening extra descriptors
open my $fh, '+<&=', $self->inhibit_fd;
close $fh;
$self->_set_inhibit_fd(undef);
}
sub _going_to_sleep($self,$before) {
( run in 3.230 seconds using v1.01-cache-2.11-cpan-63c85eba8c4 )