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 #ifndef TELESCOPE_H
18 #define TELESCOPE_H
20 #include "cmd.h"
21 #include "compat.h"
22 #include "phos/phos.h"
24 #include <event.h>
25 #include <limits.h>
27 #define MIN(a, b) ((a) < (b) ? (a) : (b))
28 #define MAX(a, b) ((a) > (b) ? (a) : (b))
30 #define GEMINI_URL_LEN 1024
32 struct imsgev {
33 struct imsgbuf ibuf;
34 void (*handler)(int, short, void *);
35 struct event ev;
36 short events;
37 };
39 enum imsg_type {
40 /* ui <-> client/fs */
41 IMSG_GET, /* data is URL, peerid the tab id */
42 IMSG_GET_RAW, /* get but with an explicit req str */
43 IMSG_ERR,
44 IMSG_CHECK_CERT,
45 IMSG_CERT_STATUS,
46 IMSG_GOT_CODE,
47 IMSG_GOT_META,
48 IMSG_PROCEED,
49 IMSG_STOP,
50 IMSG_BUF,
51 IMSG_EOF,
52 IMSG_QUIT,
54 /* ui <-> fs */
55 IMSG_BOOKMARK_PAGE,
56 IMSG_BOOKMARK_OK,
57 IMSG_SAVE_CERT,
58 IMSG_SAVE_CERT_OK,
59 IMSG_UPDATE_CERT,
60 IMSG_UPDATE_CERT_OK,
62 IMSG_FILE_OPEN,
63 IMSG_FILE_OPENED,
65 IMSG_SESSION_START,
66 IMSG_SESSION_TAB,
67 IMSG_SESSION_TAB_TITLE,
68 IMSG_SESSION_END,
69 };
71 enum line_type {
72 /* text/gemini */
73 LINE_TEXT,
74 LINE_LINK,
75 LINE_TITLE_1,
76 LINE_TITLE_2,
77 LINE_TITLE_3,
78 LINE_ITEM,
79 LINE_QUOTE,
80 LINE_PRE_START,
81 LINE_PRE_CONTENT,
82 LINE_PRE_END,
84 /* minibuffer */
85 LINE_COMPL,
86 LINE_COMPL_CURRENT,
88 /* help */
89 LINE_HELP,
90 };
92 /* for lines: mark as hidden */
93 #define L_HIDDEN 1
95 /* for vlines: mark as continuation */
96 #define L_CONTINUATION 2
98 struct line {
99 enum line_type type;
100 char *line;
101 char *alt;
102 void *data;
103 int flags;
104 TAILQ_ENTRY(line) lines;
105 };
107 struct vline {
108 struct line *parent;
109 char *line;
110 int flags;
111 TAILQ_ENTRY(vline) vlines;
112 };
114 struct parser;
115 struct page;
117 typedef int (*parsechunkfn)(struct parser*, const char*, size_t);
118 typedef int (*parserfreefn)(struct parser*);
120 typedef void (imsg_handlerfn)(struct imsg*, size_t);
122 struct parser {
123 const char *name;
124 char title[128+1];
125 char *buf;
126 size_t len;
127 size_t cap;
129 #define PARSER_IN_BODY 1
130 #define PARSER_IN_PRE 2
131 int flags;
132 parsechunkfn parse;
133 parserfreefn free;
135 TAILQ_HEAD(, line) head;
136 };
138 /*
139 * differnt types of trust for a certificate. Following
140 * gemini://thfr.info/gemini/modified-trust-verify.gmi
141 */
142 enum trust_state {
143 TS_UNKNOWN,
144 TS_UNTRUSTED,
145 TS_TEMP_TRUSTED,
146 TS_TRUSTED,
147 TS_VERIFIED,
148 };
150 struct tofu_entry {
151 char domain[GEMINI_URL_LEN];
153 /*
154 * enough space for ``PROTO:HASH''. probably isn't a good
155 * idea tho.
156 */
157 char hash[128+1];
158 int verified;
159 };
161 struct histhead {
162 TAILQ_HEAD(mhisthead, hist) head;
163 size_t len;
164 };
165 struct hist {
166 char h[1025];
167 TAILQ_ENTRY(hist) entries;
168 };
170 struct buffer {
171 struct parser page;
173 size_t last_line_off;
174 int force_redraw;
176 int curs_x;
177 int curs_y;
178 size_t line_off;
179 size_t line_max;
180 struct vline *top_line;
181 struct vline *current_line;
182 size_t cpoff;
183 TAILQ_HEAD(vhead, vline) head;
184 };
186 #define TAB_CURRENT 0x1 /* only for save_session */
187 #define TAB_URGENT 0x2
188 #define TAB_LAZY 0x4 /* to lazy load tabs */
190 #define NEW_TAB_URL "about:new"
192 extern TAILQ_HEAD(tabshead, tab) tabshead;
193 struct tab {
194 TAILQ_ENTRY(tab) tabs;
195 uint32_t id;
196 uint32_t flags;
198 char *cert;
199 enum trust_state trust;
200 struct proxy *proxy;
201 struct phos_uri uri;
202 struct histhead hist;
203 struct hist *hist_cur;
204 size_t hist_off;
206 int code;
207 char meta[GEMINI_URL_LEN];
208 int redirect_count;
210 struct buffer buffer;
212 short loading_anim;
213 short loading_anim_step;
214 struct event loadingev;
216 int fd;
217 size_t bytes;
218 char *path;
219 };
221 extern TAILQ_HEAD(proxylist, proxy) proxies;
222 struct proxy {
223 char *match_proto;
225 char *host;
226 char *port;
227 int proto;
229 TAILQ_ENTRY(proxy) proxies;
230 };
232 enum {
233 PROTO_FINGER,
234 PROTO_GEMINI,
235 /* ... */
236 };
238 struct get_req {
239 int proto;
240 char host[254];
241 char port[16];
242 char req[1027];
243 };
245 struct kmap {
246 TAILQ_HEAD(map, keymap) m;
247 void (*unhandled_input)(void);
248 };
249 extern struct kmap global_map, minibuffer_map;
251 typedef void(interactivefn)(struct buffer *);
253 struct keymap {
254 int meta;
255 int key;
256 struct kmap map;
257 interactivefn *fn;
259 TAILQ_ENTRY(keymap) keymaps;
260 };
262 struct cmd {
263 const char *cmd;
264 void (*fn)(struct buffer *);
265 const char *descr;
266 };
267 extern struct cmd cmds[];
269 /* defaults.c */
270 void config_init(void);
271 int config_setprfx(const char *, const char *, const char *);
272 int config_setvari(const char *, int);
273 int config_setvars(const char *, char *);
274 int config_setcolor(int, const char *, int, int, int);
275 int config_setattr(const char *, int, int, int);
276 void config_apply_style(void);
278 /* fs.c */
279 extern char session_file[PATH_MAX];
281 int fs_init(void);
282 int fs_main(void);
283 int last_time_crashed(void);
284 int lock_session(void);
285 int load_certs(struct ohash*);
287 /* help.c */
288 void recompute_help(void);
290 /* hist.c */
291 void hist_clear_forward(struct histhead*, struct hist*);
292 void hist_push(struct histhead*, struct hist*);
294 /* keymap.c */
295 int kbd(const char*);
296 const char *unkbd(int);
297 int kmap_define_key(struct kmap*, const char*, void(*)(struct buffer*));
299 /* mime.c */
300 int setup_parser_for(struct tab*);
302 /* net.c */
303 int net_main(void);
305 /* parse.y */
306 void parseconfig(const char *, int);
308 /* sandbox.c */
309 void sandbox_net_process(void);
310 void sandbox_ui_process(void);
311 void sandbox_fs_process(void);
313 /* telescope.c */
314 void load_url(struct tab *, const char *, const char *);
315 int load_previous_page(struct tab*);
316 int load_next_page(struct tab*);
317 void free_tab(struct tab *);
318 void stop_tab(struct tab*);
319 void add_to_bookmarks(const char*);
320 void save_session(void);
322 /* tofu.c */
323 void tofu_init(struct ohash*, unsigned int, ptrdiff_t);
324 struct tofu_entry *tofu_lookup(struct ohash*, const char*, const char*);
325 void tofu_add(struct ohash*, struct tofu_entry*);
326 void tofu_update(struct ohash*, struct tofu_entry*);
327 void tofu_temp_trust(struct ohash *, const char *, const char *, const char *);
329 /* util.c */
330 int mark_nonblock(int);
331 int has_prefix(const char*, const char*);
332 int unicode_isspace(uint32_t);
333 int unicode_isgraph(uint32_t);
334 int dispatch_imsg(struct imsgev *, short, imsg_handlerfn **, size_t);
335 int imsg_compose_event(struct imsgev *, uint16_t, uint32_t, pid_t, int, const void *, uint16_t);
337 /* wrap.c */
338 void erase_buffer(struct buffer *);
339 void empty_linelist(struct buffer*);
340 void empty_vlist(struct buffer*);
341 int wrap_one(struct buffer *, const char *, struct line *, size_t);
342 int wrap_text(struct buffer*, const char*, struct line*, size_t);
343 int hardwrap_text(struct buffer*, struct line*, size_t);
344 int wrap_page(struct buffer *, int width);
346 #endif /* TELESCOPE_H */