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;
77 EMUFS_REG_ID id, *indices, indices_cant;
79 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
80 if (tmp == NULL) return NULL;
84 if (filename != NULL) {
85 PERR("Voy a crear desde un XML");
86 document = xmlReadFile(filename, "ISO-8859-1",0);
87 if (document == NULL) {
94 node = xmlDocGetRootElement(document);
95 /* Busco el TAG principal "ARTICULOS" */
97 if (node->type == XML_ELEMENT_NODE) {
98 if (strcmp(node->name, "ARTICULOS") == 0) {
99 inicio = node->children;
106 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
107 for (node=inicio ; node ; node = node->next) {
108 if (node->type == XML_ELEMENT_NODE) {
109 if (strcmp(node->name, "ARTICULO") == 0) {
112 memset(&art, '*', sizeof(t_Articulo));
113 prop = xmlGetProp(node, "NroArtículo");
114 art.numero = atoi(prop);
116 strncpy(art.desc, prop = xmlGetProp(node, "Descripción"), 50); xmlFree(prop);
117 art.desc[50] = '\0'; /* Me aseguro de que este */
118 strncpy(art.presentacion, prop = xmlGetProp(node, "Presentación"), 30); xmlFree(prop);
119 art.presentacion[30] = '\0'; /* Me aseguro de que este */
120 strncpy(art.existencia, prop = xmlGetProp(node, "Existencia"), 8); xmlFree(prop);
121 art.existencia[8] = '\0'; /* Me aseguro de que este */
122 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
123 strncpy(art.pvu, prop = xmlGetProp(node, "PVU"), 8); xmlFree(prop);
124 art.pvu[8] = '\0'; /* Me aseguro de que este */
125 strncpy(art.emin, prop = xmlGetProp(node, "Emín"), 8); xmlFree(prop);
126 art.emin[8] = '\0'; /* Me aseguro de que este */
127 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
128 save = procesar_guardar_articulo(&art, &size, lst_articulos);
131 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
132 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
138 xmlFreeDoc(document);
141 PERR("Voy a recuperar desde un archivo");
142 tmp->fp = emufs_abrir("articulos");
143 if (tmp->fp == NULL) {
144 PERR("No se pudo cargar archivo de articulos.");
146 lst_articulos = NULL;
149 /* Ahora trato de recuperar la info */
150 indices = emufs_idx_get(tmp->fp, &indices_cant);
151 for(i=0; i<indices_cant; i++) {
154 /* Leo el registro */
156 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
157 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
158 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
168 int art_liberar(t_LstArticulos *l)
171 if (l == NULL) l = lst_articulos;
172 if (l == NULL) return 1;
174 emufs_destruir(l->fp);
177 l->primero = l->primero->sig;
182 lst_articulos = NULL;
186 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero, EMUFS_REG_ID *id)
189 t_Reg_Articulo *nodo;
193 int n = atoi(numero);
195 if (lst == NULL) lst = lst_articulos;
196 if (lst == NULL) return NULL;
199 if (n == nodo->numero) {
200 (*id) = nodo->num_reg;
201 art = (t_Articulo *)malloc(sizeof(t_Articulo));
202 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
204 tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
211 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
225 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
228 t_Articulo *articulo;
230 form = form_crear(win);
231 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
232 form_ejecutar(form, 1,1);
233 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"), id);
239 void art_modificar(char *s)
243 t_Articulo *articulo;
250 win = newwin(8, COLS-2, 13, 1);
255 articulo = art_form_buscar(win, &id);
258 /* Leo el registro directamente */
259 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
260 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
262 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
267 if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
275 if (articulo != NULL) {
276 form = form_crear(win);
277 sprintf(num, "%08d", articulo->numero);
278 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
279 form_es_modificable(form, "Numero de Artículo" , 0);
280 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
281 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
282 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
283 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
284 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
285 form_ejecutar(form, 1,1);
287 /* Actualizar registro */
288 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
289 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
290 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
291 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
292 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
293 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
294 /* Ya actualice los datos, ahora veo de grabarlos */
295 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
298 lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
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));
316 void art_eliminar(char *s)
319 t_Articulo *articulo;
320 t_Reg_Articulo *nodo;
323 win = newwin(8, COLS-2, 13, 1);
327 articulo = art_form_buscar(win, &id);
329 if (articulo == NULL) {
330 wattron(win, COLOR_PAIR(COLOR_YELLOW));
331 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
332 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
336 nodo = lst_articulos->primero;
338 if (nodo->numero == articulo->numero) {
339 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
340 eliminar_nodo_articulo(lst_articulos, nodo);
353 void art_agregar(char *s)
358 t_Reg_Articulo *nuevo;
360 int error = 0, existe;
364 win = newwin(8, COLS-2, 13, 1);
368 form = form_crear(win);
369 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
370 form_agregar_widget(form, INPUT, "Descripción", 50, "");
371 form_agregar_widget(form, INPUT, "Presentación", 30, "");
372 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
373 form_agregar_widget(form, INPUT, "PVU", 8, "");
374 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
375 form_ejecutar(form, 1,1);
377 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
379 nuevo = lst_articulos->primero;
381 if (art.numero == nuevo->numero) {
389 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
390 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
391 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
392 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
393 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
394 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
396 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
397 save = procesar_guardar_articulo(&art, &size, lst_articulos);
400 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
402 wattron(win, COLOR_PAIR(COLOR_YELLOW));
403 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
404 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
408 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
413 wattron(win, COLOR_PAIR(COLOR_YELLOW));
414 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
415 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
426 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
429 switch (lst->fp->tipo) {
433 /* Copio el primer campo, esto es facil :-) */
434 memset(dst, 0, sizeof(t_Articulo));
435 memcpy(&dst->numero, ini, sizeof(unsigned int));
436 ini+=sizeof(unsigned int);
437 /* Ahora empieza el juego */
438 /* Los \0 son los delimitadores de campo! */
440 while (*fin!='\0') fin++;
441 memcpy(dst->desc, ini, fin-ini+1);
445 while (*fin!='\0') fin++;
446 memcpy(dst->presentacion, ini, fin-ini+1);
450 while (*fin!='\0') fin++;
451 fprintf(stderr, "Presentacion = %s\n", dst->presentacion);
452 memcpy(dst->existencia, ini, fin-ini+1);
456 while (*fin!='\0') fin++;
457 memcpy(dst->pvu, ini, fin-ini+1);
460 fin = (char *)src+size;
461 memcpy(dst->emin, ini, fin-ini);
465 memcpy(dst, src, sizeof(t_Articulo));
468 return 1; /* Todo ok */
471 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
475 char *from = (char *)src;
476 switch(lst->fp->tipo) {
479 /* Calculo el tamaño que voy a necesitar */
480 i[0] = sizeof(unsigned int);
481 i[1] = sizeof(char)*(strlen(src->desc)+1);
482 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
483 i[3] = sizeof(char)*(strlen(src->existencia)+1);
484 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
485 i[4] = sizeof(char)*(strlen(src->pvu)+1);
486 i[5] = sizeof(char)*(strlen(src->emin)+1);
487 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
488 tmp = (char *)malloc((*size));
489 if (tmp == NULL) return NULL;
490 memset(tmp, 0, *size);
491 memcpy(tmp, &src->numero, i[0]);
492 memcpy(tmp+i[0], src->desc, i[1]);
493 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
494 fprintf(stderr, "ACA: %s\n", src->presentacion);
495 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
496 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
497 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
500 /* Lleno el lugar no ocupado de los strings con *, para que el ver
501 * registro se vea bien
503 tmp = (char *)malloc(sizeof(t_Articulo));
504 memset(tmp, '*', sizeof(t_Articulo));
505 memcpy(tmp, from, sizeof(t_Articulo));
506 (*size) = sizeof(t_Articulo);
511 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
514 EMUFS_REG_ID *indices, id;
515 EMUFS_REG_SIZE indices_total, i, size;
517 t_LstArticulos *lst_nueva;
521 PERR("==== EMPIEZO ====\n");
522 old = lst_articulos->fp;
524 /* Si el tipo es el mismo, no tengo que hacer nada! */
525 if (old->tipo == tipo) return;
527 /* Creo el nuevo file */
528 PERR("Creo el archivo\n");
529 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
531 PERR("ARCHIVO NUEVO NO CREADO");
535 /* Creo la nueva lista */
536 lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
537 lst_nueva->primero = NULL;
538 lst_nueva->fp = nuevo;
540 /* Leo los indices del archivo viejo */
541 PERR("Obtengo Indices\n");
542 indices = emufs_idx_get(old, &indices_total);
543 if (indices == NULL) {
544 art_liberar(lst_nueva);
548 PERR("Proceso datos\n");
549 for(i=0; i<indices_total; i++) {
551 save = old->leer_registro(old, indices[i], &size, &error);
552 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
554 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
555 save = procesar_guardar_articulo(&art, &size, lst_nueva);
558 id = nuevo->grabar_registro(nuevo, save, size, &error);
559 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
567 PERR("Libero lo viejo\n");
568 art_liberar(lst_articulos);
570 PERR("Ahora tengo lo nuevo\n");
571 lst_articulos = lst_nueva;
573 /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
574 free(lst_articulos->fp->nombre);
575 lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1));
576 strcpy(lst_articulos->fp->nombre, "articulos");
578 /* Muevo los archivos! */
579 /* TODO : Poner en otro lugar mas generico! */
580 PERR("Renombre!!\n");
581 rename("emufs_tmp.dat", "articulos.dat");
582 rename("emufs_tmp.idx", "articulos.idx");
583 rename("emufs_tmp.fsc", "articulos.fsc");
584 rename("emufs_tmp.did", "articulos.did");
585 PERR("==== TERMINE ====\n");