5 static t_LstArticulos *lst_articulos;
7 static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
9 static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
10 static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
12 /* Manejo de la lista doble */
13 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
14 static int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
15 static int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo);
17 t_LstArticulos *art_get_lst()
22 int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
24 if (nodo == NULL) return 0;
25 if (nodo->ant == NULL) {
26 /* Me piden borrar el primer nodo */
28 nodo->sig->ant = NULL;
30 lst->primero = nodo->sig;
33 nodo->sig->ant = nodo->ant;
35 nodo->ant->sig = nodo->sig;
41 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
44 if (reg == EMUFS_NOT_FOUND) return NULL;
45 tmp = malloc(sizeof(t_Reg_Articulo));
46 if (tmp == NULL) return NULL;
47 tmp->sig = tmp->ant = NULL;
54 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
56 if (nodo == NULL) return 0;
59 lst->primero->ant = nodo;
60 nodo->sig = lst->primero;
68 t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
71 xmlNode *node, *inicio;
76 EMUFS_REG_ID id, *indices, indices_cant;
78 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
79 if (tmp == NULL) return NULL;
83 if (filename != NULL) {
84 document = xmlReadFile(filename, "ISO-8859-1",0);
85 if (document == NULL) {
90 node = xmlDocGetRootElement(document);
91 /* Busco el TAG principal "ARTICULOS" */
93 if (node->type == XML_ELEMENT_NODE) {
94 if (strcmp(node->name, "ARTICULOS") == 0) {
95 inicio = node->children;
102 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
103 for (node=inicio ; node ; node = node->next) {
104 if (node->type == XML_ELEMENT_NODE) {
105 if (strcmp(node->name, "ARTICULO") == 0) {
108 memset(&art, '*', sizeof(t_Articulo));
109 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
110 strcpy(art.desc, xmlGetProp(node, "Descripción"));
111 strcpy(art.presentacion, xmlGetProp(node, "Presentación"));
112 strcpy(art.existencia, xmlGetProp(node, "Existencia"));
113 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
114 strcpy(art.pvu, xmlGetProp(node, "PVU"));
115 strcpy(art.emin, xmlGetProp(node, "Emín"));
116 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
117 save = procesar_guardar_articulo(&art, &size, lst_articulos);
119 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
120 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
126 xmlFreeDoc(document);
129 tmp->fp = emufs_abrir("articulos");
130 /* Ahora trato de recuperar la info */
131 indices = emufs_idx_get(tmp->fp, &indices_cant);
132 for(i=0; i<indices_cant; i++) {
135 /* Leo el registro */
136 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
137 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
138 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
148 int art_liberar(t_LstArticulos *l)
150 if (l == NULL) l = lst_articulos;
151 if (l == NULL) return 1;
153 emufs_destruir(l->fp);
154 /* TODO : Liberar lista */
157 lst_articulos = NULL;
161 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero, EMUFS_REG_ID *id)
164 t_Reg_Articulo *nodo;
168 int n = atoi(numero);
170 if (lst == NULL) lst = lst_articulos;
171 if (lst == NULL) return NULL;
174 if (n == nodo->numero) {
175 (*id) = nodo->num_reg;
176 art = (t_Articulo *)malloc(sizeof(t_Articulo));
177 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
179 tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
186 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
200 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
203 t_Articulo *articulo;
205 form = form_crear(win);
206 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
207 form_ejecutar(form, 1,1);
208 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"), id);
214 void art_modificar(char *s)
218 t_Articulo *articulo;
225 win = newwin(8, COLS-2, 13, 1);
230 articulo = art_form_buscar(win, &id);
233 /* Leo el registro directamente */
234 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
235 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
237 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
242 if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
250 if (articulo != NULL) {
251 form = form_crear(win);
252 sprintf(num, "%08d", articulo->numero);
253 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
254 form_es_modificable(form, "Numero de Artículo" , 0);
255 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
256 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
257 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
258 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
259 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
260 form_ejecutar(form, 1,1);
262 /* Actualizar registro */
263 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
264 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
265 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
266 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
267 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
268 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
269 /* Ya actualice los datos, ahora veo de grabarlos */
270 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
273 lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
280 wattron(win, COLOR_PAIR(COLOR_YELLOW));
281 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
282 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
291 void art_eliminar(char *s)
294 t_Articulo *articulo;
295 t_Reg_Articulo *nodo;
298 win = newwin(8, COLS-2, 13, 1);
302 articulo = art_form_buscar(win, &id);
304 if (articulo == NULL) {
305 wattron(win, COLOR_PAIR(COLOR_YELLOW));
306 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
307 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
311 nodo = lst_articulos->primero;
313 if (nodo->numero == articulo->numero) {
314 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
315 eliminar_nodo_articulo(lst_articulos, nodo);
328 void art_agregar(char *s)
333 t_Reg_Articulo *nuevo;
335 int error = 0, existe;
339 win = newwin(8, COLS-2, 13, 1);
343 form = form_crear(win);
344 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
345 form_agregar_widget(form, INPUT, "Descripción", 50, "");
346 form_agregar_widget(form, INPUT, "Presentación", 30, "");
347 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
348 form_agregar_widget(form, INPUT, "PVU", 8, "");
349 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
350 form_ejecutar(form, 1,1);
352 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
354 nuevo = lst_articulos->primero;
356 if (art.numero == nuevo->numero) {
364 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
365 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
366 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
367 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
368 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
369 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
371 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
372 save = procesar_guardar_articulo(&art, &size, lst_articulos);
374 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
376 wattron(win, COLOR_PAIR(COLOR_YELLOW));
377 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
378 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
382 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
387 wattron(win, COLOR_PAIR(COLOR_YELLOW));
388 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
389 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
400 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
403 switch (lst->fp->tipo) {
407 /* Copio el primer campo, esto es facil :-) */
408 memcpy(&dst->numero, ini, sizeof(unsigned int));
409 ini+=sizeof(unsigned int);
410 /* Ahora empieza el juego */
411 /* Los \0 son los delimitadores de campo! */
413 while (*fin!='\0') fin++;
414 memcpy(dst->desc, ini, fin-ini+1);
418 while (*fin!='\0') fin++;
419 memcpy(dst->presentacion, ini, fin-ini+1);
423 while (*fin!='\0') fin++;
424 memcpy(dst->existencia, ini, fin-ini+1);
428 while (*fin!='\0') fin++;
429 memcpy(dst->pvu, ini, fin-ini+1);
432 fin = (char *)src+size;
433 memcpy(dst->emin, ini, fin-ini+1);
437 memcpy(dst, src, sizeof(t_Articulo));
440 return 1; /* Todo ok */
443 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
447 char *from = (char *)src;
448 switch(lst->fp->tipo) {
451 /* Calculo el tamaño que voy a necesitar */
452 i[0] = sizeof(unsigned int);
453 i[1] = sizeof(char)*(strlen(src->desc)+1);
454 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
455 i[3] = sizeof(char)*(strlen(src->existencia)+1);
456 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
457 i[4] = sizeof(char)*(strlen(src->pvu)+1);
458 i[5] = sizeof(char)*(strlen(src->emin)+1);
459 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
460 tmp = (char *)malloc((*size));
461 if (tmp == NULL) return NULL;
462 memcpy(tmp, &src->numero, i[0]);
463 memcpy(tmp+i[0], src->desc, i[1]);
464 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
465 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
466 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
467 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
470 /* Lleno el lugar no ocupado de los strings con *, para que el ver
471 * registro se vea bien
473 tmp = (char *)malloc(sizeof(t_Articulo));
474 memcpy(tmp, from, sizeof(t_Articulo));
475 (*size) = sizeof(t_Articulo);
480 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
483 EMUFS_REG_ID *indices, id;
484 EMUFS_REG_SIZE indices_total, i, size;
486 t_LstArticulos *lst_nueva;
490 old = lst_articulos->fp;
492 /* Si el tipo es el mismo, no tengo que hacer nada! */
493 if (old->tipo == tipo) return;
495 fprintf(stderr, "Me prepado para cambiar de archivo\n");
497 /* Creo el nuevo file */
498 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
500 fprintf(stderr, "ARCHIVO NUEVO NO CREADO\n");
504 /* Creo la nueva lista */
505 lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
506 lst_nueva->primero = NULL;
507 lst_nueva->fp = nuevo;
509 /* Leo los indices del archivo viejo */
510 indices = emufs_idx_get(old, &indices_total);
511 if (indices == NULL) {
512 fprintf(stderr, "NO HAY INDICES!\n");
513 art_liberar(lst_nueva);
517 for(i=0; i<indices_total; i++) {
518 fprintf(stderr, "Registro %lu de %lu\n", i, indices_total);
519 fprintf(stderr, "A leer : %lu\n", indices[i]);
521 save = old->leer_registro(old, indices[i], &size, &error);
522 fprintf(stderr, "Lei\n");
523 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
524 fprintf(stderr, "Procese\n");
526 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
527 save = procesar_guardar_articulo(&art, &size, lst_nueva);
528 fprintf(stderr, "Procese guardar\n");
530 id = nuevo->grabar_registro(nuevo, save, size, &error);
531 fprintf(stderr, "Guarde\n");
532 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
538 art_liberar(lst_articulos);
539 lst_articulos = lst_nueva;
541 fprintf(stderr, "Listo. Renombre y me voy\n");
542 /* Muevo los archivos! */
543 /* TODO : Poner en otro lugar mas generico! */
544 /* rename("emufs_tmp.dat", "articulos.dat");
545 rename("emufs_tmp.idx", "articulos.idx");
546 rename("emufs_tmp.fsc", "articulos.fsc");
547 rename("emufs_tmp.did", "articulos.did");*/