summaryrefslogtreecommitdiff
path: root/yy/demo.c
blob: 52058d3ca81f8f2986b433ef89ee1e43f32497e1 (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
#include <stdio.h>

#define YYLTYPE KALMIALTYPE
#define YYSTYPE KALMIASTYPE
#include "kalmia.tab.h"
#include "kalmia.lex.h"


void print_attrs(struct kai_attr_t *attr)
{
	while(attr != NULL) {
		printf("%s=\"%s\" ", attr->key, attr->value);
		attr = attr->next;
	}
}


void print_tag(char *indent, struct kai_tag_t *tag)
{
	printf("%s%s[ ", indent, tag->type);
	print_attrs(tag->attrs);
	printf("]\n");
}


void print_level(int indent_level, struct kai_tag_t *tag)
{
	char indent[64];
	for (int i=0; i<indent_level; i++) {
		indent[i] = '\t';
	}
	indent[indent_level] = 0;

	while (tag != NULL) {
		print_tag(indent, tag);
		if (tag->children != NULL) {
			print_level(indent_level+1, tag->children);
		}
		if (tag->content != NULL) {
			printf("%s\t%s\n", indent, tag->content);
		}
		tag = tag->next;
	}
}


int main(int argc, char **argv)
{
	if (argc < 2) {
		fprintf(stderr, "You must specify a file to parse!\n");
		return -1;
	}

	struct kai_tag_t *document = kai_parse_file(argv[1]);
	if (document == NULL) {
		return -1;
	}

	print_tag("", document);
	print_level(1, document->children);

	kai_tag_destroy(document);

	return 0;
}