aboutsummaryrefslogtreecommitdiff
path: root/sys/libbio/newick.c
blob: 5e6d30a8b938c44f36da839b681d859145b3f62a (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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
#include <u.h>
#include <base.h>
#include <libbio.h>

// -----------------------------------------------------------------------
// Tokens

enum TokenKind
{
    tok·nil,
    tok·eof,
    tok·space,
    tok·ident,
    tok·number,
    tok·lparen,
    tok·rparen,
    tok·lbrak,
    tok·rbrak,
    tok·comma,
    tok·semi,
    tok·colon,

    NUM_TOKENS,
};


struct Token {
    enum TokenKind kind;
    union 
    {
        byte  *s;
        double x;
    } lit;
};

static
byte*
tokstr(struct Token tok)
{
    static byte b[50];
    switch (tok.kind) {
       case tok·nil:    return ""; 
       case tok·eof:    return nil;
       case tok·space:  return " ";
       case tok·ident:  return tok.lit.s;
       case tok·lparen: return "(";
       case tok·rparen: return ")";
       case tok·lbrak:  return "[";
       case tok·rbrak:  return "]";
       case tok·comma:  return ",";
       case tok·semi:   return ";";
       case tok·colon:  return ":";
       case tok·number: 
            snprintf(b, arrlen(b), "%f", tok.lit.x);
            return b;
        default:
            return nil;
    }
}


// -----------------------------------------------------------------------
// Read

// TODO: Bounds checking on buffer
static
struct Token
lex(io·Peeker s, void* fp)
{
#define isvalidchar(C) ((C) == '!')               || \
                       ('\"' < (C) && (C) < '\'') || \
                       (')' < (C) && (C) < '+')   || \
                       (',' < (C) && (C) < ':')   || \
                       (':' < (C) && (C) < '[')   || \
                       ((C) == '\\')              || \
                       (']' < (C) && (C) <= '~')
    byte *c;
    struct Token tok;
    static byte b[1024];
    c  = b;
    *c = s.get(fp);

    if (isspace(*c)) {
        while (isspace(*c)) {
            *(++c) = s.get(fp);
        }

        s.unget(fp, *c);
        assert(c - b < 1024);

        *c        = 0;
        tok.kind  = tok·space;
        tok.lit.s = b;
        return tok;
    }

    switch (*c) {
    case EOF: tok.kind = tok·eof;    return tok;
    case '(': tok.kind = tok·lparen; return tok;
    case ')': tok.kind = tok·rparen; return tok;
    case '[': tok.kind = tok·lbrak;  return tok;
    case ']': tok.kind = tok·rbrak;  return tok;
    case ',': tok.kind = tok·comma;  return tok;
    case ';': tok.kind = tok·semi;   return tok;
    case ':': tok.kind = tok·colon;  return tok;

    case '.':
    case '0': case '1': case '2': case '3': case '4':
    case '5': case '6': case '7': case '8': case '9':
        while (isdigit(*c)) {
    NUM:    *(++c) = s.get(fp);
        }
        if (*c == '.')          goto NUM;
        if (isvalidchar(*c))    goto IDENT;

        s.unget(fp, *c);
        assert(c - b < 1024);

        *c        = 0;
        tok.kind  = tok·number;
        tok.lit.x = atof(b);
        return tok;

    case '\"':
        while ((*c) != '\"') { 
            *(++c) = s.get(fp);
        }
        assert(c - b < 1024);

        *c        = '\0';
        tok.kind  = tok·ident;
        tok.lit.s = b + 1;
        return tok;

    default:
    IDENT:
        while (isvalidchar(*c)) { 
            *(++c) = s.get(fp);
        }
        s.unget(fp, *c);
        assert(c - b < 1024);

        *c        = '\0';
        tok.kind  = tok·ident;
        tok.lit.s = b;
        return tok;
    }
#undef isvalidchar
}

static
struct Token
lex_nospace(io·Peeker s, void *impl)
{
    struct Token tok;
    tok = lex(s, impl);
    if (tok.kind == tok·space) {
        tok = lex_nospace(s, impl);
    }

    return tok;
}

struct Parser
{
    int          lev;
    bio·Node    *root;
    struct Token tok;

    void         *io;
    io·Peeker     file;
    void         *heap;
    mem·Allocator mem;
};

static
error
parse(struct Parser *p)
{
    error err;
    bio·Node *node;
    bio·Node *root;
    struct Token tok;

    node = p->root;
    for (;;) {
        tok = lex_nospace(p->file, p->io);

        switch (tok.kind) {
        case tok·lparen:
            if (!p->root && p->lev > 0) {
                errorf("parse format: attempted to make root at non-zero level");
                goto ERROR;
            }

            node = p->mem.alloc(p->heap, 1, sizeof(*node));
            memset(node, 0, sizeof(*node));

            if (p->root) {
                phylo·addchild(p->root, node);
                root = p->root;
            } else {
                root = node;
            }

            p->lev++;
            p->root = node;
            p->tok  = tok;
            err     = parse(p);
            if (err) {
                goto ERROR;
            }
            if (p->tok.kind != tok·rparen) {
                errorf("incorrect format: closing parentheses expected to proceed opening");
                goto ERROR;
            }
            p->root = root;
        // NOTE(nnoll): We don't want to override the state of p->tok here!
        //              Jump straight to grabbing next token.
        continue;

        case tok·rparen:
            p->lev--;
            goto DONE;

        /* Comments */
        case tok·lbrak:
            if (!node) {
                errorf("incorrect format: comment found in disallowed region");
                goto ERROR;
            }
            node->comment = str·make("");
            while (tok.kind != tok·rbrak) {
                tok = lex_nospace(p->file, p->io);
                if (tok.kind == tok·eof || tok.kind == tok·nil) {
                    errorf("incorrect format: unmatched comment bracket '['");
                    goto ERROR;
                }
                str·append(&node->comment, tokstr(tok));
            }
        break;

        case tok·rbrak:
           errorf("incorrect format: end comment token found in disallowed region");
           goto ERROR;
        break;

        case tok·colon:
            tok = lex_nospace(p->file, p->io);
            if (tok.kind != tok·number) {
                errorf("incorrect format: expected number after colon");
                goto ERROR;
            }
            if (node == nil) {
                errorf("parse error: attempting to set distance of nil node");
                goto ERROR;
            }
            node->dist = tok.lit.x;
        break;

        case tok·comma:
            node = nil;
        break;

        case tok·ident:
            if (p->tok.kind == tok·rparen) {
                if (!node) {
                    errorf("parse error: attempting to set name of nil node");
                    goto ERROR;
                }
                node->name = str·make(tok.lit.s);
            } else {
                if (p->tok.kind != tok·lparen && p->tok.kind != tok·comma) {
                    errorf("format error: misplaced identifier for leaf found");
                    goto ERROR;
                }

                if (!p->root) {
                    errorf("parse error: attempting to create child for no parent");
                    goto ERROR;
                }

                node = p->mem.alloc(p->heap, 1, sizeof(*node));
                memset(node, 0, sizeof(*node));

                node->name = str·make(tok.lit.s);

                phylo·addchild(p->root, node);
            }
        break;

        case tok·number:
            if (p->tok.kind == tok·rparen) {
                if (p->lev == 0) {
                    errorf("format error: support value on root not supported");
                    goto ERROR;
                }
                node->support = tok.lit.x;
            } else {
                errorf("format error: found number in unexpected location");
                goto ERROR;
            }
        break;

        case tok·semi:
            p->file.unget(p->io, ';');
            if (p->lev) {
                errorf("format error: uneven number of parentheses found at ';'");
                goto ERROR;
            }
            goto DONE;

        case tok·eof:
            goto DONE;

        default: 
            errorf("parse error: unrecognized token");
            goto ERROR;
        }

        p->tok = tok;
    }

DONE:
    p->tok = tok;
    return 0;
ERROR:
    // TODO(nnoll): cleanup
    return 1;
}

int
bio·readnewick(io·Peeker stream, void *s, bio·Tree *tree)
{
    error err;
    struct Parser p;

    if (!tree) {
        errorf("tree pointer nil");
        return 0;
    }

    p = (struct Parser){ 
        .lev   = 0,
        .root  = nil,
        .tok   = (struct Token){ 0 },
        .io    = s,
        .file  = stream,
        .mem   = tree->mem,
        .heap  = tree->heap,
    };
    err = parse(&p);
    if (err) {
        errorf("parsing failed\n");
        return 0;
    }

    tree->root  = p.root;
    tree->nleaf = 0;
    tree->root->nnode = 0;

    phylo·countleafs(tree->root, &tree->nleaf);
    phylo·countnodes(tree->root, &tree->root->nnode);

    return 1;
}

// -----------------------------------------------------------------------
// Write

static
error
dump(bio·Node *node, void *impl, io·Putter out)
{
    byte b[24];

    if (!node) {
        return 1;
    }

    bio·Node *child;
    if (node->nchild) {
        out.put(impl, '(');

        dump(node->child, impl, out);
        for (child = node->child->sibling; child != nil; child = child->sibling) {
            out.put(impl, ',');
            dump(child, impl, out);
        }

        out.put(impl, ')');
    }
    if (node->name) {
        out.puts(impl, node->name);
    }

    if (node->parent) {
        out.put(impl, ':');
        snprintf(b, arrlen(b), "%f", node->dist);
        out.puts(impl, b);
    }

    return 0;
}

error
bio·writenewick(bio·Tree tree, io·Putter out, void* impl)
{
    dump(tree.root, impl, out);
    out.put(impl, ';');
    out.put(impl, '\n');

    return 0;
}