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