Theme Editor: Put together a simple GUI to test going back and forth between a tree...
[kugel-rb.git] / utils / themeeditor / skin_parser.h
blobca2d7bc54bcea009637dd00686aef9bbf341314f
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2010 Robert Bieber
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
20 ****************************************************************************/
22 #ifndef GENERIC_PARSER_H
23 #define GENERIC_PARSER_H
25 #ifdef __cplusplus
26 extern "C"
28 #endif
31 #define SKIN_MAX_MEMORY 1048576
33 /********************************************************************
34 ****** A global buffer will be used to store the parse tree *******
35 *******************************************************************/
36 extern char skin_parse_tree[];
38 /********************************************************************
39 ****** Data Structures *********************************************
40 *******************************************************************/
42 /* Possible types of element in a WPS file */
43 enum skin_element_type
45 VIEWPORT,
46 LINE,
47 SUBLINES,
48 CONDITIONAL,
49 TAG,
50 NEWLINE,
51 TEXT,
52 COMMENT,
55 enum skin_errorcode
57 MEMORY_LIMIT_EXCEEDED,
58 NEWLINE_EXPECTED,
59 ILLEGAL_TAG,
60 ARGLIST_EXPECTED,
61 TOO_MANY_ARGS,
62 DEFAULT_NOT_ALLOWED,
63 UNEXPECTED_NEWLINE,
64 INSUFFICIENT_ARGS,
65 INT_EXPECTED,
66 SEPERATOR_EXPECTED,
67 CLOSE_EXPECTED,
68 MULTILINE_EXPECTED
71 /* Holds a tag parameter, either numeric or text */
72 struct skin_tag_parameter
74 enum
76 NUMERIC,
77 STRING,
78 CODE,
79 DEFAULT
80 } type;
82 union
84 int numeric;
85 char* text;
86 struct skin_element* code;
87 } data;
89 char type_code;
93 /* Defines an element of a SKIN file */
94 struct skin_element
96 /* Defines what type of element it is */
97 enum skin_element_type type;
99 /* The line on which it's defined in the source file */
100 int line;
102 /* Text for comments and plaintext */
103 char* text;
105 /* The tag or conditional name */
106 struct tag_info *tag;
108 /* Pointer to and size of an array of parameters */
109 int params_count;
110 struct skin_tag_parameter* params;
112 /* Pointer to and size of an array of children */
113 int children_count;
114 struct skin_element** children;
116 /* Link to the next element */
117 struct skin_element* next;
120 /***********************************************************************
121 ***** Functions *******************************************************
122 **********************************************************************/
124 /* Parses a WPS document and returns a list of skin_element
125 structures. */
126 struct skin_element* skin_parse(const char* document);
128 /* Memory management functions */
129 struct skin_element* skin_alloc_element();
130 struct skin_element** skin_alloc_children(int count);
131 struct skin_tag_parameter* skin_alloc_params(int count);
132 char* skin_alloc_string(int length);
134 void skin_free_tree(struct skin_element* root);
136 #ifdef __cplusplus
138 #endif
140 #endif /* GENERIC_PARSER_H */