]> git.lizzy.rs Git - bspwm.git/blob - restore.c
Remove tags
[bspwm.git] / restore.c
1 /* * Copyright (c) 2012-2013 Bastien Dejean
2  * All rights reserved.
3  *
4  * Redistribution and use in source and binary forms, with or without modification,
5  * are permitted provided that the following conditions are met:
6  *
7  *  * Redistributions of source code must retain the above copyright notice, this
8  * list of conditions and the following disclaimer.
9  *  * Redistributions in binary form must reproduce the above copyright notice,
10  * this list of conditions and the following disclaimer in the documentation and/or
11  * other materials provided with the distribution.
12  *
13  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
14  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
16  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
17  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
18  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
19  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
20  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
22  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23  */
24
25 #include <ctype.h>
26 #include <string.h>
27 #include "bspwm.h"
28 #include "desktop.h"
29 #include "ewmh.h"
30 #include "history.h"
31 #include "monitor.h"
32 #include "window.h"
33 #include "query.h"
34 #include "settings.h"
35 #include "stack.h"
36 #include "tree.h"
37 #include "restore.h"
38
39 void restore_tree(char *file_path)
40 {
41     if (file_path == NULL)
42         return;
43
44     FILE *snapshot = fopen(file_path, "r");
45     if (snapshot == NULL) {
46         warn("Restore tree: can't open file\n");
47         return;
48     }
49
50     PUTS("restore tree");
51
52     char line[MAXLEN];
53     char name[MAXLEN];
54     coordinates_t loc;
55     monitor_t *m = NULL;
56     desktop_t *d = NULL;
57     node_t *n = NULL;
58     num_clients = 0;
59     unsigned int level, last_level = 0;
60
61     while (fgets(line, sizeof(line), snapshot) != NULL) {
62         unsigned int len = strlen(line);
63         level = 0;
64
65         while (level < len && isspace(line[level]))
66             level++;
67
68         if (level == 0) {
69             int x, y, left, right, top, bottom;
70             unsigned int w, h;
71             char end = 0;
72             name[0] = '\0';
73             sscanf(line + level, "%s %ux%u%i%i %i,%i,%i,%i %c", name, &w, &h, &x, &y, &top, &right, &bottom, &left, &end);
74             m = find_monitor(name);
75             if (m == NULL)
76                 continue;
77             m->rectangle = (xcb_rectangle_t) {x, y, w, h};
78             m->top_padding = top;
79             m->right_padding = right;
80             m->bottom_padding = bottom;
81             m->left_padding = left;
82             if (end != 0)
83                 mon = m;
84         } else if (level == 2) {
85             if (m == NULL)
86                 continue;
87             int wg;
88             unsigned int bw;
89             char layout = 0, end = 0;
90             name[0] = '\0';
91             loc.desktop = NULL;
92             sscanf(line + level, "%s %u %i %c %c", name, &bw, &wg, &layout, &end);
93             locate_desktop(name, &loc);
94             d = loc.desktop;
95             if (d == NULL)
96                 continue;
97             d->border_width = bw;
98             d->window_gap = wg;
99             if (layout == 'M')
100                 d->layout = LAYOUT_MONOCLE;
101             else if (layout == 'T')
102                 d->layout = LAYOUT_TILED;
103             if (end != 0)
104                 m->desk = d;
105
106         } else {
107             if (m == NULL || d == NULL)
108                 continue;
109             node_t *birth = make_node();
110             if (level == 4) {
111                 empty_desktop(d);
112                 d->root = birth;
113             } else if (n != NULL) {
114                 if (level > last_level) {
115                     n->first_child = birth;
116                 } else {
117                     do {
118                         n = n->parent;
119                     } while (n != NULL && n->second_child != NULL);
120                     if (n == NULL)
121                         continue;
122                     n->second_child = birth;
123                 }
124                 birth->parent = n;
125             }
126             n = birth;
127
128             char br;
129             if (isupper(line[level])) {
130                 char st;
131                 sscanf(line + level, "%c %c %lf", &st, &br, &n->split_ratio);
132                 if (st == 'H')
133                     n->split_type = TYPE_HORIZONTAL;
134                 else if (st == 'V')
135                     n->split_type = TYPE_VERTICAL;
136             } else {
137                 client_t *c = make_client(XCB_NONE);
138                 num_clients++;
139                 char floating, transient, fullscreen, urgent, locked, sticky, frame, private, sd, sm, end = 0;
140                 sscanf(line + level, "%c %s %X %u %hux%hu%hi%hi %c %c%c%c%c%c%c%c%c%c %c", &br, c->class_name, &c->window, &c->border_width, &c->floating_rectangle.width, &c->floating_rectangle.height, &c->floating_rectangle.x, &c->floating_rectangle.y, &sd, &floating, &transient, &fullscreen, &urgent, &locked, &sticky, &frame, &private, &sm, &end);
141                 c->floating = (floating == '-' ? false : true);
142                 c->transient = (transient == '-' ? false : true);
143                 c->fullscreen = (fullscreen == '-' ? false : true);
144                 c->urgent = (urgent == '-' ? false : true);
145                 c->locked = (locked == '-' ? false : true);
146                 c->sticky = (sticky == '-' ? false : true);
147                 c->frame = (frame == '-' ? false : true);
148                 c->private = (private == '-' ? false : true);
149                 n->split_mode = (sm == '-' ? MODE_AUTOMATIC : MODE_MANUAL);
150                 if (sd == 'U')
151                     n->split_dir = DIR_UP;
152                 else if (sd == 'R')
153                     n->split_dir = DIR_RIGHT;
154                 else if (sd == 'D')
155                     n->split_dir = DIR_DOWN;
156                 else if (sd == 'L')
157                     n->split_dir = DIR_LEFT;
158                 n->client = c;
159                 if (end != 0)
160                     d->focus = n;
161                 if (c->sticky)
162                     m->num_sticky++;
163             }
164             if (br == 'a')
165                 n->birth_rotation = 90;
166             else if (br == 'c')
167                 n->birth_rotation = 270;
168             else if (br == 'm')
169                 n->birth_rotation = 0;
170         }
171         last_level = level;
172     }
173
174     fclose(snapshot);
175
176     for (monitor_t *m = mon_head; m != NULL; m = m->next)
177         for (desktop_t *d = m->desk_head; d != NULL; d = d->next)
178             for (node_t *n = first_extrema(d->root); n != NULL; n = next_leaf(n, d->root)) {
179                 uint32_t values[] = {get_event_mask(n->client)};
180                 xcb_change_window_attributes(dpy, n->client->window, XCB_CW_EVENT_MASK, values);
181                 if (n->client->floating) {
182                     n->vacant = true;
183                     update_vacant_state(n->parent);
184                 }
185                 if (n->client->private)
186                     update_privacy_level(n, true);
187             }
188     ewmh_update_current_desktop();
189 }
190
191 void restore_history(char *file_path)
192 {
193     if (file_path == NULL)
194         return;
195
196     FILE *snapshot = fopen(file_path, "r");
197     if (snapshot == NULL) {
198         warn("Restore history: can't open '%s'.\n", file_path);
199         return;
200     }
201
202     PUTS("restore history");
203
204     char line[MAXLEN];
205     char mnm[SMALEN];
206     char dnm[SMALEN];
207     xcb_window_t win;
208
209     while (fgets(line, sizeof(line), snapshot) != NULL) {
210         if (sscanf(line, "%s %s %X", mnm, dnm, &win) == 3) {
211             coordinates_t loc;
212             if (win != XCB_NONE && !locate_window(win, &loc)) {
213                 warn("Can't locate window 0x%X.\n", win);
214                 continue;
215             }
216             node_t *n = (win == XCB_NONE ? NULL : loc.node);
217             if (!locate_desktop(dnm, &loc)) {
218                 warn("Can't locate desktop '%s'.\n", dnm);
219                 continue;
220             }
221             desktop_t *d = loc.desktop;
222             if (!locate_monitor(mnm, &loc)) {
223                 warn("Can't locate monitor '%s'.\n", mnm);
224                 continue;
225             }
226             monitor_t *m = loc.monitor;
227             history_add(m, d, n);
228         } else {
229             warn("Can't parse history entry: '%s'\n", line);
230         }
231     }
232
233     fclose(snapshot);
234 }
235
236 void restore_stack(char *file_path)
237 {
238     if (file_path == NULL)
239         return;
240
241     FILE *snapshot = fopen(file_path, "r");
242     if (snapshot == NULL) {
243         warn("Restore stack: can't open '%s'.\n", file_path);
244         return;
245     }
246
247     PUTS("restore stack");
248
249     char line[MAXLEN];
250     xcb_window_t win;
251
252     while (fgets(line, sizeof(line), snapshot) != NULL) {
253         if (sscanf(line, "%X", &win) == 1) {
254             coordinates_t loc;
255             if (locate_window(win, &loc))
256                 stack_insert_after(stack_tail, loc.node);
257             else
258                 warn("Can't locate window 0x%X.\n", win);
259         } else {
260             warn("Can't parse stack entry: '%s'\n", line);
261         }
262     }
263
264     fclose(snapshot);
265 }