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>
26 #define MIN(a, b) ((a) < (b) ? (a) : (b))
27 #define MAX(a, b) ((a) > (b) ? (a) : (b))
29 #define GEMINI_URL_LEN 1024
31 struct imsgev {
32 struct imsgbuf ibuf;
33 void (*handler)(int, short, void *);
34 struct event ev;
35 short events;
36 };
38 enum imsg_type {
39 /* ui <-> client/fs */
40 IMSG_GET, /* data is URL, peerid the tab id */
41 IMSG_GET_RAW, /* get but with an explicit req str */
42 IMSG_ERR,
43 IMSG_CHECK_CERT,
44 IMSG_CERT_STATUS,
45 IMSG_GOT_CODE,
46 IMSG_GOT_META,
47 IMSG_PROCEED,
48 IMSG_STOP,
49 IMSG_BUF,
50 IMSG_EOF,
51 IMSG_QUIT,
53 /* ui <-> fs */
54 IMSG_BOOKMARK_PAGE,
55 IMSG_BOOKMARK_OK,
56 IMSG_SAVE_CERT,
57 IMSG_SAVE_CERT_OK,
58 IMSG_UPDATE_CERT,
59 IMSG_UPDATE_CERT_OK,
61 IMSG_FILE_OPEN,
62 IMSG_FILE_OPENED,
64 IMSG_SESSION_START,
65 IMSG_SESSION_TAB,
66 IMSG_SESSION_END,
67 };
69 enum line_type {
70 /* text/gemini */
71 LINE_TEXT,
72 LINE_LINK,
73 LINE_TITLE_1,
74 LINE_TITLE_2,
75 LINE_TITLE_3,
76 LINE_ITEM,
77 LINE_QUOTE,
78 LINE_PRE_START,
79 LINE_PRE_CONTENT,
80 LINE_PRE_END,
82 /* minibuffer */
83 LINE_COMPL,
84 LINE_COMPL_CURRENT,
85 };
87 /* for lines: mark as hidden */
88 #define L_HIDDEN 1
90 /* for vlines: mark as continuation */
91 #define L_CONTINUATION 2
93 struct line {
94 enum line_type type;
95 char *line;
96 union {
97 char *alt;
98 void *data;
99 } meta;
100 int flags;
101 TAILQ_ENTRY(line) lines;
102 };
104 struct vline {
105 struct line *parent;
106 char *line;
107 int flags;
108 TAILQ_ENTRY(vline) vlines;
109 };
111 struct parser;
112 struct page;
114 typedef int (*parsechunkfn)(struct parser*, const char*, size_t);
115 typedef int (*parserfreefn)(struct parser*);
117 typedef void (imsg_handlerfn)(struct imsg*, size_t);
119 struct parser {
120 const char *name;
121 char title[32+1];
122 char *buf;
123 size_t len;
124 size_t cap;
126 #define PARSER_IN_BODY 1
127 #define PARSER_IN_PRE 2
128 int flags;
129 parsechunkfn parse;
130 parserfreefn free;
132 TAILQ_HEAD(, line) head;
133 };
135 /*
136 * differnt types of trust for a certificate. Following
137 * gemini://thfr.info/gemini/modified-trust-verify.gmi
138 */
139 enum trust_state {
140 TS_UNKNOWN,
141 TS_UNTRUSTED,
142 TS_TEMP_TRUSTED,
143 TS_TRUSTED,
144 TS_VERIFIED,
145 };
147 struct tofu_entry {
148 char domain[GEMINI_URL_LEN];
150 /*
151 * enough space for ``PROTO:HASH''. probably isn't a good
152 * idea tho.
153 */
154 char hash[128+1];
155 int verified;
156 };
158 struct histhead {
159 TAILQ_HEAD(mhisthead, hist) head;
160 size_t len;
161 };
162 struct hist {
163 char h[1025];
164 TAILQ_ENTRY(hist) entries;
165 };
167 struct buffer {
168 struct parser page;
170 size_t last_line_off;
171 int force_redraw;
173 int curs_x;
174 int curs_y;
175 size_t line_off;
176 size_t line_max;
177 struct vline *top_line;
178 struct vline *current_line;
179 size_t cpoff;
180 TAILQ_HEAD(vhead, vline) head;
181 };
183 #define TAB_CURRENT 0x1
184 #define TAB_URGENT 0x2
186 #define NEW_TAB_URL "about:new"
188 extern TAILQ_HEAD(tabshead, tab) tabshead;
189 struct tab {
190 TAILQ_ENTRY(tab) tabs;
191 uint32_t id;
192 uint32_t flags;
194 char *cert;
195 enum trust_state trust;
196 struct proxy *proxy;
197 struct phos_uri uri;
198 struct histhead hist;
199 struct hist *hist_cur;
200 size_t hist_off;
202 int code;
203 char meta[GEMINI_URL_LEN];
204 int redirect_count;
206 struct buffer buffer;
208 short loading_anim;
209 short loading_anim_step;
210 struct event loadingev;
212 int fd;
213 size_t bytes;
214 char *path;
215 };
217 struct proto {
218 const char *schema;
220 /*
221 * should load the given url in the tab. Optionally, it may
222 * consider the given url as relative to the one already
223 * present in tab. It must set tab->urlstr to a serialized
224 * human-friendly URL.
225 */
226 void (*loadfn)(struct tab*, const char*);
227 };
229 extern TAILQ_HEAD(proxylist, proxy) proxies;
230 struct proxy {
231 char *match_proto;
233 char *host;
234 char *port;
235 int proto;
237 TAILQ_ENTRY(proxy) proxies;
238 };
240 enum {
241 PROTO_GEMINI,
242 /* ... */
243 };
245 struct get_req {
246 int proto;
247 char host[254];
248 char port[16];
249 char req[1027];
250 };
252 struct kmap {
253 TAILQ_HEAD(map, keymap) m;
254 void (*unhandled_input)(void);
255 };
256 extern struct kmap global_map, minibuffer_map;
258 typedef void(interactivefn)(struct buffer *);
260 struct keymap {
261 int meta;
262 int key;
263 struct kmap map;
264 interactivefn *fn;
266 TAILQ_ENTRY(keymap) keymaps;
267 };
269 struct cmd {
270 const char *cmd;
271 void (*fn)(struct buffer *);
272 };
273 extern struct cmd cmds[];
275 /* defaults.c */
276 void config_init(void);
277 int config_setprfx(const char *, const char *, const char *);
278 int config_setvari(const char *, int);
279 int config_setvars(const char *, char *);
280 int config_setcolor(int, const char *, int, int, int);
281 int config_setattr(const char *, int, int, int);
282 void config_apply_style(void);
284 /* fs.c */
285 int fs_init(void);
286 int fs_main(void);
287 int load_certs(struct ohash*);
288 int load_last_session(void(*)(const char*));
290 /* gemini.c */
291 int client_main(void);
293 /* hist.c */
294 void hist_clear_forward(struct histhead*, struct hist*);
295 void hist_push(struct histhead*, struct hist*);
297 /* keymap.c */
298 int kbd(const char*);
299 const char *unkbd(int);
300 int kmap_define_key(struct kmap*, const char*, void(*)(struct buffer*));
302 /* mime.c */
303 int setup_parser_for(struct tab*);
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_about_url(struct tab*, const char*);
315 void load_gemini_url(struct tab*, const char*);
316 void load_via_proxy(struct tab *, const char *, struct proxy *);
317 void load_url(struct tab*, const char*);
318 int load_previous_page(struct tab*);
319 int load_next_page(struct tab*);
320 void stop_tab(struct tab*);
321 void add_to_bookmarks(const char*);
322 void save_session(void);
324 /* tofu.c */
325 void tofu_init(struct ohash*, unsigned int, ptrdiff_t);
326 struct tofu_entry *tofu_lookup(struct ohash*, const char*, const char*);
327 void tofu_add(struct ohash*, struct tofu_entry*);
328 void tofu_update(struct ohash*, struct tofu_entry*);
329 void tofu_temp_trust(struct ohash *, const char *, const char *, const char *);
331 /* util.c */
332 int mark_nonblock(int);
333 int has_prefix(const char*, const char*);
334 int unicode_isspace(uint32_t);
335 int unicode_isgraph(uint32_t);
336 void dispatch_imsg(struct imsgev*, short, imsg_handlerfn**, size_t);
337 int imsg_compose_event(struct imsgev *, uint16_t, uint32_t, pid_t, int, const void *, uint16_t);
339 /* wrap.c */
340 void erase_buffer(struct buffer *);
341 void empty_linelist(struct buffer*);
342 void empty_vlist(struct buffer*);
343 int wrap_one(struct buffer *, const char *, struct line *, size_t);
344 int wrap_text(struct buffer*, const char*, struct line*, size_t);
345 int hardwrap_text(struct buffer*, struct line*, size_t);
347 #endif /* TELESCOPE_H */