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 <event.h>
24 #include "url.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 enum imsg_type {
32 /* ui <-> client/fs */
33 IMSG_GET, /* data is URL, peerid the tab id */
34 IMSG_ERR,
35 IMSG_CHECK_CERT,
36 IMSG_CERT_STATUS,
37 IMSG_GOT_CODE,
38 IMSG_GOT_META,
39 IMSG_PROCEED,
40 IMSG_STOP,
41 IMSG_BUF,
42 IMSG_EOF,
43 IMSG_QUIT,
45 /* ui <-> fs */
46 IMSG_BOOKMARK_PAGE,
47 IMSG_BOOKMARK_OK,
48 };
50 enum line_type {
51 LINE_TEXT,
52 LINE_LINK,
53 LINE_TITLE_1,
54 LINE_TITLE_2,
55 LINE_TITLE_3,
56 LINE_ITEM,
57 LINE_QUOTE,
58 LINE_PRE_START,
59 LINE_PRE_CONTENT,
60 LINE_PRE_END,
61 };
63 struct line {
64 enum line_type type;
65 char *line;
66 char *alt;
67 int flags;
68 TAILQ_ENTRY(line) lines;
69 };
71 struct vline {
72 const struct line *parent;
73 char *line;
74 int flags;
75 TAILQ_ENTRY(vline) vlines;
76 };
78 struct parser;
79 struct page;
81 /* typedef void (*initparserfn)(struct parser*); */
83 typedef int (*parsechunkfn)(struct parser*, const char*, size_t);
84 typedef int (*parserfreefn)(struct parser*);
86 typedef void (imsg_handlerfn)(struct imsg*, size_t);
88 struct parser {
89 const char *name;
90 char title[32+1];
91 char *buf;
92 size_t len;
93 size_t cap;
94 int flags;
95 parsechunkfn parse;
96 parserfreefn free;
98 TAILQ_HEAD(, line) head;
99 };
101 struct histhead {
102 TAILQ_HEAD(mhisthead, hist) head;
103 size_t len;
104 };
105 struct hist {
106 char h[1025];
107 TAILQ_ENTRY(hist) entries;
108 };
110 struct ui_state {
111 int curs_x;
112 int curs_y;
113 size_t line_off;
114 size_t line_max;
116 short loading_anim;
117 short loading_anim_step;
118 struct event loadingev;
120 TAILQ_HEAD(, vline) head;
121 };
123 extern TAILQ_HEAD(tabshead, tab) tabshead;
124 struct tab {
125 struct parser page;
126 TAILQ_ENTRY(tab) tabs;
127 uint32_t id;
128 uint32_t flags;
130 struct url url;
131 struct histhead hist;
132 struct hist *hist_cur;
133 size_t hist_off;
135 int code;
136 char meta[GEMINI_URL_LEN];
137 int redirect_count;
139 struct ui_state s;
140 };
142 struct proto {
143 const char *schema;
145 /* should load the given url in the tab. Optionally, it may
146 * consider the given url as relative to the one already
147 * present in tab. It must set tab->urlstr to a serialized
148 * human-friendly URL. */
149 void (*loadfn)(struct tab*, const char*);
150 };
152 struct kmap {
153 TAILQ_HEAD(map, keymap) m;
154 void (*unhandled_input)(void);
155 };
157 struct keymap {
158 int meta;
159 int key;
160 struct kmap map;
161 void (*fn)(struct tab*);
163 TAILQ_ENTRY(keymap) keymaps;
164 };
166 /* fs.c */
167 int fs_main(struct imsgbuf*);
169 /* gemini.c */
170 int client_main(struct imsgbuf*);
172 /* gemtext.c */
173 void gemtext_initparser(struct parser*);
175 /* hist.c */
176 void hist_clear_forward(struct histhead*, struct hist*);
177 void hist_push(struct histhead*, struct hist*);
179 /* keymap.c */
180 int kbd(const char*);
181 const char *unkbd(int);
182 int kmap_define_key(struct kmap*, const char*, void(*)(struct tab*));
184 /* mime.c */
185 int setup_parser_for(struct tab*);
187 /* pages.c */
188 extern const char *about_new;
190 #define CANNOT_FETCH 0
191 #define TOO_MUCH_REDIRECTS 1
192 #define MALFORMED_RESPONSE 2
193 #define UNKNOWN_TYPE_OR_CSET 3
194 extern const char *err_pages[70];
196 /* parser.c */
197 int parser_append(struct parser*, const char*, size_t);
198 int parser_set_buf(struct parser*, const char*, size_t);
200 /* sandbox.c */
201 void sandbox_network_process(void);
202 void sandbox_ui_process(void);
203 void sandbox_fs_process(void);
205 /* telescope.c */
206 void load_about_url(struct tab*, const char*);
207 void load_gemini_url(struct tab*, const char*);
208 void load_url(struct tab*, const char*);
209 int load_previous_page(struct tab*);
210 int load_next_page(struct tab*);
211 void stop_tab(struct tab*);
212 void add_to_bookmarks(const char*);
214 /* textplain.c */
215 void textplain_initparser(struct parser*);
217 /* ui.c */
218 int ui_init(void);
219 void ui_on_tab_loaded(struct tab*);
220 void ui_on_tab_refresh(struct tab*);
221 void ui_require_input(struct tab*, int);
222 void ui_notify(const char*, ...) __attribute__((format(printf, 1, 2)));
223 void ui_end(void);
225 /* util.c */
226 int mark_nonblock(int);
227 char *telescope_strnchr(char*, char, size_t);
228 int has_prefix(const char*, const char*);
230 /* wrap.c */
231 void wrap_text(struct tab*, const char*, struct line*, size_t);
232 int hardwrap_text(struct tab*, struct line*, size_t);
234 #endif /* TELESCOPE_H */