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