blob: 126a014b5a7c71a1b0c134628ba28e83380ad109 [file] [log] [blame]
Robert Bieberd5b24dd2010-05-25 15:19:52 +00001/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2010 Robert Bieber
11 *
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.
16 *
17 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
18 * KIND, either express or implied.
19 *
20 ****************************************************************************/
21
22#ifndef GENERIC_PARSER_H
23#define GENERIC_PARSER_H
24
Robert Bieberc5e14b52010-05-31 17:39:58 +000025#ifdef __cplusplus
26extern "C"
27{
28#endif
Robert Bieber64321ad2010-06-10 21:02:44 +000029#include <stdlib.h>
Robert Bieberd5b24dd2010-05-25 15:19:52 +000030
31/********************************************************************
32 ****** Data Structures *********************************************
33 *******************************************************************/
34
35/* Possible types of element in a WPS file */
36enum skin_element_type
37{
Jonathan Gordon35b09cb2010-06-13 03:13:01 +000038 UNKNOWN = -1,
Robert Bieberd1659d62010-06-01 07:11:23 +000039 VIEWPORT,
Jonathan Gordondc347852010-07-04 02:04:14 +000040 LINE_ALTERNATOR,
Jonathan Gordon78c9a192010-07-04 02:05:42 +000041 LINE,
Robert Bieber6980c1e2010-05-29 00:04:04 +000042 CONDITIONAL,
43 TAG,
Robert Bieber6980c1e2010-05-29 00:04:04 +000044 TEXT,
45 COMMENT,
Robert Bieberd5b24dd2010-05-25 15:19:52 +000046};
47
48enum skin_errorcode
49{
50 MEMORY_LIMIT_EXCEEDED,
51 NEWLINE_EXPECTED,
52 ILLEGAL_TAG,
53 ARGLIST_EXPECTED,
54 TOO_MANY_ARGS,
55 DEFAULT_NOT_ALLOWED,
56 UNEXPECTED_NEWLINE,
57 INSUFFICIENT_ARGS,
58 INT_EXPECTED,
59 SEPERATOR_EXPECTED,
60 CLOSE_EXPECTED,
61 MULTILINE_EXPECTED
62};
63
64/* Holds a tag parameter, either numeric or text */
65struct skin_tag_parameter
66{
67 enum
68 {
69 NUMERIC,
70 STRING,
71 CODE,
72 DEFAULT
73 } type;
74
75 union
76 {
77 int numeric;
78 char* text;
79 struct skin_element* code;
80 } data;
Robert Bieber5943f4c2010-06-01 19:55:20 +000081
82 char type_code;
Robert Bieberd5b24dd2010-05-25 15:19:52 +000083
84};
85
86/* Defines an element of a SKIN file */
87struct skin_element
88{
89 /* Defines what type of element it is */
90 enum skin_element_type type;
91
92 /* The line on which it's defined in the source file */
93 int line;
94
Robert Bieber64321ad2010-06-10 21:02:44 +000095 /* 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
98 */
99 void* data;
Robert Bieberd5b24dd2010-05-25 15:19:52 +0000100
101 /* The tag or conditional name */
Robert Bieber0a054b22010-06-01 16:44:52 +0000102 struct tag_info *tag;
Robert Bieberd5b24dd2010-05-25 15:19:52 +0000103
104 /* Pointer to and size of an array of parameters */
105 int params_count;
106 struct skin_tag_parameter* params;
107
108 /* Pointer to and size of an array of children */
109 int children_count;
110 struct skin_element** children;
111
112 /* Link to the next element */
113 struct skin_element* next;
114};
115
116/***********************************************************************
117 ***** Functions *******************************************************
118 **********************************************************************/
119
120/* Parses a WPS document and returns a list of skin_element
121 structures. */
Robert Biebera9848ce2010-06-01 21:25:02 +0000122struct skin_element* skin_parse(const char* document);
Robert Bieberd5b24dd2010-05-25 15:19:52 +0000123
124/* Memory management functions */
Björn Stenbergf1a144a2010-06-17 11:04:32 +0000125struct skin_element* skin_alloc_element(void);
Robert Bieberd5b24dd2010-05-25 15:19:52 +0000126struct skin_element** skin_alloc_children(int count);
127struct skin_tag_parameter* skin_alloc_params(int count);
128char* skin_alloc_string(int length);
129
Robert Bieber0769fc52010-05-25 22:24:08 +0000130void skin_free_tree(struct skin_element* root);
131
Robert Bieber64321ad2010-06-10 21:02:44 +0000132
Robert Bieberc5e14b52010-05-31 17:39:58 +0000133#ifdef __cplusplus
134}
135#endif
136
Robert Bieberd5b24dd2010-05-25 15:19:52 +0000137#endif /* GENERIC_PARSER_H */