1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
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
31 /********************************************************************
32 ****** Data Structures *********************************************
33 *******************************************************************/
35 /* Possible types of element in a WPS file */
36 enum skin_element_type
50 MEMORY_LIMIT_EXCEEDED
,
64 /* Holds a tag parameter, either numeric or text */
65 struct skin_tag_parameter
79 struct skin_element
* code
;
86 /* Defines an element of a SKIN file */
89 /* Defines what type of element it is */
90 enum skin_element_type type
;
92 /* The line on which it's defined in the source file */
95 /* Placeholder for element data
96 * TEXT and COMMENT uses it for the text string
97 * TAG, VIEWPORT, LINE, etc may use it for post parse extra storage
101 /* The tag or conditional name */
102 struct tag_info
*tag
;
104 /* Pointer to and size of an array of parameters */
106 struct skin_tag_parameter
* params
;
108 /* Pointer to and size of an array of children */
110 struct skin_element
** children
;
112 /* Link to the next element */
113 struct skin_element
* next
;
116 /***********************************************************************
117 ***** Functions *******************************************************
118 **********************************************************************/
120 /* Parses a WPS document and returns a list of skin_element
122 struct skin_element
* skin_parse(const char* document
);
124 /* Memory management functions */
125 struct skin_element
* skin_alloc_element(void);
126 struct skin_element
** skin_alloc_children(int count
);
127 struct skin_tag_parameter
* skin_alloc_params(int count
);
128 char* skin_alloc_string(int length
);
130 void skin_free_tree(struct skin_element
* root
);
137 #endif /* GENERIC_PARSER_H */