]> git.sur5r.net Git - i3/i3/blob - docs/ipc
x.c: correctly free con->frame_buffer in _x_con_kill
[i3/i3] / docs / ipc
1 IPC interface (interprocess communication)
2 ==========================================
3 Michael Stapelberg <michael@i3wm.org>
4 September 2017
5
6 This document describes how to interface with i3 from a separate process. This
7 is useful for example to remote-control i3 (to write test cases for example) or
8 to get various information like the current workspaces to implement an external
9 workspace bar.
10
11 The method of choice for IPC in our case is a unix socket because it has very
12 little overhead on both sides and is usually available without headaches in
13 most languages. In the default configuration file, the ipc-socket gets created
14 in +/tmp/i3-%u.XXXXXX/ipc-socket.%p+ where +%u+ is your UNIX username, +%p+ is
15 the PID of i3 and XXXXXX is a string of random characters from the portable
16 filename character set (see mkdtemp(3)). You can get the socketpath from i3 by
17 calling +i3 --get-socketpath+.
18
19 All i3 utilities, like +i3-msg+ and +i3-input+ will read the +I3_SOCKET_PATH+
20 X11 property, stored on the X11 root window.
21
22 [WARNING]
23 .Use an existing library!
24 There are existing libraries for many languages. You can have a look at
25 <<libraries>> or search the web if your language of choice is not mentioned.
26 Usually, it is not necessary to implement low-level communication with i3
27 directly.
28
29 == Establishing a connection
30
31 To establish a connection, simply open the IPC socket. The following code
32 snippet illustrates this in Perl:
33
34 -------------------------------------------------------------
35 use IO::Socket::UNIX;
36 chomp(my $path = qx(i3 --get-socketpath));
37 my $sock = IO::Socket::UNIX->new(Peer => $path);
38 -------------------------------------------------------------
39
40 == Sending messages to i3
41
42 To send a message to i3, you have to format in the binary message format which
43 i3 expects. This format specifies a magic string in the beginning to ensure
44 the integrity of messages (to prevent follow-up errors). Following the magic
45 string comes the length of the payload of the message as 32-bit integer, and
46 the type of the message as 32-bit integer (the integers are not converted, so
47 they are in native byte order).
48
49 The magic string currently is "i3-ipc" and will only be changed when a change
50 in the IPC API is done which breaks compatibility (we hope that we don’t need
51 to do that).
52
53 .Currently implemented message types
54 [options="header",cols="^10%,^20%,^20%,^50%"]
55 |======================================================
56 | Type (numeric) | Type (name) | Reply type | Purpose
57 | 0 | +RUN_COMMAND+ | <<_command_reply,COMMAND>> | Run the payload as an i3 command (like the commands you can bind to keys).
58 | 1 | +GET_WORKSPACES+ | <<_workspaces_reply,WORKSPACES>> | Get the list of current workspaces.
59 | 2 | +SUBSCRIBE+ | <<_subscribe_reply,SUBSCRIBE>> | Subscribe this IPC connection to the event types specified in the message payload. See <<events>>.
60 | 3 | +GET_OUTPUTS+ | <<_outputs_reply,OUTPUTS>> | Get the list of current outputs.
61 | 4 | +GET_TREE+ | <<_tree_reply,TREE>> | Get the i3 layout tree.
62 | 5 | +GET_MARKS+ | <<_marks_reply,MARKS>> | Gets the names of all currently set marks.
63 | 6 | +GET_BAR_CONFIG+ | <<_bar_config_reply,BAR_CONFIG>> | Gets the specified bar configuration or the names of all bar configurations if payload is empty.
64 | 7 | +GET_VERSION+ | <<_version_reply,VERSION>> | Gets the i3 version.
65 | 8 | +GET_BINDING_MODES+ | <<_binding_modes_reply,BINDING_MODES>> | Gets the names of all currently configured binding modes.
66 | 9 | +GET_CONFIG+ | <<_config_reply,CONFIG>> | Returns the last loaded i3 config.
67 | 10 | +SEND_TICK+ | <<_tick_reply,TICK>> | Sends a tick event with the specified payload.
68 | 11 | +SYNC+ | <<_sync_reply,SYNC>> | Sends an i3 sync event with the specified random value to the specified window.
69 |======================================================
70
71 So, a typical message could look like this:
72 --------------------------------------------------
73 "i3-ipc" <message length> <message type> <payload>
74 --------------------------------------------------
75
76 Or, as a hexdump:
77 ------------------------------------------------------------------------------
78 00000000  69 33 2d 69 70 63 04 00  00 00 00 00 00 00 65 78  |i3-ipc........ex|
79 00000010  69 74                                             |it|
80 ------------------------------------------------------------------------------
81
82 To generate and send such a message, you could use the following code in Perl:
83 ------------------------------------------------------------
84 sub format_ipc_command {
85     my ($msg) = @_;
86     my $len;
87     # Get the real byte count (vs. amount of characters)
88     { use bytes; $len = length($msg); }
89     return "i3-ipc" . pack("LL", $len, 0) . $msg;
90 }
91
92 $sock->write(format_ipc_command("exit"));
93 ------------------------------------------------------------------------------
94
95 == Receiving replies from i3
96
97 Replies from i3 usually consist of a simple string (the length of the string
98 is the message_length, so you can consider them length-prefixed) which in turn
99 contain the JSON serialization of a data structure. For example, the
100 GET_WORKSPACES message returns an array of workspaces (each workspace is a map
101 with certain attributes).
102
103 === Reply format
104
105 The reply format is identical to the normal message format. There also is
106 the magic string, then the message length, then the message type and the
107 payload.
108
109 The following reply types are implemented:
110
111 COMMAND (0)::
112         Confirmation/Error code for the RUN_COMMAND message.
113 WORKSPACES (1)::
114         Reply to the GET_WORKSPACES message.
115 SUBSCRIBE (2)::
116         Confirmation/Error code for the SUBSCRIBE message.
117 OUTPUTS (3)::
118         Reply to the GET_OUTPUTS message.
119 TREE (4)::
120         Reply to the GET_TREE message.
121 MARKS (5)::
122         Reply to the GET_MARKS message.
123 BAR_CONFIG (6)::
124         Reply to the GET_BAR_CONFIG message.
125 VERSION (7)::
126         Reply to the GET_VERSION message.
127 BINDING_MODES (8)::
128         Reply to the GET_BINDING_MODES message.
129 GET_CONFIG (9)::
130         Reply to the GET_CONFIG message.
131 TICK (10)::
132         Reply to the SEND_TICK message.
133
134 [[_command_reply]]
135 === COMMAND reply
136
137 The reply consists of a list of serialized maps for each command that was
138 parsed. Each has the property +success (bool)+ and may also include a
139 human-readable error message in the property +error (string)+.
140
141 *Example:*
142 -------------------
143 [{ "success": true }]
144 -------------------
145
146 [[_workspaces_reply]]
147 === WORKSPACES reply
148
149 The reply consists of a serialized list of workspaces. Each workspace has the
150 following properties:
151
152 num (integer)::
153         The logical number of the workspace. Corresponds to the command
154         to switch to this workspace. For named workspaces, this will be -1.
155 name (string)::
156         The name of this workspace (by default num+1), as changed by the
157         user. Encoded in UTF-8.
158 visible (boolean)::
159         Whether this workspace is currently visible on an output (multiple
160         workspaces can be visible at the same time).
161 focused (boolean)::
162         Whether this workspace currently has the focus (only one workspace
163         can have the focus at the same time).
164 urgent (boolean)::
165         Whether a window on this workspace has the "urgent" flag set.
166 rect (map)::
167         The rectangle of this workspace (equals the rect of the output it
168         is on), consists of x, y, width, height.
169 output (string)::
170         The video output this workspace is on (LVDS1, VGA1, …).
171
172 *Example:*
173 -------------------
174 [
175  {
176   "num": 0,
177   "name": "1",
178   "visible": true,
179   "focused": true,
180   "urgent": false,
181   "rect": {
182    "x": 0,
183    "y": 0,
184    "width": 1280,
185    "height": 800
186   },
187   "output": "LVDS1"
188  },
189  {
190   "num": 1,
191   "name": "2",
192   "visible": false,
193   "focused": false,
194   "urgent": false,
195   "rect": {
196    "x": 0,
197    "y": 0,
198    "width": 1280,
199    "height": 800
200   },
201   "output": "LVDS1"
202  }
203 ]
204 -------------------
205
206 [[_subscribe_reply]]
207 === SUBSCRIBE reply
208
209 The reply consists of a single serialized map. The only property is
210 +success (bool)+, indicating whether the subscription was successful (the
211 default) or whether a JSON parse error occurred.
212
213 *Example:*
214 -------------------
215 { "success": true }
216 -------------------
217
218 [[_outputs_reply]]
219 === OUTPUTS reply
220
221 The reply consists of a serialized list of outputs. Each output has the
222 following properties:
223
224 name (string)::
225         The name of this output (as seen in +xrandr(1)+). Encoded in UTF-8.
226 active (boolean)::
227         Whether this output is currently active (has a valid mode).
228 primary (boolean)::
229         Whether this output is currently the primary output.
230 current_workspace (string)::
231         The name of the current workspace that is visible on this output. +null+ if
232         the output is not active.
233 rect (map)::
234         The rectangle of this output (equals the rect of the output it
235         is on), consists of x, y, width, height.
236
237 *Example:*
238 -------------------
239 [
240  {
241   "name": "LVDS1",
242   "active": true,
243   "current_workspace": "4",
244   "rect": {
245    "x": 0,
246    "y": 0,
247    "width": 1280,
248    "height": 800
249   }
250  },
251  {
252   "name": "VGA1",
253   "active": true,
254   "current_workspace": "1",
255   "rect": {
256    "x": 1280,
257    "y": 0,
258    "width": 1280,
259    "height": 1024
260   }
261  }
262 ]
263 -------------------
264
265 [[_tree_reply]]
266 === TREE reply
267
268 The reply consists of a serialized tree. Each node in the tree (representing
269 one container) has at least the properties listed below. While the nodes might
270 have more properties, please do not use any properties which are not documented
271 here. They are not yet finalized and will probably change!
272
273 id (integer)::
274         The internal ID (actually a C pointer value) of this container. Do not
275         make any assumptions about it. You can use it to (re-)identify and
276         address containers when talking to i3.
277 name (string)::
278         The internal name of this container. For all containers which are part
279         of the tree structure down to the workspace contents, this is set to a
280         nice human-readable name of the container.
281         For containers that have an X11 window, the content is the title
282         (_NET_WM_NAME property) of that window.
283         For all other containers, the content is not defined (yet).
284 type (string)::
285         Type of this container. Can be one of "root", "output", "con",
286         "floating_con", "workspace" or "dockarea".
287 border (string)::
288         Can be either "normal", "none" or "pixel", depending on the
289         container’s border style.
290 current_border_width (integer)::
291         Number of pixels of the border width.
292 layout (string)::
293         Can be either "splith", "splitv", "stacked", "tabbed", "dockarea" or
294         "output".
295         Other values might be possible in the future, should we add new
296         layouts.
297 orientation (string)::
298         Can be either "none" (for non-split containers), "horizontal" or
299         "vertical".
300         THIS FIELD IS OBSOLETE. It is still present, but your code should not
301         use it. Instead, rely on the layout field.
302 percent (float)::
303         The percentage which this container takes in its parent. A value of
304         +null+ means that the percent property does not make sense for this
305         container, for example for the root container.
306 rect (map)::
307         The absolute display coordinates for this container. Display
308         coordinates means that when you have two 1600x1200 monitors on a single
309         X11 Display (the standard way), the coordinates of the first window on
310         the second monitor are +{ "x": 1600, "y": 0, "width": 1600, "height":
311         1200 }+.
312 window_rect (map)::
313         The coordinates of the *actual client window* inside its container.
314         These coordinates are relative to the container and do not include the
315         window decoration (which is actually rendered on the parent container).
316         So, when using the +default+ layout, you will have a 2 pixel border on
317         each side, making the window_rect +{ "x": 2, "y": 0, "width": 632,
318         "height": 366 }+ (for example).
319 deco_rect (map)::
320         The coordinates of the *window decoration* inside its container. These
321         coordinates are relative to the container and do not include the actual
322         client window.
323 geometry (map)::
324         The original geometry the window specified when i3 mapped it. Used when
325         switching a window to floating mode, for example.
326 window (integer)::
327         The X11 window ID of the *actual client window* inside this container.
328         This field is set to null for split containers or otherwise empty
329         containers. This ID corresponds to what xwininfo(1) and other
330         X11-related tools display (usually in hex).
331 window_properties (map)::
332         X11 window properties title, instance, class, window_role and transient_for.
333 urgent (bool)::
334         Whether this container (window, split container, floating container or
335         workspace) has the urgency hint set, directly or indirectly. All parent
336         containers up until the workspace container will be marked urgent if they
337         have at least one urgent child.
338 focused (bool)::
339         Whether this container is currently focused.
340 focus (array of integer)::
341         List of child node IDs (see +nodes+, +floating_nodes+ and +id+) in focus
342         order. Traversing the tree by following the first entry in this array
343         will result in eventually reaching the one node with +focused+ set to
344         true.
345 nodes (array of node)::
346         The tiling (i.e. non-floating) child containers of this node.
347 floating_nodes (array of node)::
348         The floating child containers of this node. Only non-empty on nodes with
349         type +workspace+.
350
351 Please note that in the following example, I have left out some keys/values
352 which are not relevant for the type of the node. Otherwise, the example would
353 be by far too long (it already is quite long, despite showing only 1 window and
354 one dock window).
355
356 It is useful to have an overview of the structure before taking a look at the
357 JSON dump:
358
359 * root
360 ** LVDS1
361 *** topdock
362 *** content
363 **** workspace 1
364 ***** window 1
365 *** bottomdock
366 **** dock window 1
367 ** VGA1
368
369 *Example:*
370 -----------------------
371 {
372  "id": 6875648,
373  "name": "root",
374  "rect": {
375    "x": 0,
376    "y": 0,
377    "width": 1280,
378    "height": 800
379  },
380  "nodes": [
381
382    {
383     "id": 6878320,
384     "name": "LVDS1",
385     "layout": "output",
386     "rect": {
387       "x": 0,
388       "y": 0,
389       "width": 1280,
390       "height": 800
391     },
392     "nodes": [
393
394       {
395        "id": 6878784,
396        "name": "topdock",
397        "layout": "dockarea",
398        "orientation": "vertical",
399        "rect": {
400          "x": 0,
401          "y": 0,
402          "width": 1280,
403          "height": 0
404        }
405       },
406
407       {
408        "id": 6879344,
409        "name": "content",
410        "rect": {
411          "x": 0,
412          "y": 0,
413          "width": 1280,
414          "height": 782
415        },
416        "nodes": [
417
418          {
419           "id": 6880464,
420           "name": "1",
421           "orientation": "horizontal",
422           "rect": {
423             "x": 0,
424             "y": 0,
425             "width": 1280,
426             "height": 782
427           },
428           "window_properties": {
429             "class": "Evince",
430             "instance": "evince",
431             "title": "Properties",
432             "transient_for": 52428808
433           },
434           "floating_nodes": [],
435           "nodes": [
436
437             {
438              "id": 6929968,
439              "name": "#aa0000",
440              "border": "normal",
441              "percent": 1,
442              "rect": {
443                "x": 0,
444                "y": 18,
445                "width": 1280,
446                "height": 782
447              }
448             }
449
450           ]
451          }
452
453        ]
454       },
455
456       {
457        "id": 6880208,
458        "name": "bottomdock",
459        "layout": "dockarea",
460        "orientation": "vertical",
461        "rect": {
462          "x": 0,
463          "y": 782,
464          "width": 1280,
465          "height": 18
466        },
467        "nodes": [
468
469          {
470           "id": 6931312,
471           "name": "#00aa00",
472           "percent": 1,
473           "rect": {
474             "x": 0,
475             "y": 782,
476             "width": 1280,
477             "height": 18
478           }
479          }
480
481        ]
482       }
483     ]
484    }
485  ]
486 }
487 ------------------------
488
489 [[_marks_reply]]
490 === MARKS reply
491
492 The reply consists of a single array of strings for each container that has a
493 mark. A mark can only be set on one container, so the array is unique.
494 The order of that array is undefined.
495
496 If no window has a mark the response will be the empty array [].
497
498 [[_bar_config_reply]]
499 === BAR_CONFIG reply
500
501 This can be used by third-party workspace bars (especially i3bar, but others
502 are free to implement compatible alternatives) to get the +bar+ block
503 configuration from i3.
504
505 Depending on the input, the reply is either:
506
507 empty input::
508         An array of configured bar IDs
509 Bar ID::
510         A JSON map containing the configuration for the specified bar.
511
512 Each bar configuration has the following properties:
513
514 id (string)::
515         The ID for this bar. Included in case you request multiple
516         configurations and want to differentiate the different replies.
517 mode (string)::
518         Either +dock+ (the bar sets the dock window type) or +hide+ (the bar
519         does not show unless a specific key is pressed).
520 position (string)::
521         Either +bottom+ or +top+ at the moment.
522 status_command (string)::
523         Command which will be run to generate a statusline. Each line on stdout
524         of this command will be displayed in the bar. At the moment, no
525         formatting is supported.
526 font (string)::
527         The font to use for text on the bar.
528 workspace_buttons (boolean)::
529         Display workspace buttons or not? Defaults to true.
530 binding_mode_indicator (boolean)::
531         Display the mode indicator or not? Defaults to true.
532 verbose (boolean)::
533         Should the bar enable verbose output for debugging? Defaults to false.
534 colors (map)::
535         Contains key/value pairs of colors. Each value is a color code in hex,
536         formatted #rrggbb (like in HTML).
537
538 The following colors can be configured at the moment:
539
540 background::
541         Background color of the bar.
542 statusline::
543         Text color to be used for the statusline.
544 separator::
545         Text color to be used for the separator.
546 focused_background::
547         Background color of the bar on the currently focused monitor output.
548 focused_statusline::
549         Text color to be used for the statusline on the currently focused
550         monitor output.
551 focused_separator::
552         Text color to be used for the separator on the currently focused
553         monitor output.
554 focused_workspace_text/focused_workspace_bg/focused_workspace_border::
555         Text/background/border color for a workspace button when the workspace
556         has focus.
557 active_workspace_text/active_workspace_bg/active_workspace_border::
558         Text/background/border color for a workspace button when the workspace
559         is active (visible) on some output, but the focus is on another one.
560         You can only tell this apart from the focused workspace when you are
561         using multiple monitors.
562 inactive_workspace_text/inactive_workspace_bg/inactive_workspace_border::
563         Text/background/border color for a workspace button when the workspace
564         does not have focus and is not active (visible) on any output. This
565         will be the case for most workspaces.
566 urgent_workspace_text/urgent_workspace_bg/urgent_workspace_border::
567         Text/background/border color for workspaces which contain at least one
568         window with the urgency hint set.
569 binding_mode_text/binding_mode_bg/binding_mode_border::
570         Text/background/border color for the binding mode indicator.
571
572
573 *Example of configured bars:*
574 --------------
575 ["bar-bxuqzf"]
576 --------------
577
578 *Example of bar configuration:*
579 --------------
580 {
581  "id": "bar-bxuqzf",
582  "mode": "dock",
583  "position": "bottom",
584  "status_command": "i3status",
585  "font": "-misc-fixed-medium-r-normal--13-120-75-75-C-70-iso10646-1",
586  "workspace_buttons": true,
587  "binding_mode_indicator": true,
588  "verbose": false,
589  "colors": {
590    "background": "#c0c0c0",
591    "statusline": "#00ff00",
592    "focused_workspace_text": "#ffffff",
593    "focused_workspace_bg": "#000000"
594  }
595 }
596 --------------
597
598 [[_version_reply]]
599 === VERSION reply
600
601 The reply consists of a single JSON dictionary with the following keys:
602
603 major (integer)::
604         The major version of i3, such as +4+.
605 minor (integer)::
606         The minor version of i3, such as +2+. Changes in the IPC interface (new
607         features) will only occur with new minor (or major) releases. However,
608         bugfixes might be introduced in patch releases, too.
609 patch (integer)::
610         The patch version of i3, such as +1+ (when the complete version is
611         +4.2.1+). For versions such as +4.2+, patch will be set to +0+.
612 human_readable (string)::
613         A human-readable version of i3 containing the precise git version,
614         build date and branch name. When you need to display the i3 version to
615         your users, use the human-readable version whenever possible (since
616         this is what +i3 --version+ displays, too).
617 loaded_config_file_name (string)::
618         The current config path.
619
620 *Example:*
621 -------------------
622 {
623    "human_readable" : "4.2-169-gf80b877 (2012-08-05, branch \"next\")",
624    "loaded_config_file_name" : "/home/hwangcc23/.i3/config",
625    "minor" : 2,
626    "patch" : 0,
627    "major" : 4
628 }
629 -------------------
630
631 [[_binding_modes_reply]]
632 === BINDING_MODES reply
633
634 The reply consists of an array of all currently configured binding modes.
635
636 *Example:*
637 ---------------------
638 ["default", "resize"]
639 ---------------------
640
641 [[_config_reply]]
642 === CONFIG reply
643
644 The config reply is a map which currently only contains the "config" member,
645 which is a string containing the config file as loaded by i3 most recently.
646
647 *Example:*
648 -------------------
649 { "config": "font pango:monospace 8\nbindsym Mod4+q exit\n" }
650 -------------------
651
652 [[_tick_reply]]
653 === TICK reply
654
655 The reply is a map containing the "success" member. After the reply was
656 received, the tick event has been written to all IPC connections which subscribe
657 to tick events. UNIX sockets are usually buffered, but you can be certain that
658 once you receive the tick event you just triggered, you must have received all
659 events generated prior to the +SEND_TICK+ message (happened-before relation).
660
661 *Example:*
662 -------------------
663 { "success": true }
664 -------------------
665
666 [[_sync_reply]]
667 === SYNC reply
668
669 The reply is a map containing the "success" member. After the reply was
670 received, the https://i3wm.org/docs/testsuite.html#i3_sync[i3 sync message] was
671 responded to.
672
673 *Example:*
674 -------------------
675 { "success": true }
676 -------------------
677
678 == Events
679
680 [[events]]
681
682 To get informed when certain things happen in i3, clients can subscribe to
683 events. Events consist of a name (like "workspace") and an event reply type
684 (like I3_IPC_EVENT_WORKSPACE). Events sent by i3 follow a format similar to
685 replies but with the highest bit of the message type set to 1 to indicate an
686 event reply instead of a normal reply. Note that event types and reply types
687 do not follow the same enumeration scheme (e.g. event type 0 corresponds to the
688 workspace event however reply type 0 corresponds to the COMMAND reply).
689
690 Caveat: As soon as you subscribe to an event, it is not guaranteed any longer
691 that the requests to i3 are processed in order. This means, the following
692 situation can happen: You send a GET_WORKSPACES request but you receive a
693 "workspace" event before receiving the reply to GET_WORKSPACES. If your
694 program does not want to cope which such kinds of race conditions (an
695 event based library may not have a problem here), I suggest you create a
696 separate connection to receive events.
697
698 If an event message needs to be sent and the socket is not writeable (write
699 returns EAGAIN, happens when the socket doesn't have enough buffer space for
700 writing new data) then i3 uses a queue system to store outgoing messages for
701 each client. This is combined with a timer: if the message queue for a client is
702 not empty and no data where successfully written in the past 10 seconds, the
703 connection is killed. Practically, this means that your client should try to
704 always read events from the socket to avoid having its connection closed.
705
706 === Subscribing to events
707
708 By sending a message of type SUBSCRIBE with a JSON-encoded array as payload
709 you can register to an event.
710
711 *Example:*
712 ---------------------------------
713 type: SUBSCRIBE
714 payload: [ "workspace", "output" ]
715 ---------------------------------
716
717
718 === Available events
719
720 The numbers in parenthesis is the event type (keep in mind that you need to
721 strip the highest bit first).
722
723 workspace (0)::
724         Sent when the user switches to a different workspace, when a new
725         workspace is initialized or when a workspace is removed (because the
726         last client vanished).
727 output (1)::
728         Sent when RandR issues a change notification (of either screens,
729         outputs, CRTCs or output properties).
730 mode (2)::
731         Sent whenever i3 changes its binding mode.
732 window (3)::
733         Sent when a client's window is successfully reparented (that is when i3
734         has finished fitting it into a container), when a window received input
735         focus or when certain properties of the window have changed.
736 barconfig_update (4)::
737     Sent when the hidden_state or mode field in the barconfig of any bar
738     instance was updated and when the config is reloaded.
739 binding (5)::
740         Sent when a configured command binding is triggered with the keyboard or
741         mouse
742 shutdown (6)::
743         Sent when the ipc shuts down because of a restart or exit by user command
744 tick (7)::
745         Sent when the ipc client subscribes to the tick event (with +"first":
746         true+) or when any ipc client sends a SEND_TICK message (with +"first":
747         false+).
748
749 *Example:*
750 --------------------------------------------------------------------
751 # the appropriate 4 bytes read from the socket are stored in $input
752
753 # unpack a 32-bit unsigned integer
754 my $message_type = unpack("L", $input);
755
756 # check if the highest bit is 1
757 my $is_event = (($message_type >> 31) == 1);
758
759 # use the other bits
760 my $event_type = ($message_type & 0x7F);
761
762 if ($is_event) {
763   say "Received event of type $event_type";
764 }
765 --------------------------------------------------------------------
766
767 === workspace event
768
769 This event consists of a single serialized map containing a property
770 +change (string)+ which indicates the type of the change ("focus", "init",
771 "empty", "urgent", "reload", "rename", "restored", "move"). A
772 +current (object)+ property will be present with the affected workspace
773 whenever the type of event affects a workspace (otherwise, it will be +null).
774
775 When the change is "focus", an +old (object)+ property will be present with the
776 previous workspace.  When the first switch occurs (when i3 focuses the
777 workspace visible at the beginning) there is no previous workspace, and the
778 +old+ property will be set to +null+.  Also note that if the previous is empty
779 it will get destroyed when switching, but will still be present in the "old"
780 property.
781
782 *Example:*
783 ---------------------
784 {
785  "change": "focus",
786  "current": {
787   "id": 28489712,
788   "type": "workspace",
789   ...
790  }
791  "old": {
792   "id": 28489715,
793   "type": "workspace",
794   ...
795  }
796 }
797 ---------------------
798
799 === output event
800
801 This event consists of a single serialized map containing a property
802 +change (string)+ which indicates the type of the change (currently only
803 "unspecified").
804
805 *Example:*
806 ---------------------------
807 { "change": "unspecified" }
808 ---------------------------
809
810 === mode event
811
812 This event consists of a single serialized map containing a property
813 +change (string)+ which holds the name of current mode in use. The name
814 is the same as specified in config when creating a mode. The default
815 mode is simply named default. It contains a second property, +pango_markup+, which
816 defines whether pango markup shall be used for displaying this mode.
817
818 *Example:*
819 ---------------------------
820 {
821   "change": "default",
822   "pango_markup": true
823 }
824 ---------------------------
825
826 === window event
827
828 This event consists of a single serialized map containing a property
829 +change (string)+ which indicates the type of the change
830
831 * +new+ – the window has become managed by i3
832 * +close+ – the window has closed
833 * +focus+ – the window has received input focus
834 * +title+ – the window's title has changed
835 * +fullscreen_mode+ – the window has entered or exited fullscreen mode
836 * +move+ – the window has changed its position in the tree
837 * +floating+ – the window has transitioned to or from floating
838 * +urgent+ – the window has become urgent or lost its urgent status
839 * +mark+ – a mark has been added to or removed from the window
840
841 Additionally a +container (object)+ field will be present, which consists
842 of the window's parent container. Be aware that for the "new" event, the
843 container will hold the initial name of the newly reparented window (e.g.
844 if you run urxvt with a shell that changes the title, you will still at
845 this point get the window title as "urxvt").
846
847 *Example:*
848 ---------------------------
849 {
850  "change": "new",
851  "container": {
852   "id": 35569536,
853   "type": "con",
854   ...
855  }
856 }
857 ---------------------------
858
859 === barconfig_update event
860
861 This event consists of a single serialized map reporting on options from the
862 barconfig of the specified bar_id that were updated in i3. This event is the
863 same as a +GET_BAR_CONFIG+ reply for the bar with the given id.
864
865 === binding event
866
867 This event consists of a single serialized map reporting on the details of a
868 binding that ran a command because of user input. The +change (string)+ field
869 indicates what sort of binding event was triggered (right now it will always be
870 +"run"+ but may be expanded in the future).
871
872 The +binding (object)+ field contains details about the binding that was run:
873
874 command (string)::
875         The i3 command that is configured to run for this binding.
876 event_state_mask (array of strings)::
877         The group and modifier keys that were configured with this binding.
878 input_code (integer)::
879         If the binding was configured with +bindcode+, this will be the key code
880         that was given for the binding. If the binding is a mouse binding, it will be
881         the number of the mouse button that was pressed. Otherwise it will be 0.
882 symbol (string or null)::
883         If this is a keyboard binding that was configured with +bindsym+, this
884         field will contain the given symbol. Otherwise it will be +null+.
885 input_type (string)::
886         This will be +"keyboard"+ or +"mouse"+ depending on whether or not this was
887         a keyboard or a mouse binding.
888
889 *Example:*
890 ---------------------------
891 {
892  "change": "run",
893  "binding": {
894   "command": "nop",
895   "event_state_mask": [
896     "shift",
897     "ctrl"
898   ],
899   "input_code": 0,
900   "symbol": "t",
901   "input_type": "keyboard"
902  }
903 }
904 ---------------------------
905
906 === shutdown event
907
908 This event is triggered when the connection to the ipc is about to shutdown
909 because of a user action such as a +restart+ or +exit+ command. The +change
910 (string)+ field indicates why the ipc is shutting down. It can be either
911 +"restart"+ or +"exit"+.
912
913 *Example:*
914 ---------------------------
915 {
916  "change": "restart"
917 }
918 ---------------------------
919
920 === tick event
921
922 This event is triggered by a subscription to tick events or by a +SEND_TICK+
923 message.
924
925 *Example (upon subscription):*
926 --------------------------------------------------------------------------------
927 {
928  "first": true,
929  "payload": ""
930 }
931 --------------------------------------------------------------------------------
932
933 *Example (upon +SEND_TICK+ with a payload of +arbitrary string+):*
934 --------------------------------------------------------------------------------
935 {
936  "first": false,
937  "payload": "arbitrary string"
938 }
939 --------------------------------------------------------------------------------
940
941 == See also (existing libraries)
942
943 [[libraries]]
944
945 For some languages, libraries are available (so you don’t have to implement
946 all this on your own). This list names some (if you wrote one, please let me
947 know):
948
949 C::
950         * i3 includes a headerfile +i3/ipc.h+ which provides you all constants.
951         * https://github.com/acrisci/i3ipc-glib
952 C++::
953         * https://github.com/drmgc/i3ipcpp
954 Go::
955         * https://github.com/mdirkse/i3ipc-go
956         * https://github.com/i3/go-i3
957 JavaScript::
958         * https://github.com/acrisci/i3ipc-gjs
959 Lua::
960         * https://github.com/acrisci/i3ipc-lua
961 Perl::
962         * https://metacpan.org/module/AnyEvent::I3
963 Python::
964         * https://github.com/acrisci/i3ipc-python
965         * https://github.com/whitelynx/i3ipc (not maintained)
966         * https://github.com/ziberna/i3-py (not maintained)
967 Ruby::
968         * https://github.com/veelenga/i3ipc-ruby
969         * https://github.com/badboy/i3-ipc (not maintained)
970 Rust::
971         * https://github.com/tmerr/i3ipc-rs
972 OCaml::
973         * https://github.com/Armael/ocaml-i3ipc
974
975 == Appendix A: Detecting byte order in memory-safe languages
976
977 Some programming languages such as Go don’t offer a way to serialize data in the
978 native byte order of the machine they’re running on without resorting to tricks
979 involving the +unsafe+ package.
980
981 The following technique can be used (and will not be broken by changes to i3) to
982 detect the byte order i3 is using:
983
984 1. The byte order dependent fields of an IPC message are message type and
985    payload length.
986
987    * The message type +RUN_COMMAND+ (0) is the same in big and little endian, so
988      we can use it in either byte order to elicit a reply from i3.
989
990    * The payload length 65536 + 256 (+0x00 01 01 00+) is the same in big and
991      little endian, and also small enough to not worry about memory allocations
992      of that size. We must use payloads of length 65536 + 256 in every message
993      we send, so that i3 will be able to read the entire message regardless of
994      the byte order it uses.
995
996 2. Send a big endian encoded message of type +SUBSCRIBE+ (2) with payload `[]`
997    followed by 65536 + 256 - 2 +SPACE+ (ASCII 0x20) bytes.
998
999    * If i3 is running in big endian, this message is treated as a noop,
1000      resulting in a +SUBSCRIBE+ reply with payload `{"success":true}`
1001      footnote:[A small payload is important: that way, we circumvent dealing
1002      with UNIX domain socket buffer sizes, whose size depends on the
1003      implementation/operating system. Exhausting such a buffer results in an i3
1004      deadlock unless you concurrently read and write, which — depending on the
1005      programming language — makes the technique much more complicated.].
1006
1007    * If i3 is running in little endian, this message is read in its entirety due
1008      to the byte order independent payload length, then
1009      https://github.com/i3/i3/blob/d726d09d496577d1c337a4b97486f2c9fbc914f1/src/ipc.c#L1188[silently
1010      discarded] due to the unknown message type.
1011
1012 3. Send a byte order independent message, i.e. type +RUN_COMMAND+ (0) with
1013    payload +nop byte order detection. padding:+, padded to 65536 + 256 bytes
1014    with +a+ (ASCII 0x61) bytes. i3 will reply to this message with a reply of
1015    type +COMMAND+ (0).
1016
1017    * The human-readable prefix is in there to not confuse readers of the i3 log.
1018
1019    * This messages serves as a synchronization primitive so that we know whether
1020      i3 discarded the +SUBSCRIBE+ message or didn’t answer it yet.
1021
1022 4. Receive a message header from i3, decoding the message type as big endian.
1023
1024    * If the message’s reply type is +COMMAND+ (0), i3 is running in little
1025      endian (because the +SUBSCRIBE+ message was discarded). Decode the message
1026      payload length as little endian, receive the message payload.
1027
1028    * If the message’s reply type is anything else, i3 is running in big endian
1029      (because our big endian encoded +SUBSCRIBE+ message was answered). Decode
1030      the message payload length in big endian, receive the message
1031      payload. Then, receive the pending +COMMAND+ message reply in big endian.
1032
1033 5. From here on out, send/receive all messages using the detected byte order.
1034
1035 Find an example implementation of this technique in
1036 https://github.com/i3/go-i3/blob/master/byteorder.go