]> git.sur5r.net Git - i3/i3/commitdiff
docs/ipc: document that the highest bit is 1 for event replies
authorMichael Stapelberg <michael@stapelberg.de>
Sat, 29 Jan 2011 17:06:56 +0000 (18:06 +0100)
committerMichael Stapelberg <michael@stapelberg.de>
Sat, 29 Jan 2011 17:07:30 +0000 (18:07 +0100)
docs/ipc

index d6f1a253dbb4c196904019bc478c01d21135b479..36a5d2b9dc5de5c8f2b4d38ba796f45615653791 100644 (file)
--- a/docs/ipc
+++ b/docs/ipc
@@ -233,7 +233,8 @@ rect (map)::
 To get informed when certain things happen in i3, clients can subscribe to
 events. Events consist of a name (like "workspace") and an event reply type
 (like I3_IPC_EVENT_WORKSPACE). The events sent by i3 are in the same format
-as replies to specific commands.
+as replies to specific commands. However, the highest bit of the message type
+is set to 1 to indicate that this is an event reply instead of a normal reply.
 
 Caveat: As soon as you subscribe to an event, it is not guaranteed any longer
 that the requests to i3 are processed in order. This means, the following
@@ -254,16 +255,38 @@ type: SUBSCRIBE
 payload: [ "workspace", "focus" ]
 ---------------------------------
 
+
 === Available events
 
-workspace::
+The numbers in parenthesis is the event type (keep in mind that you need to
+strip the highest bit first).
+
+workspace (0)::
        Sent when the user switches to a different workspace, when a new
        workspace is initialized or when a workspace is removed (because the
        last client vanished).
-output::
+output (1)::
        Sent when RandR issues a change notification (of either screens,
        outputs, CRTCs or output properties).
 
+*Example:*
+--------------------------------------------------------------------
+# the appropriate 4 bytes read from the socket are stored in $input
+
+# unpack a 32-bit unsigned integer
+my $message_type = unpack("L", $input);
+
+# check if the highest bit is 1
+my $is_event = (($message_type >> 31) == 1);
+
+# use the other bits
+my $event_type = ($message_type & 0x7F);
+
+if ($is_event) {
+  say "Received event of type $event_type";
+}
+--------------------------------------------------------------------
+
 === workspace event
 
 This event consists of a single serialized map containing a property