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 #ifdef _WIN32
00032 #include "winconfig.h"
00033 #else
00034 #include "config.h"
00035 #endif
00036
00037 #include "mxml.h"
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047 const char *
00048 mxmlElementGetAttr(mxml_node_t *node,
00049 const char *name)
00050 {
00051 int i;
00052 mxml_attr_t *attr;
00053
00054
00055 #ifdef DEBUG
00056 fprintf(stderr, "mxmlElementGetAttr(node=%p, name=\"%s\")\n",
00057 node, name ? name : "(null)");
00058 #endif
00059
00060
00061
00062
00063
00064 if (!node || node->type != MXML_ELEMENT || !name)
00065 return (NULL);
00066
00067
00068
00069
00070
00071 for (i = node->value.element.num_attrs, attr = node->value.element.attrs;
00072 i > 0;
00073 i --, attr ++)
00074 if (!strcmp(attr->name, name))
00075 return (attr->value);
00076
00077
00078
00079
00080
00081 return (NULL);
00082 }
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094 void
00095 mxmlElementSetAttr(mxml_node_t *node,
00096 const char *name,
00097 const char *value)
00098 {
00099 int i;
00100 mxml_attr_t *attr;
00101
00102
00103 #ifdef DEBUG
00104 fprintf(stderr, "mxmlElementSetAttr(node=%p, name=\"%s\", value=\"%s\")\n",
00105 node, name ? name : "(null)", value ? value : "(null)");
00106 #endif
00107
00108
00109
00110
00111
00112 if (!node || node->type != MXML_ELEMENT || !name)
00113 return;
00114
00115
00116
00117
00118
00119 for (i = node->value.element.num_attrs, attr = node->value.element.attrs;
00120 i > 0;
00121 i --, attr ++)
00122 if (!strcmp(attr->name, name))
00123 {
00124
00125
00126
00127
00128 if (attr->value)
00129 free(attr->value);
00130
00131 if (value)
00132 {
00133 if ((attr->value = strdup(value)) == NULL)
00134 mxml_error("Unable to allocate memory for attribute '%s' in element %s!",
00135 name, node->value.element.name);
00136 }
00137 else
00138 attr->value = NULL;
00139
00140 return;
00141 }
00142
00143
00144
00145
00146
00147 if (node->value.element.num_attrs == 0)
00148 attr = (mxml_attr_t*)malloc(sizeof(mxml_attr_t));
00149 else
00150 attr = (mxml_attr_t*)realloc(node->value.element.attrs,
00151 (node->value.element.num_attrs + 1) * sizeof(mxml_attr_t));
00152
00153 if (!attr)
00154 {
00155 mxml_error("Unable to allocate memory for attribute '%s' in element %s!",
00156 name, node->value.element.name);
00157 return;
00158 }
00159
00160 node->value.element.attrs = attr;
00161 attr += node->value.element.num_attrs;
00162
00163 attr->name = strdup(name);
00164 if (value)
00165 attr->value = strdup(value);
00166 else
00167 attr->value = NULL;
00168
00169 if (!attr->name || (!attr->value && value))
00170 {
00171 if (attr->name)
00172 free(attr->name);
00173
00174 if (attr->value)
00175 free(attr->value);
00176
00177 mxml_error("Unable to allocate memory for attribute '%s' in element %s!",
00178 name, node->value.element.name);
00179
00180 return;
00181 }
00182
00183 node->value.element.num_attrs ++;
00184 }
00185
00186
00187
00188
00189