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 "compat.h"
22 #include <limits.h>
24 #include "cmd.h"
25 #include "phos.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
31 #define TITLE_MAX 128+1 /* account for NUL too */
33 #define SIDE_WINDOW_LEFT 0x1
34 #define SIDE_WINDOW_BOTTOM 0x2
36 struct imsgev {
37 struct imsgbuf ibuf;
38 void (*handler)(int, short, void *);
39 struct event ev;
40 short events;
41 };
43 #define IMSG_DATA_SIZE(imsg) ((imsg).hdr.len - IMSG_HEADER_SIZE)
45 enum imsg_type {
46 /* ui <-> client/fs */
47 IMSG_GET, /* data is URL, peerid the tab id */
48 IMSG_GET_FILE, /* data is path, without \r\n or such */
49 IMSG_GET_RAW, /* get but with an explicit req str */
50 IMSG_ERR,
51 IMSG_CHECK_CERT,
52 IMSG_CERT_STATUS,
53 IMSG_GOT_CODE,
54 IMSG_GOT_META,
55 IMSG_PROCEED,
56 IMSG_STOP,
57 IMSG_BUF,
58 IMSG_EOF,
59 IMSG_QUIT,
61 /* ui <-> fs */
62 IMSG_INIT,
63 IMSG_TOFU,
64 IMSG_BOOKMARK_PAGE,
65 IMSG_BOOKMARK_OK,
66 IMSG_SAVE_CERT,
67 IMSG_SAVE_CERT_OK,
68 IMSG_UPDATE_CERT,
69 IMSG_UPDATE_CERT_OK,
71 IMSG_FILE_OPEN,
72 IMSG_FILE_OPENED,
74 IMSG_SESSION_START,
75 IMSG_SESSION_TAB,
76 IMSG_SESSION_TAB_HIST,
77 IMSG_SESSION_END,
79 IMSG_HIST_ITEM, /* struct histitem */
80 IMSG_HIST_END, /* empty */
82 IMSG_CTL_OPEN_URL,
83 };
85 enum line_type {
86 /* text/gemini */
87 LINE_TEXT,
88 LINE_LINK,
89 LINE_TITLE_1,
90 LINE_TITLE_2,
91 LINE_TITLE_3,
92 LINE_ITEM,
93 LINE_QUOTE,
94 LINE_PRE_START,
95 LINE_PRE_CONTENT,
96 LINE_PRE_END,
98 /* text/x-patch */
99 LINE_PATCH,
100 LINE_PATCH_HDR,
101 LINE_PATCH_HUNK_HDR,
102 LINE_PATCH_ADD,
103 LINE_PATCH_DEL,
105 /* minibuffer */
106 LINE_COMPL,
107 LINE_COMPL_CURRENT,
109 /* help */
110 LINE_HELP,
112 /* download */
113 LINE_DOWNLOAD,
114 LINE_DOWNLOAD_DONE,
115 LINE_DOWNLOAD_INFO,
117 /* misc ui */
118 LINE_FRINGE,
119 };
121 /* for lines: mark as hidden */
122 #define L_HIDDEN 1
124 /* for vlines: mark as continuation */
125 #define L_CONTINUATION 2
127 struct line {
128 enum line_type type;
129 char *line;
130 char *alt;
131 void *data;
132 int flags;
133 TAILQ_ENTRY(line) lines;
134 };
136 struct vline {
137 struct line *parent;
138 char *line;
139 int flags;
140 TAILQ_ENTRY(vline) vlines;
141 };
143 struct parser;
145 typedef int (*printfn)(void *, const char *, ...);
147 typedef int (*parsechunkfn)(struct parser *, const char *, size_t);
148 typedef int (*parserfreefn)(struct parser *);
149 typedef int (*parserserial)(struct parser *, printfn, void *);
151 typedef void (imsg_handlerfn)(struct imsg*, size_t);
153 struct parser {
154 const char *name;
155 char title[128+1];
156 char *buf;
157 size_t len;
158 size_t cap;
160 #define PARSER_IN_BODY 1
161 #define PARSER_IN_PRE 2
162 #define PARSER_IN_PATCH_HDR 4
163 int flags;
164 void (*init)(struct parser *);
165 parsechunkfn parse;
166 parserfreefn free;
167 parserserial serialize;
169 TAILQ_HEAD(, line) head;
170 };
172 /*
173 * differnt types of trust for a certificate. Following
174 * gemini://thfr.info/gemini/modified-trust-verify.gmi
175 */
176 enum trust_state {
177 TS_UNKNOWN,
178 TS_UNTRUSTED,
179 TS_TEMP_TRUSTED,
180 TS_TRUSTED,
181 TS_VERIFIED,
182 };
184 struct tofu_entry {
185 char domain[GEMINI_URL_LEN];
187 /*
188 * enough space for ``PROTO:HASH''. probably isn't a good
189 * idea tho.
190 */
191 char hash[128+1];
192 int verified;
193 };
195 struct histhead {
196 TAILQ_HEAD(mhisthead, hist) head;
197 size_t len;
198 };
199 struct hist {
200 char h[1025];
201 size_t line_off;
202 size_t current_off;
203 TAILQ_ENTRY(hist) entries;
204 };
206 struct buffer {
207 struct parser page;
209 size_t last_line_off;
210 int force_redraw;
212 int curs_x;
213 int curs_y;
214 size_t line_off;
215 size_t line_max;
216 struct vline *top_line;
217 struct vline *current_line;
218 size_t cpoff;
219 TAILQ_HEAD(vhead, vline) head;
220 };
222 #define TAB_CURRENT 0x1 /* only for save_session */
223 #define TAB_KILLED 0x2 /* only for save_session */
224 #define TAB_URGENT 0x4
225 #define TAB_LAZY 0x8 /* to lazy load tabs */
227 #define NEW_TAB_URL "about:new"
229 TAILQ_HEAD(tabshead, tab);
230 extern struct tabshead tabshead;
231 extern struct tabshead ktabshead;
232 struct tab {
233 TAILQ_ENTRY(tab) tabs;
234 uint32_t id;
235 uint32_t flags;
237 char *cert;
238 enum trust_state trust;
239 struct proxy *proxy;
240 struct phos_uri uri;
241 struct histhead hist;
242 struct hist *hist_cur;
243 size_t hist_off;
244 char *last_input_url;
246 int code;
247 char meta[GEMINI_URL_LEN];
248 int redirect_count;
250 struct buffer buffer;
252 short loading_anim;
253 short loading_anim_step;
254 struct event loadingev;
255 };
257 extern TAILQ_HEAD(proxylist, proxy) proxies;
258 struct proxy {
259 char *match_proto;
261 char *host;
262 char *port;
263 int proto;
265 TAILQ_ENTRY(proxy) proxies;
266 };
268 enum {
269 PROTO_FINGER,
270 PROTO_GEMINI,
271 PROTO_GOPHER,
272 /* ... */
273 };
275 struct get_req {
276 int proto;
277 char host[254];
278 char port[16];
279 char req[1027];
280 };
282 struct cmd {
283 const char *cmd;
284 void (*fn)(struct buffer *);
285 const char *descr;
286 };
287 extern struct cmd cmds[];
289 /* defaults.c */
290 void config_init(void);
291 int config_setprfx(const char *, const char *, const char *);
292 int config_setvari(const char *, int);
293 int config_setvars(const char *, char *);
294 int config_setcolor(int, const char *, int, int, int);
295 int config_setattr(const char *, int, int, int);
296 void config_apply_style(void);
298 /* downloads.c */
299 extern STAILQ_HEAD(downloads, download) downloads;
300 struct download {
301 uint32_t id;
302 int fd;
303 size_t bytes;
304 char *path;
305 int buffer;
306 STAILQ_ENTRY(download) entries;
307 };
309 void recompute_downloads(void);
310 void enqueue_download(uint32_t, const char *, int);
311 void dequeue_first_download(void);
312 struct download *download_by_id(uint32_t);
314 /* help.c */
315 void recompute_help(void);
317 /* hist.c */
318 void hist_clear(struct histhead *);
319 void hist_clear_forward(struct histhead*, struct hist*);
320 void hist_push(struct histhead*, struct hist*);
321 void hist_add_before(struct histhead *, struct hist *, struct hist *);
322 struct hist *hist_pop(struct histhead *);
324 /* mime.c */
325 int setup_parser_for(struct tab*);
327 /* net.c */
328 int net_main(void);
330 /* parse.y */
331 void parseconfig(const char *, int);
333 /* sandbox.c */
334 void sandbox_net_process(void);
335 void sandbox_ui_process(void);
336 void sandbox_fs_process(void);
338 /* telescope.c */
339 extern int operating;
340 extern int safe_mode;
342 #define LU_MODE_NONE 0x0
343 #define LU_MODE_NOHIST 0x1
344 #define LU_MODE_NOCACHE 0x2
346 void gopher_send_search_req(struct tab *, const char *);
347 int load_page_from_str(struct tab *, const char *);
348 void load_url(struct tab *, const char *, const char *, int);
349 void load_url_in_tab(struct tab *, const char *, const char *, int);
350 int load_previous_page(struct tab*);
351 int load_next_page(struct tab*);
352 void add_to_bookmarks(const char*);
353 void write_buffer(const char *, struct tab *);
354 void humanify_url(const char *, char *, size_t);
355 int ui_send_net(int, uint32_t, const void *, uint16_t);
356 int ui_send_fs(int, uint32_t, const void *, uint16_t);
358 /* tofu.c */
359 void tofu_init(struct ohash*, unsigned int, ptrdiff_t);
360 struct tofu_entry *tofu_lookup(struct ohash*, const char*, const char*);
361 void tofu_add(struct ohash*, struct tofu_entry*);
362 void tofu_update(struct ohash*, struct tofu_entry*);
363 void tofu_temp_trust(struct ohash *, const char *, const char *, const char *);
365 /* wrap.c */
366 void erase_buffer(struct buffer *);
367 void empty_linelist(struct buffer*);
368 void empty_vlist(struct buffer*);
369 int wrap_one(struct buffer *, const char *, struct line *, size_t);
370 int wrap_text(struct buffer*, const char*, struct line*, size_t);
371 int hardwrap_text(struct buffer*, struct line*, size_t);
372 int wrap_page(struct buffer *, int width);
374 #endif /* TELESCOPE_H */