summary refs log tree commit diff
path: root/parse.c
blob: b62ea8ab5fe419f5d699071c1092171780cf8f81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#include <ctype.h>
#include <string.h>

#include "parse.h"
#include "strv.h"
#include "err.h"

int isurlch(char c) {
	return isalpha(c) || isdigit(c) || c == '-' || c == '.' || c == '_' || c == '~' || c == '!' || c == '$' || c == '\'' || c == '(' || c == ')' || c == '*' || c == '+' || c == ',' || c == ';' || c == '=' || c == '%' || c == '@' || c == ':' || c == '/';
}

void parse_plain_url(struct doc *d, struct doc_line *l, size_t i) {
	char url[l->len + 1];
	size_t start = i - 1;
	while (start > 0 && isalpha(l->txt[start])) start--;
	if (!isalpha(l->txt[start])) start++;
	size_t end = i + 3;
	while (end < l->len && isurlch(l->txt[end])) end++;
	if (end == i + 3) return;
	size_t urln = end - start;
	memcpy(url, &l->txt[start], urln);
	url[urln] = 0;
	l->link = doc_add_link(d, url);
}

int parse_plain(struct doc *d, const buf_t *b) {
	doc_init(d);
	strv_t buf = (strv_t) { b->buf, b->sz };
	size_t i = 0;
	while (i < buf.n) {
		strv_t ln = strv_head(buf, '\n', &i);
		struct doc_line *l = doc_line_at(d, d->latest);
		for (size_t j = 1; j + 2 < ln.n; j++) {
			if (ln.s[j] == ':' && ln.s[j + 1] == '/' && ln.s[j + 2] == '/') {
				parse_plain_url(d, l, j);
				break;
			}
		}
		doc_add_line(d, ln);
	}
	return 0;
}

size_t scatss(char *buf, size_t i, size_t n, strv_t ss) {
	size_t si = 0;
	while (i < n && si < ss.n) {
		buf[i++] = ss.s[si++];
	}
	return i;
}

int parse_gophermap_line(struct doc *d, strv_t ln) {
	char url[512] = "gopher://";
	size_t urln = 9;
	struct {
		char item_type;
		strv_t dstr;
		strv_t sel;
		strv_t host;
		strv_t port;
	} bits;
	size_t i = 0;
	bits.item_type = ln.s[i++];
	bits.dstr = strv_head(ln, '\t', &i); 
	bits.sel = strv_head(ln, '\t', &i); 
	bits.host = strv_head(ln, '\t', &i); 
	bits.port = strv_head(ln, '\t', &i); 
	switch (bits.item_type) {
	case '.':
		if (ln.n == 1) return 1;
	default:
		urln = scatss(url, urln, sizeof url, bits.host);
		if (urln < sizeof url) url[urln++] = ':';
		urln = scatss(url, urln, sizeof url, bits.port);
		if (urln < sizeof url) url[urln++] = '/';
		if (urln < sizeof url) url[urln++] = bits.item_type;
		urln = scatss(url, urln, sizeof url, bits.sel);
		url[urln] = 0;
		doc_set_link(d, doc_add_link(d, url));
	case 'i':
		doc_add_text(d, bits.dstr);
		doc_new_line(d);
		break;
	}
	return 0;
}

int parse_gophermap(struct doc *d, const buf_t *b) {
	doc_init(d);
	size_t i = 0;
	strv_t bufss = { b->buf, b->sz };
	while (i < b->sz) {
		strv_t ln = strv_head(bufss, '\n', &i);
		if (ln.n > 0 && ln.s[ln.n - 1] == '\r') ln.n--;
		if (parse_gophermap_line(d, ln)) {
			break;
		}
	}
	return 0;
}

int parse_doc(enum doc_type type, struct doc *d, const buf_t *b) {
	switch (type) {
	case DOC_PLAIN:
		return parse_plain(d, b);
	case DOC_GOPHERMAP:
		return parse_gophermap(d, b);
	default:
		perr("unsupported doctype");
		return -1;
	}
}