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_END,
68 };
70 enum line_type {
71 /* text/gemini */
72 LINE_TEXT,
73 LINE_LINK,
74 LINE_TITLE_1,
75 LINE_TITLE_2,
76 LINE_TITLE_3,
77 LINE_ITEM,
78 LINE_QUOTE,
79 LINE_PRE_START,
80 LINE_PRE_CONTENT,
81 LINE_PRE_END,
83 /* minibuffer */
84 LINE_COMPL,
85 LINE_COMPL_CURRENT,
86 };
88 /* for lines: mark as hidden */
89 #define L_HIDDEN 1
91 /* for vlines: mark as continuation */
92 #define L_CONTINUATION 2
94 struct line {
95 enum line_type type;
96 char *line;
97 char *alt;
98 void *data;
99 int flags;
100 TAILQ_ENTRY(line) lines;
101 };
103 struct vline {
104 struct line *parent;
105 char *line;
106 int flags;
107 TAILQ_ENTRY(vline) vlines;
108 };
110 struct parser;
111 struct page;
113 typedef int (*parsechunkfn)(struct parser*, const char*, size_t);
114 typedef int (*parserfreefn)(struct parser*);
116 typedef void (imsg_handlerfn)(struct imsg*, size_t);
118 struct parser {
119 const char *name;
120 char title[128+1];
121 char *buf;
122 size_t len;
123 size_t cap;
125 #define PARSER_IN_BODY 1
126 #define PARSER_IN_PRE 2
127 int flags;
128 parsechunkfn parse;
129 parserfreefn free;
131 TAILQ_HEAD(, line) head;
132 };
134 /*
135 * differnt types of trust for a certificate. Following
136 * gemini://thfr.info/gemini/modified-trust-verify.gmi
137 */
138 enum trust_state {
139 TS_UNKNOWN,
140 TS_UNTRUSTED,
141 TS_TEMP_TRUSTED,
142 TS_TRUSTED,
143 TS_VERIFIED,
144 };
146 struct tofu_entry {
147 char domain[GEMINI_URL_LEN];
149 /*
150 * enough space for ``PROTO:HASH''. probably isn't a good
151 * idea tho.
152 */
153 char hash[128+1];
154 int verified;
155 };
157 struct histhead {
158 TAILQ_HEAD(mhisthead, hist) head;
159 size_t len;
160 };
161 struct hist {
162 char h[1025];
163 TAILQ_ENTRY(hist) entries;
164 };
166 struct buffer {
167 struct parser page;
169 size_t last_line_off;
170 int force_redraw;
172 int curs_x;
173 int curs_y;
174 size_t line_off;
175 size_t line_max;
176 struct vline *top_line;
177 struct vline *current_line;
178 size_t cpoff;
179 TAILQ_HEAD(vhead, vline) head;
180 };
182 #define TAB_CURRENT 0x1 /* only for save_session */
183 #define TAB_URGENT 0x2
184 #define TAB_LAZY 0x4 /* to lazy load tabs */
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 extern char session_file[PATH_MAX];
287 int fs_init(void);
288 int fs_main(void);
289 int lock_session(void);
290 int load_certs(struct ohash*);
292 /* gemini.c */
293 int client_main(void);
295 /* hist.c */
296 void hist_clear_forward(struct histhead*, struct hist*);
297 void hist_push(struct histhead*, struct hist*);
299 /* keymap.c */
300 int kbd(const char*);
301 const char *unkbd(int);
302 int kmap_define_key(struct kmap*, const char*, void(*)(struct buffer*));
304 /* mime.c */
305 int setup_parser_for(struct tab*);
307 /* parse.y */
308 void parseconfig(const char *, int);
310 /* sandbox.c */
311 void sandbox_net_process(void);
312 void sandbox_ui_process(void);
313 void sandbox_fs_process(void);
315 /* telescope.c */
316 void load_about_url(struct tab*, const char*);
317 void load_gemini_url(struct tab*, const char*);
318 void load_via_proxy(struct tab *, const char *, struct proxy *);
319 void load_url(struct tab *, const char *);
320 int load_previous_page(struct tab*);
321 int load_next_page(struct tab*);
322 void stop_tab(struct tab*);
323 void add_to_bookmarks(const char*);
324 void save_session(void);
326 /* tofu.c */
327 void tofu_init(struct ohash*, unsigned int, ptrdiff_t);
328 struct tofu_entry *tofu_lookup(struct ohash*, const char*, const char*);
329 void tofu_add(struct ohash*, struct tofu_entry*);
330 void tofu_update(struct ohash*, struct tofu_entry*);
331 void tofu_temp_trust(struct ohash *, const char *, const char *, const char *);
333 /* util.c */
334 int mark_nonblock(int);
335 int has_prefix(const char*, const char*);
336 int unicode_isspace(uint32_t);
337 int unicode_isgraph(uint32_t);
338 void dispatch_imsg(struct imsgev*, short, imsg_handlerfn**, size_t);
339 int imsg_compose_event(struct imsgev *, uint16_t, uint32_t, pid_t, int, const void *, uint16_t);
341 /* wrap.c */
342 void erase_buffer(struct buffer *);
343 void empty_linelist(struct buffer*);
344 void empty_vlist(struct buffer*);
345 int wrap_one(struct buffer *, const char *, struct line *, size_t);
346 int wrap_text(struct buffer*, const char*, struct line*, size_t);
347 int hardwrap_text(struct buffer*, struct line*, size_t);
349 #endif /* TELESCOPE_H */