Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043 #include <sys/types.h>
00044 #include <sys/heap.h>
00045
00046 #include <stdlib.h>
00047 #include <string.h>
00048 #include <ctype.h>
00049 #include <memdebug.h>
00050
00051 #include <pro/uxml.h>
00052
00057
00058 #ifndef MAX_UXMLTAG_SIZE
00059
00064 #define MAX_UXMLTAG_SIZE 512
00065 #endif
00066
00067 #ifndef MAX_UXMLTKN_SIZE
00068
00075 #define MAX_UXMLTKN_SIZE 64
00076 #endif
00077
00078 static int UxmlReadTag(FILE * stream, char *data, size_t size)
00079 {
00080 int rc = -1;
00081 int ch;
00082 int qc = 0;
00083 int state = 1;
00084 char *dp = NULL;
00085
00086 while (state) {
00087 ch = fgetc(stream);
00088 if (ch == EOF || ch == 0) {
00089 break;
00090 }
00091 switch (state) {
00092 case 1:
00093
00094 if (ch == '<') {
00095
00096 dp = data;
00097 state = 4;
00098 } else if (ch == '"' || ch == '\'') {
00099
00100 qc = ch;
00101 state++;
00102 }
00103 break;
00104 case 2:
00105
00106 case 5:
00107
00108 if (ch == qc) {
00109
00110 state--;
00111 }
00112 break;
00113 case 3:
00114
00115 if (isspace(ch)) {
00116 ch = 0;
00117 break;
00118 }
00119 state = 4;
00120
00121 case 4:
00122
00123 if (ch == '>') {
00124 rc = 0;
00125 state = 0;
00126 } else if (ch == '"' || ch == '\'') {
00127 qc = ch;
00128 state++;
00129 } else if (isspace(ch)) {
00130 ch = ' ';
00131 state = 3;
00132 }
00133 break;
00134 }
00135 if (dp && ch) {
00136 if (size > 1) {
00137 size--;
00138 *dp++ = ch;
00139 } else {
00140 break;
00141 }
00142 }
00143 }
00144 if (dp) {
00145 *dp = 0;
00146 }
00147 return rc;
00148 }
00149
00192 UXML_NODE *UxmlParseStream(FILE * stream, char **f_tags, char **f_attr)
00193 {
00194 char *tag;
00195 char *tkn;
00196 char *tp;
00197 UXML_NODE *root = NULL;
00198 UXML_NODE *node = NULL;
00199 UXML_NODE *nn;
00200
00201
00202 if ((tag = malloc(MAX_UXMLTAG_SIZE)) == NULL) {
00203 return NULL;
00204 }
00205
00206 if ((tkn = malloc(MAX_UXMLTKN_SIZE)) == NULL) {
00207 free(tag);
00208 return NULL;
00209 }
00210 for (;;) {
00211 if (NutHeapAvailable() < 8192) {
00212 break;
00213 }
00214
00215 if (UxmlReadTag(stream, tag, MAX_UXMLTAG_SIZE)) {
00216
00217 break;
00218 }
00219
00220 if ((tp = UxmlParseTag(tag + 1, tkn, MAX_UXMLTKN_SIZE)) != NULL) {
00221 if (isalpha((unsigned char)*tkn) && UxmlFilterMatch(tkn, f_tags)) {
00222
00223 char *old_tp = tp;
00224
00225
00226
00227
00228 if ((nn = UxmlNodeCreate(tkn)) == NULL) {
00229 break;
00230 }
00231 if (root == NULL) {
00232
00233 root = nn;
00234 node = nn;
00235 } else if (node == NULL) {
00236
00237 node = UxmlTreeAddSibling(root, nn);
00238 } else {
00239
00240 node = UxmlTreeAddChild(node, nn);
00241 }
00242
00243 for (;;) {
00244 if ((tp = UxmlParseTag(tp, tkn, MAX_UXMLTKN_SIZE)) == NULL || *tkn == '>') {
00245
00246 break;
00247 }
00248 if (isalpha((unsigned char)*tkn) && UxmlFilterMatch(tkn, f_attr)) {
00249 char *name = strdup(tkn);
00250
00251 if (name) {
00252 if ((tp = UxmlParseTag(tp, tkn, MAX_UXMLTKN_SIZE)) == NULL || *tkn != '=') {
00253 free(name);
00254 break;
00255 }
00256 if ((tp = UxmlParseTag(tp, tkn, MAX_UXMLTKN_SIZE)) == NULL || *tkn == '>') {
00257 free(name);
00258 break;
00259 }
00260 UxmlNodeAddAttrib(node, name, tkn);
00261 free(name);
00262 }
00263 }
00264 }
00265
00266 if (node && strlen(old_tp) > 1 && old_tp[strlen(old_tp) - 2]=='/') {
00267 node = node->xmln_parent;
00268 }
00269 } else if (*tkn == '/') {
00270
00271
00272
00273 tp = UxmlParseTag(tp, tkn, MAX_UXMLTKN_SIZE);
00274 if (tp && node && strcasecmp(node->xmln_name, tkn) == 0) {
00275 node = node->xmln_parent;
00276 }
00277 }
00278 }
00279 }
00280
00281 free(tag);
00282 free(tkn);
00283
00284 return root;
00285 }
00286