+int leer_tipo_arbol(char *s) {
+ if (strcmp(s, "B") == 0) return 0;
+ if (strcmp(s, "BA") == 0) return 1;
+ if (strcmp(s, "BP") == 0) return 2;
+
+ /* Por defecto es un B */
+ return 0;
+}
+
+void leer_param_ind_art(t_Parametros *param, xmlNode *padre)
+{
+ xmlNode *node;
+ char *tmp, *nombre;
+ node = padre->children;
+ while (node) {
+ if (node->type == XML_ELEMENT_NODE) {
+ if (strcmp(node->name, "indice")==0) {
+ PERR(" LEO INDICE");
+ nombre = xml_get_prop(node, "nombre");
+
+ if (strcmp(nombre, "codigo")==0) {
+ tmp = xml_get_prop(node, "tipo");
+ param->ind_art[0].tipo_arbol = leer_tipo_arbol(tmp);
+ free(tmp);
+ tmp = xml_get_prop(node, "bloque");
+ param->ind_art[0].tam_bloque = atoi(tmp);
+ free(tmp);
+ } else if (strcmp(nombre, "desc")==0) {
+ tmp = xml_get_prop(node, "tipo");
+ param->ind_art[1].tipo_arbol = leer_tipo_arbol(tmp);
+ free(tmp);
+ tmp = xml_get_prop(node, "bloque");
+ param->ind_art[1].tam_bloque = atoi(tmp);
+ free(tmp);
+ } else if (strcmp(nombre, "presentacion")==0) {
+ tmp = xml_get_prop(node, "tipo");
+ param->ind_art[2].tipo_arbol = leer_tipo_arbol(tmp);
+ free(tmp);
+ tmp = xml_get_prop(node, "bloque");
+ param->ind_art[2].tam_bloque = atoi(tmp);
+ free(tmp);
+ }
+ PERR(" LISTO");
+ free(nombre);
+ }
+ }
+ node = node->next;
+ }
+}
+
+void leer_param_ind_fact(t_Parametros *param, xmlNode *padre)
+{
+ xmlNode *node;
+ char *tmp, *nombre;
+ node = padre->children;
+ while (node) {
+ if (node->type == XML_ELEMENT_NODE) {
+ if (strcmp(node->name, "indice")==0) {
+ PERR(" LEO INDICE");
+ nombre = xml_get_prop(node, "nombre");
+
+ if (strcmp(nombre, "numero")==0) {
+ tmp = xml_get_prop(node, "tipo");
+ param->ind_fac[0].tipo_arbol = leer_tipo_arbol(tmp);
+ free(tmp);
+ tmp = xml_get_prop(node, "bloque");
+ param->ind_fac[0].tam_bloque = atoi(tmp);
+ free(tmp);
+ } else if (strcmp(nombre, "emision")==0) {
+ tmp = xml_get_prop(node, "tipo");
+ param->ind_fac[1].tipo_arbol = leer_tipo_arbol(tmp);
+ free(tmp);
+ tmp = xml_get_prop(node, "bloque");
+ param->ind_fac[1].tam_bloque = atoi(tmp);
+ free(tmp);
+ } else if (strcmp(nombre, "vto")==0) {
+ tmp = xml_get_prop(node, "tipo");
+ param->ind_fac[2].tipo_arbol = leer_tipo_arbol(tmp);
+ free(tmp);
+ tmp = xml_get_prop(node, "bloque");
+ param->ind_fac[2].tam_bloque = atoi(tmp);
+ free(tmp);
+ } else if (strcmp(nombre, "cheque")==0) {
+ tmp = xml_get_prop(node, "tipo");
+ param->ind_fac[3].tipo_arbol = leer_tipo_arbol(tmp);
+ free(tmp);
+ tmp = xml_get_prop(node, "bloque");
+ param->ind_fac[3].tam_bloque = atoi(tmp);
+ free(tmp);
+ } else if (strcmp(nombre, "ctacte")==0) {
+ tmp = xml_get_prop(node, "tipo");
+ param->ind_fac[4].tipo_arbol = leer_tipo_arbol(tmp);
+ free(tmp);
+ tmp = xml_get_prop(node, "bloque");
+ param->ind_fac[4].tam_bloque = atoi(tmp);
+ free(tmp);
+ }
+ PERR(" LISTO");
+ free(nombre);
+ }
+ }
+ node = node->next;
+ }
+}
+
+void leer_param_art(t_Parametros *param, xmlNode *padre)
+{
+ xmlNode *node;
+ char *tmp;
+ node = padre->children;
+ while (node) {
+ if (node->type == XML_ELEMENT_NODE) {
+ if (strcmp(node->name, "fuente")==0) {
+ strcpy(param->xml_art, XML_GET_CONTENT(node->children));
+ } else if (strcmp(node->name, "datos")==0) {
+ tmp = xml_get_prop(node, "tipo");
+ param->tipo_arch_art = atoi(tmp)-1;
+ free(tmp);
+ tmp = xml_get_prop(node, "bloque");
+ param->tam_bloque_art = atoi(tmp);
+ free(tmp);
+ } else if (strcmp(node->name, "indices")==0) {
+ PERR("LEO INDICES")
+ leer_param_ind_art(param, node);
+ PERR("LISTO");
+ }
+ }
+ node = node->next;
+ }
+}
+
+void leer_param_fac(t_Parametros *param, xmlNode *padre)
+{
+ xmlNode *nodo;
+ char *tmp;
+ nodo = padre->children;
+ while (nodo) {
+ if (nodo->type == XML_ELEMENT_NODE) {
+ if (strcmp(nodo->name, "fuente")==0) {
+ strcpy(param->xml_fact, XML_GET_CONTENT(nodo->children));
+ } else if (strcmp(nodo->name, "datos")==0) {
+ tmp = xml_get_prop(nodo, "tipo");
+ param->tipo_arch_fact = atoi(tmp)-1;
+ free(tmp);
+ tmp = xml_get_prop(nodo, "bloque");
+ param->tam_bloque_fact = atoi(tmp);
+ free(tmp);
+ } else if (strcmp(nodo->name, "datos_notas")==0) {
+ tmp = xml_get_prop(nodo, "tipo");
+ param->tipo_arch_nota = atoi(tmp)-1;
+ free(tmp);
+ tmp = xml_get_prop(nodo, "bloque");
+ param->tam_bloque_nota = atoi(tmp);
+ free(tmp);
+ } else if (strcmp(nodo->name, "indices")==0) {
+ PERR("LEO INDICES")
+ leer_param_ind_fact(param, nodo);
+ PERR("LISTO");
+ }
+ }
+ nodo = nodo->next;
+ }
+}
+
+void param_xml(char *s, t_Parametros *param)
+{
+ xmlDocPtr document;
+ xmlNode *node, *inicio;
+
+ document = xmlReadFile(s, NULL,0);
+ if (document == NULL) {
+ return;
+ }
+ inicio = NULL;
+ node = xmlDocGetRootElement(document);
+ /* Busco el TAG principal "EMUFS" */
+ while (node) {
+ if (node->type == XML_ELEMENT_NODE) {
+ PERR(node->name);
+ if (strcmp(node->name, "emufs") == 0) {
+ inicio = node->children;
+ break;
+ }
+ }
+ node = node->next;
+ }
+ if (inicio == NULL) {
+ PERR("NO ENCONTRE TAG PRINCIPAL");
+ xmlFreeDoc(document);
+ xmlCleanupParser();
+ return;
+ }
+
+ node = inicio;
+ while (node) {
+ if (node->type == XML_ELEMENT_NODE) {
+ if (strcmp(node->name, "articulos")==0) {
+ leer_param_art(param, node);
+ } else if (strcmp(node->name, "facturas")==0) {
+ leer_param_fac(param, node);
+ }
+ }
+ node = node->next;
+ }
+}
+
+static t_Parametros parametros;
+