File: wm-state-exercise.pl

package info (click to toggle)
libx11-protocol-other-perl 28-1%2Bdeb8u1
  • links: PTS, VCS
  • area: main
  • in suites: jessie
  • size: 1,692 kB
  • ctags: 556
  • sloc: perl: 17,055; ansic: 624; sh: 238; lisp: 143; makefile: 39
file content (229 lines) | stat: -rw-r--r-- 7,001 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
#!/usr/bin/perl -w

# Copyright 2013 Kevin Ryde

# This file is part of X11-Protocol-Other.
#
# X11-Protocol-Other is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as published
# by the Free Software Foundation; either version 3, or (at your option) any
# later version.
#
# X11-Protocol-Other is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General
# Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with X11-Protocol-Other.  If not, see <http://www.gnu.org/licenses/>.

use strict;
use FindBin;
use File::Spec;
my $script = File::Spec->catfile($FindBin::Bin,$FindBin::Script);
use X11::Protocol;
use X11::AtomConstants;
use X11::Protocol::WM;

if (@ARGV) {
  open STDOUT, '>>', '/tmp/wm-state-exercise.out' or die;
  open STDERR, '>>&', \*STDOUT;
  $| = 1;
  print "\n\n\n-------------------------------------------------------------\n";

  my $wm = $ARGV[0];
  my $pid = fork();
  if ($pid) {
    # parent
    sleep 5;
  } else {
    exec $wm or die $!;
  }

  my $display = $ENV{"DISPLAY"};
  my $window = $ENV{"WINDOWID"};
  my $X = X11::Protocol->new($display);
  my $root = $X->root;
  print "\n$wm $display window=$window\n";
  # system("xprop -root >>/tmp/wm-state-exercise.out");

  my @supported_atoms;
  my %supported_atoms;
  {
    my ($value, $type, $format, $bytes_after)
      = $X->GetProperty ($root,
                         $X->atom('_NET_SUPPORTED'),   # property
                         X11::AtomConstants::ATOM(),  # type
                         0,    # offset
                         999,  # length limit
                         0);   # delete
    if ($format == 32) {
      @supported_atoms = unpack('L*', $value);
      foreach my $atom (@supported_atoms) {
        $supported_atoms{$atom} = 1;
      }
    } else {
      print "no _NET_SUPPORTED\n";
    }
  }
  print "supported count ",scalar(@supported_atoms),"\n";
  print "supported: ",join(', ',map{$X->atom_name($_)} @supported_atoms),"\n";

  # _NET_WM_STATE_HIDDEN
  foreach my $state (qw(
                        _NET_WM_STATE_BELOW
                        _NET_WM_STATE_ABOVE
                        _NET_WM_STATE_MODAL
                        _NET_WM_STATE_STICKY
                        _NET_WM_STATE_MAXIMIZED_VERT
                        _NET_WM_STATE_MAXIMIZED_HORZ
                        _NET_WM_STATE_SHADED
                        _NET_WM_STATE_SKIP_TASKBAR
                        _NET_WM_STATE_SKIP_PAGER
                        _NET_WM_STATE_FULLSCREEN
                        _NET_WM_STATE_DEMANDS_ATTENTION
                       )) {
    print "$state\n";
    my $state_atom = $X->atom($state);
    if (! $supported_atoms{$state_atom}) {
      print "  not supported\n";
      next;
    }

    change(1, $state_atom); # add
    $X->flush;
    sleep 1;
    {
      my @states = get_wm_states();
      my $found = grep {$_==$state_atom} @states;
      if ($found) {
        print "  add ok\n";
      } else {
        print "  bad, add not set\n";
        print "  have: ",join(' ',map{$X->atom_name($_)}@states),"\n";
      }
    }

    change(0, $state_atom); # remove
    $X->flush;
    sleep 1;
    {
      my @states = get_wm_states();
      my $found = grep {$_==$state_atom} @states;
      if ($found) {
        print "  bad, remove still set\n";
        print "  have: ",join(' ',map{$X->atom_name($_)}@states),"\n";
      } else {
        print "  remove ok\n";
      }
    }

    change(1, $state_atom); # toggle-on
    $X->flush;
    sleep 1;
    {
      my @states = get_wm_states();
      my $found = grep {$_==$state_atom} @states;
      if ($found) {
        print "  toggle-on ok\n";
      } else {
        print "  bad, toggle-on not set\n";
        print "  have: ",join(' ',map{$X->atom_name($_)}@states),"\n";
      }
    }

    change(2, $state_atom); # toggle-off
    $X->flush;
    sleep 1;
    {
      my @states = get_wm_states();
      my $found = grep {$_==$state_atom} @states;
      if ($found) {
        print "  bad, toggle-off still set\n";
        print "  have: ",join(' ',map{$X->atom_name($_)}@states),"\n";
      } else {
        print "  toggle-off ok\n";
      }
    }
  }

  # kill $pid;
  print "exit\n";
  exit 0;

  sub change {
    my ($action, $atom) = @_;
    X11::Protocol::WM::_send_event_to_wm ($X, $root,
                                          name   => 'ClientMessage',
                                          window => $window,
                                          type   => $X->atom('_NET_WM_STATE'),
                                          format => 32,
                                          data   => pack('L5',
                                                         $action,
                                                         $atom,
                                                         0,   # state2
                                                         2)); # "user"
  }

  sub get_wm_states {
    my @states;
    my ($value, $type, $format, $bytes_after)
      = $X->GetProperty ($window,
                         $X->atom('_NET_WM_STATE'),   # property
                         X11::AtomConstants::ATOM(),  # type
                         0,    # offset
                         999,  # length limit
                         0);   # delete
    if ($format == 32) {
      @states = unpack('L*', $value);
    }
    return @states;
  }
}


unlink '/tmp/wm-state-exercise.out';

foreach my $wm (qw(
                    /usr/bin/metacity
                    /usr/bin/jwm
                    /usr/bin/wmii
                    /usr/bin/fvwm2
                    /usr/bin/icewm
                    mwm
                    /usr/bin/olwm
                    /usr/bin/olvwm

                    /usr/bin/spectrwm
                    /usr/bin/windowlab
                    /usr/bin/amiwm

                    matchbox-window-manager
                    /usr/bin/awesome
                    evilwm
                    /usr/bin/openbox
                    tvtwm
                    /usr/bin/9wm
                    w9wm
                    /usr/bin/xfwm4
                    /usr/bin/sapphire
                    ctwm
                    /usr/bin/dwm
                    /usr/bin/startfluxbox
                    /usr/bin/flwm
                    /usr/bin/herbstluftwm
                    /usr/bin/i3
                    /usr/bin/larswm
                    /usr/bin/miwm
                    /usr/bin/oroborus
                    /usr/bin/wm2
                    /usr/bin/xmonad
                    /so/swm/sWM-1.3.6/bin/sWM
                    twm
                    vtwm
                 )) {
  # my $command = "xvfb-run -a xterm -e 'echo $wm >>/tmp/xx'";
  my $command = "xvfb-run -a xterm -e 'perl $script $wm'";
  print "$command\n";
  system ($command);
}