summary refs log tree commit diff
path: root/main.c
blob: 65de5554243fb9199a656bb03ecc2e276e158656 (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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
#include <stdio.h>
#include <ctype.h>
#include <errno.h>
#include <string.h>
#include <stdlib.h>

/* errors */

void perr(const char *s) {
	fprintf(stderr, "%s\n", s);
}

/* misc */

int running;

int quit(const char *_) {
	puts("goodbye!");
	running = 0;
	return 0;
}

/* documents */

#define TXT_BUF_SIZE (1024 * 1024)
struct {
	char buf[TXT_BUF_SIZE];
	size_t n;
} text;

struct doc {
	struct doc *prev, *next;
	struct {
		size_t ofs, len, idx;
	} txt;
};

#define DOC_MAX 32
struct doc docv[DOC_MAX];
size_t docn = 0, doci = 0;

int doc_new(void) {
	if (doci < docn) {
		text.n = docv[doci].txt.ofs;
		docn = doci;
	}
	if (docn >= DOC_MAX) return -1;
	memset(&docv[docn], 0, sizeof(struct doc));
	docv[docn].txt.ofs = text.n;
	docv[docn].txt.idx = text.n;
	doci = docn++;
	return 0;
}

int doc_add(char *buf, size_t n) {
	if (text.n + n > TXT_BUF_SIZE) {
		return -1;
	}
	memcpy(&text.buf[text.n], buf, n);
	text.n += n;
	return 0;
}

void doc_prev(void) {
	if (doci > 0) doci--;
}

void doc_next(void) {
	if (doci < docn) doci++;
}

/* pagination */

size_t pg_lines() {
	return 24;
}

int pg_down(const char *_) {
	if (doci >= docn) return -1;
	size_t lines = pg_lines();
	size_t i = docv[doci].txt.idx;
	size_t end = docv[doci].txt.ofs + docv[doci].txt.len;
	while (lines > 0 && i < end) {
		putchar(text.buf[i]);
		if (text.buf[i] == '\n') lines--;
		i++;
	}
	return 0;
}

int pg_up(const char *_) {
	if (doci >= docn) return -1;
	size_t lines = pg_lines() << 1;
	size_t i = docv[doci].txt.idx;
	while (lines > 0 && i > 0) {
		putchar(text.buf[i]);
		if (text.buf[i] == '\n') lines--;
		i--;
	}
	pg_down(_);
	return 0;
}

/* navigation */

#define HOST_MAX 255
#define PATH_MAX 255

enum doc_type {
	TYPE_GOPHERDOC,
	TYPE_GEMTEXT,
	TYPE_PLAIN,
	TYPE_UNKNOWN
};

enum protocol {
	PROT_FILE,
	PROT_GOPHER,
	PROT_GEMINI,
	PROT_UNKNOWN,
};

struct addr {
	char host[HOST_MAX];
	char path[PATH_MAX];
	size_t host_len, path_len;
	enum protocol prot;
	enum doc_type type;
};

int url_to_addr(const char *url, struct addr *adr) {
	char *colon = strchr(url, ':');
	adr->prot = PROT_UNKNOWN;
	if (colon) {
	}
	return -1;
}

int nav_to(const char *url) {
	return 0;
}

int nav_link_nr(unsigned long link_nr) {
	return 0;
}

/* commands */

struct cmd {
	char ch;
	int (*fn)(const char *);
};

struct cmd cmd_tbl[] = {
	{ 'g', nav_to },
	{ '\n', pg_down },
	{ '\b', pg_up },
	{ 'q', quit }
};

/* cmd is mutated when trimming strings */
void cmd_do(char *cmd) {
	if (isdigit(*cmd)) {
		errno = 0;
		unsigned long n = strtoul(cmd, NULL, 10);
		if (errno) {
			perr("invalid link number");
		} else if (nav_link_nr(n)) {
			perr("navigation failure");
		}
	} else {
		for (size_t i = 0; i < sizeof cmd_tbl / sizeof(struct cmd); i++) {
			if (cmd_tbl[i].ch == *cmd) {
				while (isspace(*++cmd));
				for (int j = strlen(cmd) - 1; j > 0 && isspace(cmd[j]); j--) {
					cmd[j] = 0;
				}
				if (cmd_tbl[i].fn(cmd)) {
					perr("failed");
				}
				goto found;
			}
		}
		perr("?");
found:		;
	}
}

int cmd_get(char *buf, size_t n) {
	fputs("* ", stdout);
	return !!fgets(buf, n, stdin);
}

int main(void) {
	char cmd_buf[1024];
	running = 1;
	while (running && cmd_get(cmd_buf, sizeof cmd_buf)) {
		cmd_do(cmd_buf);
	}
	return 0;
}