blob: f2f89cd84b80d88ac63aa236e436451c9e143372 (
plain) (
blame)
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
|
// Copyright (c) 2024, Marvin Borner <dev@marvinborner.de>
// SPDX-License-Identifier: MIT
#include <parse.h>
#include <log.h>
#include <term.h>
Term *parse_blc_fp(FILE *fp)
{
Term *res = 0;
char a = getc(fp);
if (a == '0') {
char b = getc(fp);
if (b == '0') {
res = term_new(ABS);
res->u.abs.body = parse_blc_fp(fp);
}
if (b == '1') {
res = term_new(APP);
res->u.app.lhs = parse_blc_fp(fp);
res->u.app.rhs = parse_blc_fp(fp);
}
}
if (a == '1') {
res = term_new(IDX);
res->u.index = 0;
while (getc(fp) == '1')
res->u.index++;
}
if (!res)
fatal("invalid parsing state!\n");
return res;
}
Term *parse_blc(const char **term)
{
Term *res = 0;
if (!**term) {
fatal("invalid parsing state!\n");
} else if (**term == '0' && *(*term + 1) == '0') {
(*term) += 2;
res = term_new(ABS);
res->u.abs.body = parse_blc(term);
} else if (**term == '0' && *(*term + 1) == '1') {
(*term) += 2;
res = term_new(APP);
res->u.app.lhs = parse_blc(term);
res->u.app.rhs = parse_blc(term);
} else if (**term == '1') {
const char *cur = *term;
while (**term == '1')
(*term)++;
res = term_new(IDX);
res->u.index = *term - cur - 1;
(*term)++;
} else {
(*term)++;
res = parse_blc(term);
}
return res;
}
|