~aleteoryx/9c

ref: 0d0b248d03952bdc1298e8fd399a97a91889c755 9c/pres.c -rw-r--r-- 3.1 KiB
0d0b248d — glenda checkfile 10 months ago
                                                                                
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
202
203
204
205
206
207
208
209
210
#include <u.h>
#include <libc.h>
#include <stdio.h>
#include <draw.h>
#include <event.h>
#include <cursor.h>

int checkonly;
char *file, *contents;

typedef struct Slide {
	char *cmd;
	char *arg;
	int linum;
	int nlines;
	char *lines[];
} Slide;

char *
nextline(char **p, int *linum)
{
	char *line;
	while(1){
		(*linum)++;
		line = *p;
		while(**p != '\n' && **p != '\0') (*p)++;
		if(**p == '\0')
			return nil;

		**p = '\0';
		(*p)++;
		return line;
	}
}

Slide *
nextslide(char **p, int *linum)
{
	char *cmd, *arg, *line1, *line, *lineN;
	int nlines, blines, i, slinum;
	Slide *s;

	while(1){
		if((cmd = nextline(p, linum)) == nil)
			return nil;
		if(cmd[0] != '%')
			continue;
		break;
	}
	slinum = *linum;

	cmd++;
	arg = cmd;

	while(*arg != ' ' && *arg != '\t' && *arg != '\0') arg++;
	if(*arg == '\0')
		arg = nil;
	else{
		*(arg++) = '\0';
		while(*arg == ' ' && *arg == '\t' && *arg != '\0') arg++;
		if(*arg == '\0')
			arg = nil;
	}

	line1 = nextline(p, linum);
	if(line1 != nil && *line1 == '%'){
		*p = line1;
		line1[strlen(line1)] = '\n';
		line1 = nil;
	}
	if(line1 == nil){
		s = malloc(sizeof(Slide));
		s->cmd = cmd;
		s->arg = arg;
		s->linum = slinum;
		s->nlines = 0;
		return s;
	}
	lineN = line1;
	nlines = 1;
	blines = 0;

	while((line = nextline(p, linum)) != nil){
		if(*line == '\0'){
			blines++;
			continue;
		}
		if(*line == '%'){
			*p = line;
			line[strlen(line)] = '\n';
			break;
		}

		nlines += blines;
		blines = 0;
		nlines++;
		lineN = line;
	}

	s = malloc(sizeof(Slide) + sizeof(char*) * nlines);

	s->cmd = cmd;
	s->arg = arg;
	s->linum = slinum;
	s->nlines = nlines;

	line = line1;
	for(i = 0; line != lineN; i++){
		s->lines[i] = line;
		line += strlen(line) + 1;
	}
	s->lines[i] = lineN;

	return s;
}

#pragma varargck argpos checkerr 2
void
checkerr(Slide *s, char *msg, ...)
{
	va_list args;

	va_start(args, msg);

	fprint(2,"%s:%d: %s: ", file, s->linum, s->cmd);
	vfprint(2,msg, args);
	fprint(2,"\n");
}
void
checkfile(void)
{
	int waserr, linum;
	char *c2, *p;
	Slide *s;

	waserr = 0;
	linum = 0;

	c2 = strdup(contents);
	p = c2;

	while((s = nextslide(&p, &linum)) != nil){
		if(strcmp(s->cmd, "") == 0)
			continue;
		else if(strcmp(s->cmd, "bullet") == 0)
			continue;
		else if(strcmp(s->cmd, "blank") == 0)
			continue;
		else if(strcmp(s->cmd, "text") == 0)
			continue;
		else if(strcmp(s->cmd, "title") == 0){
			if(s->arg == nil){
				waserr = 1;
				checkerr(s, "missing arg");
			}
		}else{
			waserr = 1;
			checkerr(s, "unknown cmd");
		}
	}

	if(waserr)
		exits("checkfile");
}

void
usage(void)
{
	fprint(2,"usage: %s [ -c ] filename\n", argv0);
	exits("usage");
}

void
main(int argc, char *argv[])
{
	int fd;
	Dir *d;

	ARGBEGIN{
	case 'c':
		checkonly = 1;
		break;
	default:
		usage();
	}ARGEND

	if(argc != 1)
		usage();

	file = argv[0];

	if((fd = open(file, OREAD)) < 0)
		sysfatal("%r");
	if((d = dirfstat(fd)) == nil)
		sysfatal("%r");

	contents = malloc(d->length + 2);
	if(readn(fd, contents, d->length) < 0)
		sysfatal("%r");
	// cursed but makes the handling nicer above
	contents[d->length] = '\n';
	contents[d->length + 1] = '\0';
	free(d);
	close(fd);

	checkfile();

	if(checkonly)
		exits(nil);
}