+ // los agrego al hash
+ mapItems[name] = b;
+}
+
+void Principal::read_status_xml(const std::string &frame)
+{
+ std::string item_name;
+ xmlDocPtr document;
+ document = xmlParseMemory(frame.c_str(),frame.size());
+ if (document == NULL) {
+ std::cout << "read_status_xml::no se creo documento" << std::endl;
+ return;
+ }
+
+ xmlNodePtr nodo, items, props;
+ nodo = document->children;
+ float tmp;
+ bool tmp_b;
+
+ if (strcmp((char *)nodo->name, "plantstatus") == 0) {
+ items = nodo->children;
+ while (items != NULL) {
+ if (items->type == XML_ELEMENT_NODE) {
+ tmp = -1;
+ item_name = "";
+ if (xmlStrcmp(items->name, BAD_CAST"float")==0) {
+ tmp = get_float_from_xml(items->children);
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_actual_flow(tmp);
+ } else if (xmlStrcmp(items->name, BAD_CAST"exclusa")==0) {
+ tmp_b = get_bool_from_xml(items->children);
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_open(tmp_b);
+ } else if (xmlStrcmp(items->name, BAD_CAST"pump")==0) {
+ tmp_b = get_bool_from_xml(items->children);
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_open(tmp_b);
+ } else if (xmlStrcmp(items->name, BAD_CAST"tank")==0) {
+ xmlNodePtr nodo_tmp = items->children;
+ float cap, lit;
+ cap = lit = -1;
+ while (nodo_tmp != NULL) {
+ if (nodo_tmp->type == XML_ELEMENT_NODE) {
+ if (xmlStrcmp(nodo_tmp->name, BAD_CAST"capacity")==0)
+ cap = atof( (char *)XML_GET_CONTENT(nodo_tmp->children) );
+ else if (xmlStrcmp(nodo_tmp->name, BAD_CAST"litros")==0)
+ lit= atof( (char *)XML_GET_CONTENT(nodo_tmp->children) );
+ }
+ nodo_tmp = nodo_tmp->next;
+ }
+ item_name = (char *)xmlGetProp(items, BAD_CAST"name");
+ mapItems[item_name]->set_actual_flow(cap);
+ mapItems[item_name]->set_extra(lit);
+ }
+ }
+ items = items->next;
+ }
+
+ // Actualizo la UI
+ update_ui();
+ }