2010-03-13 17:11:09 +01:00
|
|
|
|
package AnyEvent::I3;
|
|
|
|
|
# vim:ts=4:sw=4:expandtab
|
|
|
|
|
|
|
|
|
|
use strict;
|
|
|
|
|
use warnings;
|
|
|
|
|
use JSON::XS;
|
|
|
|
|
use AnyEvent::Handle;
|
|
|
|
|
use AnyEvent::Socket;
|
|
|
|
|
use AnyEvent;
|
2010-03-22 21:37:44 +01:00
|
|
|
|
use Encode;
|
2012-07-11 08:58:59 +02:00
|
|
|
|
use Scalar::Util qw(tainted);
|
2017-09-13 16:39:44 +02:00
|
|
|
|
use Carp;
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
|
|
AnyEvent::I3 - communicate with the i3 window manager
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
2017-08-19 19:06:23 +02:00
|
|
|
|
our $VERSION = '0.18';
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
=head1 VERSION
|
|
|
|
|
|
2017-08-19 19:06:23 +02:00
|
|
|
|
Version 0.18
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
|
|
This module connects to the i3 window manager using the UNIX socket based
|
|
|
|
|
IPC interface it provides (if enabled in the configuration file). You can
|
|
|
|
|
then subscribe to events or send messages and receive their replies.
|
|
|
|
|
|
2010-03-13 18:17:12 +01:00
|
|
|
|
use AnyEvent::I3 qw(:all);
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
2012-07-09 15:49:16 +02:00
|
|
|
|
my $i3 = i3();
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
2010-03-22 23:23:07 +01:00
|
|
|
|
$i3->connect->recv or die "Error connecting";
|
2010-03-13 17:11:09 +01:00
|
|
|
|
say "Connected to i3";
|
|
|
|
|
|
2010-03-13 18:17:12 +01:00
|
|
|
|
my $workspaces = $i3->message(TYPE_GET_WORKSPACES)->recv;
|
2010-03-13 17:11:09 +01:00
|
|
|
|
say "Currently, you use " . @{$workspaces} . " workspaces";
|
|
|
|
|
|
2010-03-22 23:23:07 +01:00
|
|
|
|
...or, using the sugar methods:
|
|
|
|
|
|
|
|
|
|
use AnyEvent::I3;
|
|
|
|
|
|
2011-09-26 20:25:38 +02:00
|
|
|
|
my $workspaces = i3->get_workspaces->recv;
|
2010-03-22 23:23:07 +01:00
|
|
|
|
say "Currently, you use " . @{$workspaces} . " workspaces";
|
|
|
|
|
|
2012-08-05 17:31:07 +02:00
|
|
|
|
A somewhat more involved example which dumps the i3 layout tree whenever there
|
|
|
|
|
is a workspace event:
|
|
|
|
|
|
|
|
|
|
use Data::Dumper;
|
|
|
|
|
use AnyEvent;
|
|
|
|
|
use AnyEvent::I3;
|
|
|
|
|
|
|
|
|
|
my $i3 = i3();
|
|
|
|
|
|
|
|
|
|
$i3->connect->recv or die "Error connecting to i3";
|
|
|
|
|
|
|
|
|
|
$i3->subscribe({
|
|
|
|
|
workspace => sub {
|
|
|
|
|
$i3->get_tree->cb(sub {
|
|
|
|
|
my ($tree) = @_;
|
|
|
|
|
say "tree: " . Dumper($tree);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
})->recv->{success} or die "Error subscribing to events";
|
|
|
|
|
|
|
|
|
|
AE::cv->recv
|
|
|
|
|
|
2010-03-13 17:11:09 +01:00
|
|
|
|
=head1 EXPORT
|
|
|
|
|
|
|
|
|
|
=head2 $i3 = i3([ $path ]);
|
|
|
|
|
|
2012-07-09 15:49:16 +02:00
|
|
|
|
Creates a new C<AnyEvent::I3> object and returns it.
|
|
|
|
|
|
|
|
|
|
C<path> is an optional path of the UNIX socket to connect to. It is strongly
|
|
|
|
|
advised to NOT specify this unless you're absolutely sure you need it.
|
|
|
|
|
C<AnyEvent::I3> will automatically figure it out by querying the running i3
|
|
|
|
|
instance on the current DISPLAY which is almost always what you want.
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
=head1 SUBROUTINES/METHODS
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
2010-03-22 21:50:41 +01:00
|
|
|
|
use Exporter qw(import);
|
2010-03-13 17:11:09 +01:00
|
|
|
|
use base 'Exporter';
|
|
|
|
|
|
|
|
|
|
our @EXPORT = qw(i3);
|
|
|
|
|
|
2017-09-17 15:25:00 +02:00
|
|
|
|
use constant TYPE_RUN_COMMAND => 0;
|
2010-03-13 18:17:12 +01:00
|
|
|
|
use constant TYPE_COMMAND => 0;
|
|
|
|
|
use constant TYPE_GET_WORKSPACES => 1;
|
|
|
|
|
use constant TYPE_SUBSCRIBE => 2;
|
2010-03-19 22:35:19 +01:00
|
|
|
|
use constant TYPE_GET_OUTPUTS => 3;
|
2010-11-21 21:52:43 +01:00
|
|
|
|
use constant TYPE_GET_TREE => 4;
|
2011-09-26 20:25:59 +02:00
|
|
|
|
use constant TYPE_GET_MARKS => 5;
|
2011-10-13 00:26:04 +02:00
|
|
|
|
use constant TYPE_GET_BAR_CONFIG => 6;
|
2012-08-05 17:31:22 +02:00
|
|
|
|
use constant TYPE_GET_VERSION => 7;
|
2017-08-19 17:29:03 +02:00
|
|
|
|
use constant TYPE_GET_BINDING_MODES => 8;
|
|
|
|
|
use constant TYPE_GET_CONFIG => 9;
|
2017-09-24 15:40:30 +02:00
|
|
|
|
use constant TYPE_SEND_TICK => 10;
|
2018-03-30 21:06:18 +02:00
|
|
|
|
use constant TYPE_SYNC => 11;
|
2010-03-13 18:17:12 +01:00
|
|
|
|
|
|
|
|
|
our %EXPORT_TAGS = ( 'all' => [
|
2017-09-17 15:25:00 +02:00
|
|
|
|
qw(i3 TYPE_RUN_COMMAND TYPE_COMMAND TYPE_GET_WORKSPACES TYPE_SUBSCRIBE TYPE_GET_OUTPUTS
|
2017-08-19 17:29:03 +02:00
|
|
|
|
TYPE_GET_TREE TYPE_GET_MARKS TYPE_GET_BAR_CONFIG TYPE_GET_VERSION
|
2018-03-30 21:06:18 +02:00
|
|
|
|
TYPE_GET_BINDING_MODES TYPE_GET_CONFIG TYPE_SEND_TICK TYPE_SYNC)
|
2010-03-13 18:17:12 +01:00
|
|
|
|
] );
|
|
|
|
|
|
|
|
|
|
our @EXPORT_OK = ( @{ $EXPORT_TAGS{all} } );
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
my $magic = "i3-ipc";
|
|
|
|
|
|
|
|
|
|
# TODO: auto-generate this from the header file? (i3/ipc.h)
|
|
|
|
|
my $event_mask = (1 << 31);
|
|
|
|
|
my %events = (
|
|
|
|
|
workspace => ($event_mask | 0),
|
2010-03-19 22:35:19 +01:00
|
|
|
|
output => ($event_mask | 1),
|
2012-09-22 13:11:08 +02:00
|
|
|
|
mode => ($event_mask | 2),
|
2013-02-18 11:01:04 +01:00
|
|
|
|
window => ($event_mask | 3),
|
2014-10-03 09:39:10 +02:00
|
|
|
|
barconfig_update => ($event_mask | 4),
|
|
|
|
|
binding => ($event_mask | 5),
|
2016-05-06 08:44:28 +02:00
|
|
|
|
shutdown => ($event_mask | 6),
|
2017-09-24 15:40:30 +02:00
|
|
|
|
tick => ($event_mask | 7),
|
2010-03-23 02:04:28 +01:00
|
|
|
|
_error => 0xFFFFFFFF,
|
2010-03-13 17:11:09 +01:00
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
sub i3 {
|
|
|
|
|
AnyEvent::I3->new(@_)
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-05 17:31:22 +02:00
|
|
|
|
# Calls i3, even when running in taint mode.
|
|
|
|
|
sub _call_i3 {
|
|
|
|
|
my ($args) = @_;
|
|
|
|
|
|
|
|
|
|
my $path_tainted = tainted($ENV{PATH});
|
|
|
|
|
# This effectively circumvents taint mode checking for $ENV{PATH}. We
|
|
|
|
|
# do this because users might specify PATH explicitly to call i3 in a
|
|
|
|
|
# custom location (think ~/.bin/).
|
|
|
|
|
(local $ENV{PATH}) = ($ENV{PATH} =~ /(.*)/);
|
|
|
|
|
|
|
|
|
|
# In taint mode, we also need to remove all relative directories from
|
|
|
|
|
# PATH (like . or ../bin). We only do this in taint mode and warn the
|
|
|
|
|
# user, since this might break a real-world use case for some people.
|
|
|
|
|
if ($path_tainted) {
|
|
|
|
|
my @dirs = split /:/, $ENV{PATH};
|
|
|
|
|
my @filtered = grep !/^\./, @dirs;
|
|
|
|
|
if (scalar @dirs != scalar @filtered) {
|
|
|
|
|
$ENV{PATH} = join ':', @filtered;
|
|
|
|
|
warn qq|Removed relative directories from PATH because you | .
|
|
|
|
|
qq|are running Perl with taint mode enabled. Remove -T | .
|
|
|
|
|
qq|to be able to use relative directories in PATH. | .
|
|
|
|
|
qq|New PATH is "$ENV{PATH}"|;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
# Otherwise the qx() operator wont work:
|
|
|
|
|
delete @ENV{'IFS', 'CDPATH', 'ENV', 'BASH_ENV'};
|
|
|
|
|
chomp(my $result = qx(i3 $args));
|
|
|
|
|
# Circumventing taint mode again: the socket can be anywhere on the
|
|
|
|
|
# system and that’s okay.
|
|
|
|
|
if ($result =~ /^([^\0]+)$/) {
|
|
|
|
|
return $1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
warn "Calling i3 $args failed. Is DISPLAY set and is i3 in your PATH?";
|
|
|
|
|
return undef;
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-13 17:11:09 +01:00
|
|
|
|
=head2 $i3 = AnyEvent::I3->new([ $path ])
|
|
|
|
|
|
2012-07-09 15:49:16 +02:00
|
|
|
|
Creates a new C<AnyEvent::I3> object and returns it.
|
|
|
|
|
|
|
|
|
|
C<path> is an optional path of the UNIX socket to connect to. It is strongly
|
|
|
|
|
advised to NOT specify this unless you're absolutely sure you need it.
|
|
|
|
|
C<AnyEvent::I3> will automatically figure it out by querying the running i3
|
|
|
|
|
instance on the current DISPLAY which is almost always what you want.
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub new {
|
|
|
|
|
my ($class, $path) = @_;
|
|
|
|
|
|
2012-08-05 17:31:22 +02:00
|
|
|
|
$path = _call_i3('--get-socketpath') unless $path;
|
2012-07-09 15:49:16 +02:00
|
|
|
|
|
|
|
|
|
# This is the old default path (v3.*). This fallback line can be removed in
|
|
|
|
|
# a year from now. -- Michael, 2012-07-09
|
2010-03-27 14:54:30 +01:00
|
|
|
|
$path ||= '~/.i3/ipc.sock';
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
2010-06-10 00:18:50 +02:00
|
|
|
|
# Check if we need to resolve ~
|
|
|
|
|
if ($path =~ /~/) {
|
|
|
|
|
# We use getpwuid() instead of $ENV{HOME} because the latter is tainted
|
|
|
|
|
# and thus produces warnings when running tests with perl -T
|
|
|
|
|
my $home = (getpwuid($<))[7];
|
2017-09-13 16:39:44 +02:00
|
|
|
|
confess "Could not get home directory" unless $home and -d $home;
|
2010-06-10 00:18:50 +02:00
|
|
|
|
$path =~ s/~/$home/g;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bless { path => $path } => $class;
|
2010-03-13 17:11:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
=head2 $i3->connect
|
|
|
|
|
|
|
|
|
|
Establishes the connection to i3. Returns an C<AnyEvent::CondVar> which will
|
2010-03-13 17:38:32 +01:00
|
|
|
|
be triggered with a boolean (true if the connection was established) as soon as
|
|
|
|
|
the connection has been established.
|
|
|
|
|
|
|
|
|
|
if ($i3->connect->recv) {
|
|
|
|
|
say "Connected to i3";
|
|
|
|
|
}
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub connect {
|
|
|
|
|
my ($self) = @_;
|
|
|
|
|
my $cv = AnyEvent->condvar;
|
|
|
|
|
|
|
|
|
|
tcp_connect "unix/", $self->{path}, sub {
|
|
|
|
|
my ($fh) = @_;
|
|
|
|
|
|
2010-03-13 17:38:32 +01:00
|
|
|
|
return $cv->send(0) unless $fh;
|
|
|
|
|
|
2010-03-13 17:11:09 +01:00
|
|
|
|
$self->{ipchdl} = AnyEvent::Handle->new(
|
|
|
|
|
fh => $fh,
|
2010-03-23 02:04:28 +01:00
|
|
|
|
on_read => sub { my ($hdl) = @_; $self->_data_available($hdl) },
|
|
|
|
|
on_error => sub {
|
|
|
|
|
my ($hdl, $fatal, $msg) = @_;
|
|
|
|
|
delete $self->{ipchdl};
|
|
|
|
|
$hdl->destroy;
|
|
|
|
|
|
|
|
|
|
my $cb = $self->{callbacks};
|
|
|
|
|
|
|
|
|
|
# Trigger all one-time callbacks with undef
|
|
|
|
|
for my $type (keys %{$cb}) {
|
|
|
|
|
next if ($type & $event_mask) == $event_mask;
|
|
|
|
|
$cb->{$type}->();
|
2012-01-21 22:59:12 +01:00
|
|
|
|
delete $cb->{$type};
|
2010-03-23 02:04:28 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# Trigger _error callback, if set
|
|
|
|
|
my $type = $events{_error};
|
|
|
|
|
return unless defined($cb->{$type});
|
|
|
|
|
$cb->{$type}->($msg);
|
|
|
|
|
}
|
2010-03-13 17:11:09 +01:00
|
|
|
|
);
|
|
|
|
|
|
2010-03-13 17:38:32 +01:00
|
|
|
|
$cv->send(1)
|
2010-03-13 17:11:09 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$cv
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-13 17:19:38 +01:00
|
|
|
|
sub _data_available {
|
2010-03-13 17:11:09 +01:00
|
|
|
|
my ($self, $hdl) = @_;
|
|
|
|
|
|
|
|
|
|
$hdl->unshift_read(
|
|
|
|
|
chunk => length($magic) + 4 + 4,
|
|
|
|
|
sub {
|
|
|
|
|
my $header = $_[1];
|
|
|
|
|
# Unpack message length and read the payload
|
|
|
|
|
my ($len, $type) = unpack("LL", substr($header, length($magic)));
|
|
|
|
|
$hdl->unshift_read(
|
|
|
|
|
chunk => $len,
|
2010-03-13 17:19:38 +01:00
|
|
|
|
sub { $self->_handle_i3_message($type, $_[1]) }
|
2010-03-13 17:11:09 +01:00
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-13 17:19:38 +01:00
|
|
|
|
sub _handle_i3_message {
|
2010-03-13 17:11:09 +01:00
|
|
|
|
my ($self, $type, $payload) = @_;
|
|
|
|
|
|
|
|
|
|
return unless defined($self->{callbacks}->{$type});
|
|
|
|
|
|
|
|
|
|
my $cb = $self->{callbacks}->{$type};
|
|
|
|
|
$cb->(decode_json $payload);
|
2010-03-23 02:04:28 +01:00
|
|
|
|
|
|
|
|
|
return if ($type & $event_mask) == $event_mask;
|
|
|
|
|
|
|
|
|
|
# If this was a one-time callback, we delete it
|
|
|
|
|
# (when connection is lost, all one-time callbacks get triggered)
|
|
|
|
|
delete $self->{callbacks}->{$type};
|
2010-03-13 17:11:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
=head2 $i3->subscribe(\%callbacks)
|
|
|
|
|
|
|
|
|
|
Subscribes to the given event types. This function awaits a hashref with the
|
|
|
|
|
key being the name of the event and the value being a callback.
|
|
|
|
|
|
2010-03-22 22:33:26 +01:00
|
|
|
|
my %callbacks = (
|
2010-03-13 17:11:09 +01:00
|
|
|
|
workspace => sub { say "Workspaces changed" }
|
2010-03-22 22:33:26 +01:00
|
|
|
|
);
|
|
|
|
|
|
2012-11-03 11:47:27 +01:00
|
|
|
|
if ($i3->subscribe(\%callbacks)->recv->{success}) {
|
2010-03-22 22:33:26 +01:00
|
|
|
|
say "Successfully subscribed";
|
|
|
|
|
}
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
2010-03-23 02:04:28 +01:00
|
|
|
|
The special callback with name C<_error> is called when the connection to i3
|
|
|
|
|
is killed (because of a crash, exit or restart of i3 most likely). You can
|
|
|
|
|
use it to print an appropriate message and exit cleanly or to try to reconnect.
|
|
|
|
|
|
|
|
|
|
my %callbacks = (
|
|
|
|
|
_error => sub {
|
|
|
|
|
my ($msg) = @_;
|
|
|
|
|
say "I am sorry. I am so sorry: $msg";
|
|
|
|
|
exit 1;
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
$i3->subscribe(\%callbacks)->recv;
|
|
|
|
|
|
2010-03-13 17:11:09 +01:00
|
|
|
|
=cut
|
|
|
|
|
sub subscribe {
|
|
|
|
|
my ($self, $callbacks) = @_;
|
|
|
|
|
|
|
|
|
|
# Register callbacks for each message type
|
|
|
|
|
for my $key (keys %{$callbacks}) {
|
|
|
|
|
my $type = $events{$key};
|
|
|
|
|
$self->{callbacks}->{$type} = $callbacks->{$key};
|
|
|
|
|
}
|
2010-03-22 22:33:26 +01:00
|
|
|
|
|
|
|
|
|
$self->message(TYPE_SUBSCRIBE, [ keys %{$callbacks} ])
|
2010-03-13 17:11:09 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
=head2 $i3->message($type, $content)
|
|
|
|
|
|
|
|
|
|
Sends a message of the specified C<type> to i3, possibly containing the data
|
2010-03-22 21:37:44 +01:00
|
|
|
|
structure C<content> (or C<content>, encoded as utf8, if C<content> is a
|
|
|
|
|
scalar), if specified.
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
2017-09-17 15:25:00 +02:00
|
|
|
|
my $reply = $i3->message(TYPE_RUN_COMMAND, "reload")->recv;
|
2010-03-13 17:11:09 +01:00
|
|
|
|
if ($reply->{success}) {
|
|
|
|
|
say "Configuration successfully reloaded";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub message {
|
|
|
|
|
my ($self, $type, $content) = @_;
|
|
|
|
|
|
2017-09-13 16:39:44 +02:00
|
|
|
|
confess "No message type specified" unless defined($type);
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
2017-09-13 16:39:44 +02:00
|
|
|
|
confess "No connection to i3" unless defined($self->{ipchdl});
|
2010-03-23 02:04:28 +01:00
|
|
|
|
|
2010-03-13 17:11:09 +01:00
|
|
|
|
my $payload = "";
|
|
|
|
|
if ($content) {
|
2010-03-22 21:37:44 +01:00
|
|
|
|
if (not ref($content)) {
|
|
|
|
|
# Convert from Perl’s internal encoding to UTF8 octets
|
|
|
|
|
$payload = encode_utf8($content);
|
2010-03-13 17:11:09 +01:00
|
|
|
|
} else {
|
|
|
|
|
$payload = encode_json $content;
|
|
|
|
|
}
|
|
|
|
|
}
|
2010-03-22 21:37:44 +01:00
|
|
|
|
my $message = $magic . pack("LL", length($payload), $type) . $payload;
|
2010-03-13 17:11:09 +01:00
|
|
|
|
$self->{ipchdl}->push_write($message);
|
|
|
|
|
|
|
|
|
|
my $cv = AnyEvent->condvar;
|
|
|
|
|
|
|
|
|
|
# We don’t preserve the old callback as it makes no sense to
|
|
|
|
|
# have a callback on message reply types (only on events)
|
|
|
|
|
$self->{callbacks}->{$type} =
|
|
|
|
|
sub {
|
|
|
|
|
my ($reply) = @_;
|
|
|
|
|
$cv->send($reply);
|
|
|
|
|
undef $self->{callbacks}->{$type};
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
$cv
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-22 23:23:07 +01:00
|
|
|
|
=head1 SUGAR METHODS
|
|
|
|
|
|
|
|
|
|
These methods intend to make your scripts as beautiful as possible. All of
|
|
|
|
|
them automatically establish a connection to i3 blockingly (if it does not
|
|
|
|
|
already exist).
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
|
|
sub _ensure_connection {
|
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
|
|
return if defined($self->{ipchdl});
|
|
|
|
|
|
2017-09-13 16:39:44 +02:00
|
|
|
|
$self->connect->recv or confess "Unable to connect to i3 (socket path " . $self->{path} . ")";
|
2010-03-22 23:23:07 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
=head2 get_workspaces
|
|
|
|
|
|
|
|
|
|
Gets the current workspaces from i3.
|
|
|
|
|
|
|
|
|
|
my $ws = i3->get_workspaces->recv;
|
|
|
|
|
say Dumper($ws);
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub get_workspaces {
|
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
|
|
$self->_ensure_connection;
|
|
|
|
|
|
|
|
|
|
$self->message(TYPE_GET_WORKSPACES)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
=head2 get_outputs
|
|
|
|
|
|
|
|
|
|
Gets the current outputs from i3.
|
|
|
|
|
|
|
|
|
|
my $outs = i3->get_outputs->recv;
|
|
|
|
|
say Dumper($outs);
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub get_outputs {
|
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
|
|
$self->_ensure_connection;
|
|
|
|
|
|
|
|
|
|
$self->message(TYPE_GET_OUTPUTS)
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-21 21:52:43 +01:00
|
|
|
|
=head2 get_tree
|
|
|
|
|
|
2011-09-26 20:25:59 +02:00
|
|
|
|
Gets the layout tree from i3 (>= v4.0).
|
2010-11-21 21:52:43 +01:00
|
|
|
|
|
|
|
|
|
my $tree = i3->get_tree->recv;
|
|
|
|
|
say Dumper($tree);
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub get_tree {
|
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
|
|
$self->_ensure_connection;
|
|
|
|
|
|
|
|
|
|
$self->message(TYPE_GET_TREE)
|
|
|
|
|
}
|
|
|
|
|
|
2011-09-26 20:25:59 +02:00
|
|
|
|
=head2 get_marks
|
|
|
|
|
|
|
|
|
|
Gets all the window identifier marks from i3 (>= v4.1).
|
|
|
|
|
|
|
|
|
|
my $marks = i3->get_marks->recv;
|
2011-10-13 00:25:56 +02:00
|
|
|
|
say Dumper($marks);
|
2011-09-26 20:25:59 +02:00
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub get_marks {
|
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
|
|
$self->_ensure_connection;
|
|
|
|
|
|
|
|
|
|
$self->message(TYPE_GET_MARKS)
|
|
|
|
|
}
|
2010-11-21 21:52:43 +01:00
|
|
|
|
|
2011-10-13 00:26:04 +02:00
|
|
|
|
=head2 get_bar_config
|
|
|
|
|
|
|
|
|
|
Gets the bar configuration for the specific bar id from i3 (>= v4.1).
|
|
|
|
|
|
|
|
|
|
my $config = i3->get_bar_config($id)->recv;
|
|
|
|
|
say Dumper($config);
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub get_bar_config {
|
|
|
|
|
my ($self, $id) = @_;
|
|
|
|
|
|
|
|
|
|
$self->_ensure_connection;
|
|
|
|
|
|
|
|
|
|
$self->message(TYPE_GET_BAR_CONFIG, $id)
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-05 17:31:22 +02:00
|
|
|
|
=head2 get_version
|
|
|
|
|
|
|
|
|
|
Gets the i3 version via IPC, with a fall-back that parses the output of i3
|
|
|
|
|
--version (for i3 < v4.3).
|
|
|
|
|
|
|
|
|
|
my $version = i3->get_version()->recv;
|
|
|
|
|
say "major: " . $version->{major} . ", minor = " . $version->{minor};
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub get_version {
|
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
|
|
$self->_ensure_connection;
|
|
|
|
|
|
|
|
|
|
my $cv = AnyEvent->condvar;
|
|
|
|
|
|
|
|
|
|
my $version_cv = $self->message(TYPE_GET_VERSION);
|
|
|
|
|
my $timeout;
|
|
|
|
|
$timeout = AnyEvent->timer(
|
|
|
|
|
after => 1,
|
|
|
|
|
cb => sub {
|
|
|
|
|
warn "Falling back to i3 --version since the running i3 doesn’t support GET_VERSION yet.";
|
|
|
|
|
my $version = _call_i3('--version');
|
|
|
|
|
$version =~ s/^i3 version //;
|
|
|
|
|
my $patch = 0;
|
|
|
|
|
my ($major, $minor) = ($version =~ /^([0-9]+)\.([0-9]+)/);
|
|
|
|
|
if ($version =~ /^[0-9]+\.[0-9]+\.([0-9]+)/) {
|
|
|
|
|
$patch = $1;
|
|
|
|
|
}
|
|
|
|
|
# Strip everything from the © sign on.
|
|
|
|
|
$version =~ s/ ©.*$//g;
|
|
|
|
|
$cv->send({
|
|
|
|
|
major => int($major),
|
|
|
|
|
minor => int($minor),
|
|
|
|
|
patch => int($patch),
|
|
|
|
|
human_readable => $version,
|
|
|
|
|
});
|
|
|
|
|
undef $timeout;
|
|
|
|
|
},
|
|
|
|
|
);
|
|
|
|
|
$version_cv->cb(sub {
|
|
|
|
|
undef $timeout;
|
|
|
|
|
$cv->send($version_cv->recv);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
return $cv;
|
|
|
|
|
}
|
|
|
|
|
|
2017-08-19 17:29:03 +02:00
|
|
|
|
=head2 get_config
|
|
|
|
|
|
|
|
|
|
Gets the raw last read config from i3. Requires i3 >= 4.14
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub get_config {
|
|
|
|
|
my ($self) = @_;
|
|
|
|
|
|
|
|
|
|
$self->_ensure_connection;
|
|
|
|
|
|
|
|
|
|
$self->message(TYPE_GET_CONFIG);
|
|
|
|
|
}
|
|
|
|
|
|
2017-09-24 15:40:30 +02:00
|
|
|
|
=head2 send_tick
|
|
|
|
|
|
|
|
|
|
Sends a tick event. Requires i3 >= 4.15
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub send_tick {
|
|
|
|
|
my ($self, $payload) = @_;
|
|
|
|
|
|
|
|
|
|
$self->_ensure_connection;
|
|
|
|
|
|
|
|
|
|
$self->message(TYPE_SEND_TICK, $payload);
|
|
|
|
|
}
|
2017-08-19 17:29:03 +02:00
|
|
|
|
|
2018-03-30 21:06:18 +02:00
|
|
|
|
=head2 sync
|
|
|
|
|
|
|
|
|
|
Sends an i3 sync event. Requires i3 >= 4.16
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub sync {
|
|
|
|
|
my ($self, $payload) = @_;
|
|
|
|
|
|
|
|
|
|
$self->_ensure_connection;
|
|
|
|
|
|
|
|
|
|
$self->message(TYPE_SYNC, $payload);
|
|
|
|
|
}
|
|
|
|
|
|
2010-03-22 23:23:07 +01:00
|
|
|
|
=head2 command($content)
|
|
|
|
|
|
|
|
|
|
Makes i3 execute the given command
|
|
|
|
|
|
|
|
|
|
my $reply = i3->command("reload")->recv;
|
|
|
|
|
die "command failed" unless $reply->{success};
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
sub command {
|
|
|
|
|
my ($self, $content) = @_;
|
|
|
|
|
|
|
|
|
|
$self->_ensure_connection;
|
|
|
|
|
|
2017-09-17 15:25:00 +02:00
|
|
|
|
$self->message(TYPE_RUN_COMMAND, $content)
|
2010-03-22 23:23:07 +01:00
|
|
|
|
}
|
|
|
|
|
|
2010-03-13 17:11:09 +01:00
|
|
|
|
=head1 AUTHOR
|
|
|
|
|
|
2012-07-09 15:51:37 +02:00
|
|
|
|
Michael Stapelberg, C<< <michael at i3wm.org> >>
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
=head1 BUGS
|
|
|
|
|
|
2010-03-22 21:43:05 +01:00
|
|
|
|
Please report any bugs or feature requests to C<bug-anyevent-i3 at
|
|
|
|
|
rt.cpan.org>, or through the web interface at
|
2017-09-24 10:19:07 +02:00
|
|
|
|
L<https://rt.cpan.org/NoAuth/ReportBug.html?Queue=AnyEvent-I3>. I will be
|
2010-03-22 21:43:05 +01:00
|
|
|
|
notified, and then you'll automatically be notified of progress on your bug as
|
|
|
|
|
I make changes.
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
=head1 SUPPORT
|
|
|
|
|
|
|
|
|
|
You can find documentation for this module with the perldoc command.
|
|
|
|
|
|
|
|
|
|
perldoc AnyEvent::I3
|
|
|
|
|
|
|
|
|
|
You can also look for information at:
|
|
|
|
|
|
|
|
|
|
=over 2
|
|
|
|
|
|
|
|
|
|
=item * RT: CPAN's request tracker
|
|
|
|
|
|
2017-09-24 10:19:07 +02:00
|
|
|
|
L<https://rt.cpan.org/NoAuth/Bugs.html?Dist=AnyEvent-I3>
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
=item * The i3 window manager website
|
|
|
|
|
|
2017-09-24 10:19:07 +02:00
|
|
|
|
L<https://i3wm.org>
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
=back
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=head1 ACKNOWLEDGEMENTS
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT
|
|
|
|
|
|
2012-07-09 15:51:37 +02:00
|
|
|
|
Copyright 2010-2012 Michael Stapelberg.
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it
|
|
|
|
|
under the terms of either: the GNU General Public License as published
|
|
|
|
|
by the Free Software Foundation; or the Artistic License.
|
|
|
|
|
|
2017-09-24 10:19:07 +02:00
|
|
|
|
See https://dev.perl.org/licenses/ for more information.
|
2010-03-13 17:11:09 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
|
|
1; # End of AnyEvent::I3
|