~aleteoryx/9c

ref: 577d29e112314e02e1cc0d39eb4e44f7c32494d8 9c/pres.c -rw-r--r-- 2.4 KiB
577d29e1 — glenda stress test 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
#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 nlines;
	char *lines[];
} Slide;

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

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

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

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

	cmd++;
	arg = cmd;

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

	line1 = nextline(p);
	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->nlines = 0;
		return s;
	}
	lineN = line1;
	nlines = 1;
	blines = 0;

	while((line = nextline(p)) != 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->nlines = nlines;

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

	return s;
}

void
checkfile(void)
{
	int i;
	char *c2, *p;
	Slide *s;

	c2 = strdup(contents);
	p = c2;

	while((s = nextslide(&p)) != nil){
		print("Slide: %s (%d lines)\n", s->cmd, s->nlines);
		if(s->arg != nil)
			print("\targ: %s\n", s->arg);
		for(i = 0; i < s->nlines; i++)
			print("\tline %d: %s\n", i, s->lines[i]);
	}
}

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);
}