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 struct proto {
222 const char *schema;
224 /*
225 * should load the given url in the tab. Optionally, it may
226 * consider the given url as relative to the one already
227 * present in tab. It must set tab->urlstr to a serialized
228 * human-friendly URL.
229 */
230 void (*loadfn)(struct tab*, const char*);
231 };
233 extern TAILQ_HEAD(proxylist, proxy) proxies;
234 struct proxy {
235 char *match_proto;
237 char *host;
238 char *port;
239 int proto;
241 TAILQ_ENTRY(proxy) proxies;
242 };
244 enum {
245 PROTO_GEMINI,
246 PROTO_FINGER,
247 /* ... */
248 };
250 struct get_req {
251 int proto;
252 char host[254];
253 char port[16];
254 char req[1027];
255 };
257 struct kmap {
258 TAILQ_HEAD(map, keymap) m;
259 void (*unhandled_input)(void);
260 };
261 extern struct kmap global_map, minibuffer_map;
263 typedef void(interactivefn)(struct buffer *);
265 struct keymap {
266 int meta;
267 int key;
268 struct kmap map;
269 interactivefn *fn;
271 TAILQ_ENTRY(keymap) keymaps;
272 };
274 struct cmd {
275 const char *cmd;
276 void (*fn)(struct buffer *);
277 const char *descr;
278 };
279 extern struct cmd cmds[];
281 /* defaults.c */
282 void config_init(void);
283 int config_setprfx(const char *, const char *, const char *);
284 int config_setvari(const char *, int);
285 int config_setvars(const char *, char *);
286 int config_setcolor(int, const char *, int, int, int);
287 int config_setattr(const char *, int, int, int);
288 void config_apply_style(void);
290 /* fs.c */
291 extern char session_file[PATH_MAX];
293 int fs_init(void);
294 int fs_main(void);
295 int last_time_crashed(void);
296 int lock_session(void);
297 int load_certs(struct ohash*);
299 /* help.c */
300 void recompute_help(void);
302 /* hist.c */
303 void hist_clear_forward(struct histhead*, struct hist*);
304 void hist_push(struct histhead*, struct hist*);
306 /* keymap.c */
307 int kbd(const char*);
308 const char *unkbd(int);
309 int kmap_define_key(struct kmap*, const char*, void(*)(struct buffer*));
311 /* mime.c */
312 int setup_parser_for(struct tab*);
314 /* net.c */
315 int net_main(void);
317 /* parse.y */
318 void parseconfig(const char *, int);
320 /* sandbox.c */
321 void sandbox_net_process(void);
322 void sandbox_ui_process(void);
323 void sandbox_fs_process(void);
325 /* telescope.c */
326 void load_about_url(struct tab*, const char*);
327 void load_finger_url(struct tab *, const char *);
328 void load_gemini_url(struct tab*, const char*);
329 void load_via_proxy(struct tab *, const char *, struct proxy *);
330 void load_url(struct tab *, const char *, const char *);
331 int load_previous_page(struct tab*);
332 int load_next_page(struct tab*);
333 void free_tab(struct tab *);
334 void stop_tab(struct tab*);
335 void add_to_bookmarks(const char*);
336 void save_session(void);
338 /* tofu.c */
339 void tofu_init(struct ohash*, unsigned int, ptrdiff_t);
340 struct tofu_entry *tofu_lookup(struct ohash*, const char*, const char*);
341 void tofu_add(struct ohash*, struct tofu_entry*);
342 void tofu_update(struct ohash*, struct tofu_entry*);
343 void tofu_temp_trust(struct ohash *, const char *, const char *, const char *);
345 /* util.c */
346 int mark_nonblock(int);
347 int has_prefix(const char*, const char*);
348 int unicode_isspace(uint32_t);
349 int unicode_isgraph(uint32_t);
350 int dispatch_imsg(struct imsgev *, short, imsg_handlerfn **, size_t);
351 int imsg_compose_event(struct imsgev *, uint16_t, uint32_t, pid_t, int, const void *, uint16_t);
353 /* wrap.c */
354 void erase_buffer(struct buffer *);
355 void empty_linelist(struct buffer*);
356 void empty_vlist(struct buffer*);
357 int wrap_one(struct buffer *, const char *, struct line *, size_t);
358 int wrap_text(struct buffer*, const char*, struct line*, size_t);
359 int hardwrap_text(struct buffer*, struct line*, size_t);
360 int wrap_page(struct buffer *, int width);
362 #endif /* TELESCOPE_H */