summaryrefslogtreecommitdiff
path: root/vtparse/src/vtparse_test.c
blob: 4082655a20316fc7b4a2fd2d838800a460f87f8a (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
/*
 * VTParse - an implementation of Paul Williams' DEC compatible state machine parser
 *
 * Author: Joshua Haberman <joshua@reverberate.org>
 *
 * This code is in the public domain.
 */

#include <stdio.h>
#include "vtparse.h"

void parser_callback(vtparse_t *parser, vtparse_action_t action, unsigned char ch)
{
    int i;

    printf("Received action %s, char=0x%02x\n", ACTION_NAMES[action]);
    printf("Intermediate chars: '%s'\n", parser->intermediate_chars);
    printf("%d Parameters:\n", parser->num_params);
    for(i = 0; i < parser->num_params; i++)
        printf("\t%d\n", parser->params[i]);
    printf("\n");
}

int main()
{
    unsigned char buf[1024];
    int bytes;
    vtparse_t parser;

    vtparse_init(&parser, parser_callback);

    while(1) {
        bytes = read(0, buf, 1024);
        vtparse(&parser, buf, bytes);
    }
}