Blame


1 191b4ca2 2021-03-12 op /*
2 191b4ca2 2021-03-12 op * Copyright (c) 2021 Omar Polo <op@omarpolo.com>
3 191b4ca2 2021-03-12 op *
4 191b4ca2 2021-03-12 op * Permission to use, copy, modify, and distribute this software for any
5 191b4ca2 2021-03-12 op * purpose with or without fee is hereby granted, provided that the above
6 191b4ca2 2021-03-12 op * copyright notice and this permission notice appear in all copies.
7 191b4ca2 2021-03-12 op *
8 191b4ca2 2021-03-12 op * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 191b4ca2 2021-03-12 op * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 191b4ca2 2021-03-12 op * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 191b4ca2 2021-03-12 op * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 191b4ca2 2021-03-12 op * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 191b4ca2 2021-03-12 op * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 191b4ca2 2021-03-12 op * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 191b4ca2 2021-03-12 op */
16 191b4ca2 2021-03-12 op
17 a467be63 2021-08-14 op #include "compat.h"
18 191b4ca2 2021-03-12 op
19 191b4ca2 2021-03-12 op #include <stdlib.h>
20 191b4ca2 2021-03-12 op #include <string.h>
21 191b4ca2 2021-03-12 op
22 a467be63 2021-08-14 op #include "parser.h"
23 a467be63 2021-08-14 op #include "telescope.h"
24 a467be63 2021-08-14 op #include "ui.h"
25 a467be63 2021-08-14 op
26 1fce2e75 2021-08-14 op /*
27 1fce2e75 2021-08-14 op * Load a text/gemini page given the string page. Always returns 0.
28 1fce2e75 2021-08-14 op */
29 1fce2e75 2021-08-14 op int
30 1fce2e75 2021-08-14 op load_page_from_str(struct tab *tab, const char *page)
31 1fce2e75 2021-08-14 op {
32 1fce2e75 2021-08-14 op erase_buffer(&tab->buffer);
33 1fce2e75 2021-08-14 op parser_init(tab, gemtext_initparser);
34 1fce2e75 2021-08-14 op if (!tab->buffer.page.parse(&tab->buffer.page, page, strlen(page)))
35 1fce2e75 2021-08-14 op abort();
36 1fce2e75 2021-08-14 op if (!tab->buffer.page.free(&tab->buffer.page))
37 1fce2e75 2021-08-14 op abort();
38 1fce2e75 2021-08-14 op ui_on_tab_refresh(tab);
39 1fce2e75 2021-08-14 op ui_on_tab_loaded(tab);
40 1fce2e75 2021-08-14 op return 0;
41 1fce2e75 2021-08-14 op }
42 1fce2e75 2021-08-14 op
43 8c1b0837 2021-07-25 op void
44 8c1b0837 2021-07-25 op parser_init(struct tab *tab, parserfn fn)
45 8c1b0837 2021-07-25 op {
46 8c1b0837 2021-07-25 op fn(&tab->buffer.page);
47 8c1b0837 2021-07-25 op }
48 8c1b0837 2021-07-25 op
49 191b4ca2 2021-03-12 op int
50 8c1b0837 2021-07-25 op parser_parse(struct tab *tab, const char *chunk, size_t len)
51 8c1b0837 2021-07-25 op {
52 8c1b0837 2021-07-25 op return tab->buffer.page.parse(&tab->buffer.page, chunk, len);
53 8c1b0837 2021-07-25 op }
54 8c1b0837 2021-07-25 op
55 8c1b0837 2021-07-25 op int
56 8c1b0837 2021-07-25 op parser_free(struct tab *tab)
57 8c1b0837 2021-07-25 op {
58 2fd6d754 2021-07-30 op int r;
59 2fd6d754 2021-07-30 op char *tilde, *slash;
60 8c1b0837 2021-07-25 op
61 8c1b0837 2021-07-25 op r = tab->buffer.page.free(&tab->buffer.page);
62 8c1b0837 2021-07-25 op
63 8c1b0837 2021-07-25 op /* fallback to the host as title if nothing else */
64 2fd6d754 2021-07-30 op if (*tab->buffer.page.title != '\0')
65 2fd6d754 2021-07-30 op return r;
66 2fd6d754 2021-07-30 op
67 2fd6d754 2021-07-30 op if ((tilde = strstr(tab->hist_cur->h, "/~")) != NULL) {
68 2fd6d754 2021-07-30 op strlcpy(tab->buffer.page.title, tilde+1,
69 2fd6d754 2021-07-30 op sizeof(tab->buffer.page.title));
70 2fd6d754 2021-07-30 op
71 2fd6d754 2021-07-30 op if ((slash = strchr(tab->buffer.page.title, '/')) != NULL)
72 2fd6d754 2021-07-30 op *slash = '\0';
73 2fd6d754 2021-07-30 op } else
74 8c1b0837 2021-07-25 op strlcpy(tab->buffer.page.title, tab->uri.host,
75 8c1b0837 2021-07-25 op sizeof(tab->buffer.page.title));
76 8c1b0837 2021-07-25 op
77 8c1b0837 2021-07-25 op return r;
78 8c1b0837 2021-07-25 op }
79 8c1b0837 2021-07-25 op
80 8c1b0837 2021-07-25 op int
81 191b4ca2 2021-03-12 op parser_append(struct parser *p, const char *buf, size_t len)
82 191b4ca2 2021-03-12 op {
83 191b4ca2 2021-03-12 op size_t newlen;
84 191b4ca2 2021-03-12 op char *t;
85 191b4ca2 2021-03-12 op
86 191b4ca2 2021-03-12 op newlen = len + p->len;
87 191b4ca2 2021-03-12 op if ((t = calloc(1, newlen)) == NULL)
88 191b4ca2 2021-03-12 op return 0;
89 191b4ca2 2021-03-12 op memcpy(t, p->buf, p->len);
90 191b4ca2 2021-03-12 op memcpy(t + p->len, buf, len);
91 191b4ca2 2021-03-12 op free(p->buf);
92 191b4ca2 2021-03-12 op p->buf = t;
93 191b4ca2 2021-03-12 op p->len = newlen;
94 191b4ca2 2021-03-12 op return 1;
95 191b4ca2 2021-03-12 op }
96 191b4ca2 2021-03-12 op
97 191b4ca2 2021-03-12 op int
98 191b4ca2 2021-03-12 op parser_set_buf(struct parser *p, const char *buf, size_t len)
99 191b4ca2 2021-03-12 op {
100 20107775 2021-03-19 op char *tmp;
101 191b4ca2 2021-03-12 op
102 191b4ca2 2021-03-12 op if (len == 0) {
103 191b4ca2 2021-03-12 op p->len = 0;
104 20107775 2021-03-19 op free(p->buf);
105 20107775 2021-03-19 op p->buf = NULL;
106 191b4ca2 2021-03-12 op return 1;
107 191b4ca2 2021-03-12 op }
108 191b4ca2 2021-03-12 op
109 be2ee49f 2021-05-14 op /*
110 be2ee49f 2021-05-14 op * p->buf and buf can (and probably almost always will)
111 be2ee49f 2021-05-14 op * overlap!
112 be2ee49f 2021-05-14 op */
113 20107775 2021-03-19 op
114 20107775 2021-03-19 op if ((tmp = calloc(1, len)) == NULL)
115 191b4ca2 2021-03-12 op return 0;
116 20107775 2021-03-19 op memcpy(tmp, buf, len);
117 20107775 2021-03-19 op free(p->buf);
118 20107775 2021-03-19 op p->buf = tmp;
119 191b4ca2 2021-03-12 op p->len = len;
120 191b4ca2 2021-03-12 op return 1;
121 191b4ca2 2021-03-12 op }
122 a5845bb5 2021-03-20 op
123 a5845bb5 2021-03-20 op int
124 a5845bb5 2021-03-20 op parser_foreach_line(struct parser *p, const char *buf, size_t size,
125 a5845bb5 2021-03-20 op parsechunkfn fn)
126 a5845bb5 2021-03-20 op {
127 31aa9f59 2021-03-20 op char *b, *e;
128 31aa9f59 2021-03-20 op unsigned int ch;
129 31aa9f59 2021-03-20 op size_t i, l, len;
130 a5845bb5 2021-03-20 op
131 31aa9f59 2021-03-20 op if (!parser_append(p, buf, size))
132 31aa9f59 2021-03-20 op return 0;
133 31aa9f59 2021-03-20 op b = p->buf;
134 31aa9f59 2021-03-20 op len = p->len;
135 31aa9f59 2021-03-20 op
136 27dce34f 2021-07-06 op if (!(p->flags & PARSER_IN_BODY) && len < 3)
137 c0b634dd 2021-07-06 op return 1;
138 c0b634dd 2021-07-06 op
139 27dce34f 2021-07-06 op if (!(p->flags & PARSER_IN_BODY)) {
140 27dce34f 2021-07-06 op p->flags |= PARSER_IN_BODY;
141 c0b634dd 2021-07-06 op
142 c0b634dd 2021-07-06 op /*
143 c0b634dd 2021-07-06 op * drop the BOM: only UTF-8 is supported, and there
144 c0b634dd 2021-07-06 op * it's useless; some editors may still add one
145 c0b634dd 2021-07-06 op * though.
146 c0b634dd 2021-07-06 op */
147 c0b634dd 2021-07-06 op if (memmem(b, len, "\xEF\xBB\xBF", 3) == b) {
148 c0b634dd 2021-07-06 op b += 3;
149 c0b634dd 2021-07-06 op len -= 3;
150 c0b634dd 2021-07-06 op }
151 c0b634dd 2021-07-06 op }
152 c0b634dd 2021-07-06 op
153 31aa9f59 2021-03-20 op /* drop every "funny" ASCII character */
154 31aa9f59 2021-03-20 op for (i = 0; i < len; ) {
155 31aa9f59 2021-03-20 op ch = b[i];
156 31aa9f59 2021-03-20 op if ((ch >= ' ' || ch == '\n' || ch == '\t')
157 31aa9f59 2021-03-20 op && ch != 127) { /* del */
158 31aa9f59 2021-03-20 op ++i;
159 31aa9f59 2021-03-20 op continue;
160 31aa9f59 2021-03-20 op }
161 08b9feb5 2021-07-26 op memmove(&b[i], &b[i+1], len - i - 1);
162 31aa9f59 2021-03-20 op len--;
163 a5845bb5 2021-03-20 op }
164 a5845bb5 2021-03-20 op
165 a5845bb5 2021-03-20 op while (len > 0) {
166 a5845bb5 2021-03-20 op if ((e = memmem((char*)b, len, "\n", 1)) == NULL)
167 a5845bb5 2021-03-20 op break;
168 a5845bb5 2021-03-20 op l = e - b;
169 a5845bb5 2021-03-20 op
170 a5845bb5 2021-03-20 op if (!fn(p, b, l))
171 a5845bb5 2021-03-20 op return 0;
172 a5845bb5 2021-03-20 op
173 a5845bb5 2021-03-20 op len -= l;
174 a5845bb5 2021-03-20 op b += l;
175 a5845bb5 2021-03-20 op
176 a5845bb5 2021-03-20 op if (len > 0) {
177 a5845bb5 2021-03-20 op /* skip \n */
178 a5845bb5 2021-03-20 op len--;
179 a5845bb5 2021-03-20 op b++;
180 a5845bb5 2021-03-20 op }
181 a5845bb5 2021-03-20 op }
182 a5845bb5 2021-03-20 op
183 a5845bb5 2021-03-20 op return parser_set_buf(p, b, len);
184 a5845bb5 2021-03-20 op }