]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/articulos.c
* Otro bugs arreglado :-) .. se va limpiendo el codigo ...
[z.facultad/75.06/emufs.git] / emufs_gui / articulos.c
1
2 #include "articulos.h"
3 #include "idx.h"
4
5 static t_LstArticulos *lst_articulos;
6
7 static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
8
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);
11
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);
16
17 t_LstArticulos *art_get_lst()
18 {
19         return lst_articulos;
20 }
21
22 int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
23 {
24         if (nodo == NULL) return 0;
25         if (nodo->ant == NULL) {
26                 /* Me piden borrar el primer nodo */
27                 if (nodo->sig) {
28                         nodo->sig->ant = NULL;
29                 }
30                 lst->primero = nodo->sig;
31         } else {
32                 if (nodo->sig) {
33                         nodo->sig->ant = nodo->ant;
34                 }
35                 nodo->ant->sig = nodo->sig;
36         }
37         free(nodo);
38         return 1;
39 }
40
41 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
42 {
43         t_Reg_Articulo *tmp;
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;
48         tmp->num_reg = reg;
49         tmp->numero = num;
50
51         return tmp;
52 }
53
54 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
55 {
56         if (nodo == NULL) return 0;
57
58         if (lst->primero) {
59                 lst->primero->ant = nodo;
60                 nodo->sig = lst->primero;
61                 lst->primero = nodo;
62         } else {
63                 lst->primero = nodo;
64         }
65         return 1;
66 }
67
68 t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
69 {
70         xmlDocPtr document;
71         xmlNode *node, *inicio;
72         int error = 0, i;
73         EMUFS_REG_SIZE size;
74         t_LstArticulos *tmp;
75         lst_articulos = NULL;
76         EMUFS_REG_ID id, *indices, indices_cant;
77
78         tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
79         if (tmp == NULL) return NULL;
80         lst_articulos = tmp;
81         tmp->primero = NULL;
82
83         if (filename != NULL) {
84                 document = xmlReadFile(filename, "ISO-8859-1",0);
85                 if (document == NULL) {
86                         free(tmp);
87                         lst_articulos = NULL;
88                         return NULL;
89                 }
90
91                 inicio = NULL;
92                 node = xmlDocGetRootElement(document);
93                 /* Busco el TAG principal "ARTICULOS" */
94                 while (node) {
95                         if (node->type == XML_ELEMENT_NODE) {
96                                 if (strcmp(node->name, "ARTICULOS") == 0) {
97                                         inicio = node->children;
98                                         break;
99                                 }
100                         }
101                         node = node->next;
102                 }
103
104                 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
105                 for (node=inicio ; node ; node = node->next) {
106                         if (node->type == XML_ELEMENT_NODE) {
107                                 if (strcmp(node->name, "ARTICULO") == 0) {
108                                         t_Articulo art;
109                                         void *save;
110                                         memset(&art, '*', sizeof(t_Articulo));
111                                         art.numero = atoi(xmlGetProp(node, "NroArtículo"));
112                                         strcpy(art.desc, xmlGetProp(node, "Descripción"));
113                                         strcpy(art.presentacion, xmlGetProp(node, "Presentación"));
114                                         strcpy(art.existencia, xmlGetProp(node, "Existencia"));
115                                         /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
116                                         strcpy(art.pvu, xmlGetProp(node, "PVU"));
117                                         strcpy(art.emin, xmlGetProp(node, "Emín"));
118                                         /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
119                                         save = procesar_guardar_articulo(&art, &size, lst_articulos);
120                                         if (save != NULL) {
121                                                 error = 0;
122                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
123                                                 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
124                                                 free(save);
125                                         }
126                                 }
127                         }
128                 }
129                 xmlFreeDoc(document);
130                 xmlCleanupParser();
131         } else {
132                 tmp->fp = emufs_abrir("articulos");
133                 /* Ahora trato de recuperar la info */
134                 indices = emufs_idx_get(tmp->fp, &indices_cant);
135                 for(i=0; i<indices_cant; i++) {
136                         t_Articulo art;
137                         void *save;
138                         /* Leo el registro */
139                         error = 0;
140                         save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
141                         if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
142                                 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
143                                 free(save);
144                         }
145                 }
146                 free(indices);
147         }
148
149         return tmp;
150 }
151
152 int art_liberar(t_LstArticulos *l)
153 {
154         if (l == NULL) l = lst_articulos;
155         if (l == NULL) return 1;
156         t_Reg_Articulo *del;
157
158         emufs_destruir(l->fp);
159         while (l->primero) {
160                 del = l->primero;
161                 l->primero = l->primero->sig;
162                 free(del);
163         }
164         free(l);
165
166         lst_articulos = NULL;
167         return 0;
168 }
169
170 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero, EMUFS_REG_ID *id)
171 {
172         t_Articulo *art;
173         t_Reg_Articulo *nodo;
174         void *tmp;
175         int error = 0;
176         EMUFS_REG_SIZE size;
177         int n = atoi(numero);
178
179         if (lst == NULL) lst = lst_articulos;
180         if (lst == NULL) return NULL;
181         nodo = lst->primero;
182         while (nodo) {
183                 if (n == nodo->numero) {
184                         (*id) = nodo->num_reg;
185                         art = (t_Articulo *)malloc(sizeof(t_Articulo));
186                         /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
187                         error = 0;
188                         tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
189                         
190                         if (error) {
191                                 free(art);
192                                 return NULL;
193                         }
194
195                         if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
196                                 free(art);
197                                 free(tmp);
198                                 return NULL;
199                         }
200                         free(tmp);
201                         return art;
202                 }
203                 nodo = nodo->sig;
204         }
205
206         return NULL;
207 }
208
209 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
210 {
211         t_Form *form;
212         t_Articulo *articulo;
213
214         form = form_crear(win);
215         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
216         form_ejecutar(form, 1,1);
217         articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"), id);
218         form_destruir(form);
219
220         return articulo;
221 }
222
223 void art_modificar(char *s)
224 {
225         WINDOW *win;
226         t_Form *form;
227         t_Articulo *articulo;
228         char num[11];
229         void *tmp;
230         int error;
231         EMUFS_REG_SIZE size;
232         EMUFS_REG_ID id;
233
234         win = newwin(8, COLS-2, 13, 1);
235         box(win, 0, 0);
236         wrefresh(win);
237
238         if (s == NULL) {
239                 articulo = art_form_buscar(win, &id);
240         } else {
241                 id = atoi(s);
242                 /* Leo el registro directamente */
243                 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
244                 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
245                 error = 0;
246                 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
247                 if (error) {
248                         free(articulo);
249                         articulo = NULL;
250                 } else {
251                         if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
252                                 free(articulo);
253                                 articulo = NULL;
254                         }
255                         free(tmp);
256                 }
257         }
258
259         if (articulo != NULL) {
260                 form = form_crear(win);
261                 sprintf(num, "%08d", articulo->numero);
262                 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
263                 form_es_modificable(form, "Numero de Artículo" , 0);
264                 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
265                 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
266                 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
267                 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
268                 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
269                 form_ejecutar(form, 1,1);
270
271                 /* Actualizar registro */
272                 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
273                 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
274                 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
275                 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
276                 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
277                 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
278                 /* Ya actualice los datos, ahora veo de grabarlos */
279                 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
280                 if (tmp) {
281                         error = 0;
282                         lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
283                         free(tmp);
284                 }
285                 
286                 form_destruir(form);
287                 free(articulo);
288         } else {        
289                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
290                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
291                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
292                 wrefresh(win);
293                 getch();
294         }
295         werase(win);
296         wrefresh(win);
297         delwin(win);
298 }
299
300 void art_eliminar(char *s)
301 {
302         WINDOW *win;
303         t_Articulo *articulo;
304         t_Reg_Articulo *nodo;
305         EMUFS_REG_ID id;
306
307         win = newwin(8, COLS-2, 13, 1);
308         box(win, 0, 0);
309         wrefresh(win);
310
311         articulo = art_form_buscar(win, &id);
312
313         if (articulo == NULL) {
314                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
315                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
316                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
317                 wrefresh(win);
318                 getch();
319         } else {
320                 nodo = lst_articulos->primero;
321                 while (nodo) {
322                         if (nodo->numero == articulo->numero) {
323                                 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
324                                 eliminar_nodo_articulo(lst_articulos, nodo);
325                                 break;
326                         }
327                         nodo = nodo->sig;
328                 }
329                 free(articulo);
330         }
331
332         werase(win);
333         wrefresh(win);
334         delwin(win);
335 }
336
337 void art_agregar(char *s)
338 {
339         WINDOW *win;
340         t_Form *form;
341         t_Articulo art;
342         t_Reg_Articulo *nuevo;
343         void *save;
344         int error = 0, existe;
345         EMUFS_REG_SIZE size;
346         EMUFS_REG_ID id;
347
348         win = newwin(8, COLS-2, 13, 1);
349         box(win, 0, 0);
350         wrefresh(win);
351
352         form = form_crear(win);
353         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
354         form_agregar_widget(form, INPUT, "Descripción", 50, "");
355         form_agregar_widget(form, INPUT, "Presentación", 30, "");
356         form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
357         form_agregar_widget(form, INPUT, "PVU", 8, "");
358         form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
359         form_ejecutar(form, 1,1);
360         
361         art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
362         existe = 0;
363         nuevo = lst_articulos->primero;
364         while (nuevo) {
365                 if (art.numero == nuevo->numero) {
366                         existe = 1;
367                         break;
368                 }
369                 nuevo = nuevo->sig;
370         }
371         
372         if (!existe) {
373                 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
374                 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
375                 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
376                                 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
377                 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
378                 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
379
380                 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
381                 save = procesar_guardar_articulo(&art, &size, lst_articulos);
382                 if (save != NULL) {
383                         error = 0;
384                         id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
385                         if (error) {
386                                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
387                                 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
388                                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
389                                 wrefresh(win);
390                                 getch();
391                         } else {
392                                 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
393                         }
394                         free(save);
395                 }
396         } else {
397                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
398                 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
399                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
400                 wrefresh(win);
401                 getch();
402         }
403         form_destruir(form);
404
405         werase(win);
406         wrefresh(win);
407         delwin(win);
408 }
409
410 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
411 {
412         char *fin, *ini;
413         switch (lst->fp->tipo) {
414                 case T1:
415                 case T2:
416                         ini = (char *)src;
417                         /* Copio el primer campo, esto es facil :-) */
418                         memset(dst, '*', sizeof(t_Articulo));
419                         memcpy(&dst->numero, ini, sizeof(unsigned int));
420                         ini+=sizeof(unsigned int);
421                         /* Ahora empieza el juego */
422                         /* Los \0 son los delimitadores de campo! */
423                         fin = ini;
424                         while (*fin!='\0') fin++;
425                         memcpy(dst->desc, ini, fin-ini+1);
426                         
427                         ini = fin+1;
428                         fin = ini;
429                         while (*fin!='\0') fin++;
430                         memcpy(dst->presentacion, ini, fin-ini+1);
431                         
432                         ini = fin+1;
433                         fin = ini;
434                         while (*fin!='\0') fin++;
435                         memcpy(dst->existencia, ini, fin-ini+1);
436                         
437                         ini = fin+1;
438                         fin = ini;
439                         while (*fin!='\0') fin++;
440                         memcpy(dst->pvu, ini, fin-ini+1);
441                         
442                         ini = fin+1;
443                         fin = (char *)src+size;
444                         memcpy(dst->emin, ini, fin-ini);
445
446                         break;
447                 case T3:
448                         memcpy(dst, src, sizeof(t_Articulo));
449         }
450
451         return 1; /* Todo ok */
452 }
453
454 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
455 {
456         char *tmp=NULL;
457         int i[6];
458         char *from = (char *)src;
459         switch(lst->fp->tipo) {
460                 case T1:
461                 case T2:
462                         /* Calculo el tamaño que voy a necesitar */
463                         i[0] = sizeof(unsigned int);
464                         i[1] = sizeof(char)*(strlen(src->desc)+1);
465                         i[2] = sizeof(char)*(strlen(src->presentacion)+1);
466                         i[3] = sizeof(char)*(strlen(src->existencia)+1);
467 /*                      i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
468                         i[4] = sizeof(char)*(strlen(src->pvu)+1);
469                         i[5] = sizeof(char)*(strlen(src->emin)+1);
470                         (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
471                         tmp = (char *)malloc((*size));
472                         if (tmp == NULL) return NULL;
473                         memset(tmp, 0, *size);
474                         memcpy(tmp, &src->numero, i[0]);
475                         memcpy(tmp+i[0], src->desc, i[1]);
476                         memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
477                         memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
478                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
479                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
480                 break;
481                 case T3:
482                         /* Lleno el lugar no ocupado de los strings con *, para que el ver
483                          * registro se vea bien 
484                          */
485                         tmp = (char *)malloc(sizeof(t_Articulo));
486                         memset(tmp, '*', sizeof(t_Articulo));
487                         memcpy(tmp, from, sizeof(t_Articulo));
488                         (*size) = sizeof(t_Articulo);
489         }
490         return tmp;
491 }
492
493 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
494 {
495         EMUFS *nuevo, *old;
496         EMUFS_REG_ID *indices, id;
497         EMUFS_REG_SIZE indices_total, i, size;
498         t_Articulo art;
499         t_LstArticulos *lst_nueva;
500         int error;
501         char *save;
502
503         old = lst_articulos->fp;
504
505         /* Si el tipo es el mismo, no tengo que hacer nada! */
506         if (old->tipo == tipo) return;
507
508         /* Creo el nuevo file */
509         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
510         if (nuevo == NULL) {
511                 fprintf(stderr, "ARCHIVO NUEVO NO CREADO\n");
512                 return;
513         }
514
515         /* Creo la nueva lista */
516         lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
517         lst_nueva->primero = NULL;
518         lst_nueva->fp = nuevo;
519
520         /* Leo los indices del archivo viejo */
521         indices = emufs_idx_get(old, &indices_total);
522         if (indices == NULL) {
523                 art_liberar(lst_nueva);
524                 return;
525         }
526
527         for(i=0; i<indices_total; i++) {
528                 fprintf(stderr, "A procesar %lu de %lu\n",i, indices_total);
529                 error = 0;
530                 save = old->leer_registro(old, indices[i], &size, &error);
531                 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
532                         free(save);
533                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
534                         save = procesar_guardar_articulo(&art, &size, lst_nueva);
535                         if (save) {
536                                 error = 0;
537                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
538                                 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
539                                 free(save);
540                         }
541                 }
542         }
543
544         ver_archivo_FS(old);
545         ver_archivo_FS(nuevo);
546
547         art_liberar(lst_articulos);
548         lst_articulos = lst_nueva;
549
550         fprintf(stderr, "Listo. Renombre y me voy\n");
551         /* Muevo los archivos! */
552         /* TODO : Poner en otro lugar mas generico! */
553         rename("emufs_tmp.dat", "articulos.dat");
554         rename("emufs_tmp.idx", "articulos.idx");
555         rename("emufs_tmp.fsc", "articulos.fsc");
556         rename("emufs_tmp.did", "articulos.did");
557 }
558