Blob


1 /*
2 * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 *
4 * Permission to use, copy, modify, and distribute this software for any
5 * purpose with or without fee is hereby granted, provided that the above
6 * copyright notice and this permission notice appear in all copies.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 */
17 #include "compat.h"
19 #include <errno.h>
20 #include <stdio.h>
21 #include <stdlib.h>
22 #include <string.h>
23 #include <unistd.h>
25 #include "defaults.h"
26 #include "fs.h"
27 #include "minibuffer.h"
28 #include "parser.h"
29 #include "session.h"
30 #include "ui.h"
32 static struct event autosaveev;
34 void
35 switch_to_tab(struct tab *tab)
36 {
37 current_tab = tab;
38 tab->flags &= ~TAB_URGENT;
40 if (operating && tab->flags & TAB_LAZY)
41 load_url_in_tab(tab, tab->hist_cur->h, NULL, 0);
42 }
44 unsigned int
45 tab_new_id(void)
46 {
47 static uint32_t tab_counter;
49 return tab_counter++;
50 }
52 struct tab *
53 new_tab(const char *url, const char *base, struct tab *after)
54 {
55 struct tab *tab;
57 ui_schedule_redraw();
58 autosave_hook();
60 if ((tab = calloc(1, sizeof(*tab))) == NULL) {
61 event_loopbreak();
62 return NULL;
63 }
65 TAILQ_INIT(&tab->hist.head);
67 TAILQ_INIT(&tab->buffer.head);
68 TAILQ_INIT(&tab->buffer.page.head);
70 tab->id = tab_new_id();
71 if (!operating)
72 tab->flags |= TAB_LAZY;
73 switch_to_tab(tab);
75 if (after != NULL)
76 TAILQ_INSERT_AFTER(&tabshead, after, tab, tabs);
77 else
78 TAILQ_INSERT_TAIL(&tabshead, tab, tabs);
80 load_url_in_tab(tab, url, base, 0);
81 return tab;
82 }
84 /*
85 * Free every resource linked to the tab, including the tab itself.
86 * Removes the tab from the tablist, but doesn't update the
87 * current_tab though.
88 */
89 void
90 free_tab(struct tab *tab)
91 {
92 stop_tab(tab);
93 ui_schedule_redraw();
94 autosave_hook();
96 if (evtimer_pending(&tab->loadingev, NULL))
97 evtimer_del(&tab->loadingev);
99 TAILQ_REMOVE(&tabshead, tab, tabs);
100 free(tab);
103 void
104 stop_tab(struct tab *tab)
106 ui_send_net(IMSG_STOP, tab->id, NULL, 0);
109 void
110 save_session(void)
112 struct tab *tab;
113 char *t;
114 int flags;
116 if (safe_mode)
117 return;
119 ui_send_fs(IMSG_SESSION_START, 0, NULL, 0);
121 TAILQ_FOREACH(tab, &tabshead, tabs) {
122 flags = tab->flags;
123 if (tab == current_tab)
124 flags |= TAB_CURRENT;
126 t = tab->hist_cur->h;
127 ui_send_fs(IMSG_SESSION_TAB, flags, t, strlen(t)+1);
129 t = tab->buffer.page.title;
130 ui_send_fs(IMSG_SESSION_TAB_TITLE, 0, t, strlen(t)+1);
133 ui_send_fs(IMSG_SESSION_END, 0, NULL, 0);
136 void
137 autosave_init(void)
139 evtimer_set(&autosaveev, autosave_timer, NULL);
142 void
143 autosave_timer(int fd, short event, void *data)
145 save_session();
148 /*
149 * Function to be called in "interesting" places where we may want to
150 * schedule an autosave (like on new tab or before loading an url.)
151 */
152 void
153 autosave_hook(void)
155 struct timeval tv;
157 if (autosave <= 0)
158 return;
160 if (!evtimer_pending(&autosaveev, NULL)) {
161 tv.tv_sec = autosave;
162 tv.tv_usec = 0;
164 evtimer_add(&autosaveev, &tv);