]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/articulos.c
2e3602a47ba59bdec5fa1d4f90150ba35224c684
[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                                         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);
129                                         if (save != NULL) {
130                                                 error = 0;
131                                                 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
132                                                 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
133                                                 free(save);
134                                         }
135                                 }
136                         }
137                 }
138                 xmlFreeDoc(document);
139                 xmlCleanupParser();
140         } else {
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.");
145                         free(tmp);
146                         lst_articulos = NULL;
147                         return NULL;
148                 }
149                 /* Ahora trato de recuperar la info */
150                 indices = emufs_idx_get(tmp->fp, &indices_cant);
151                 for(i=0; i<indices_cant; i++) {
152                         t_Articulo art;
153                         void *save;
154                         /* Leo el registro */
155                         error = 0;
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));
159                                 free(save);
160                         }
161                 }
162                 free(indices);
163         }
164
165         return tmp;
166 }
167
168 int art_liberar(t_LstArticulos *l)
169 {
170         t_Reg_Articulo *del;
171         if (l == NULL) l = lst_articulos;
172         if (l == NULL) return 1;
173
174         emufs_destruir(l->fp);
175         while (l->primero) {
176                 del = l->primero;
177                 l->primero = l->primero->sig;
178                 free(del);
179         }
180         free(l);
181
182         lst_articulos = NULL;
183         return 0;
184 }
185
186 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero, EMUFS_REG_ID *id)
187 {
188         t_Articulo *art;
189         t_Reg_Articulo *nodo;
190         void *tmp;
191         int error = 0;
192         EMUFS_REG_SIZE size;
193         int n = atoi(numero);
194
195         if (lst == NULL) lst = lst_articulos;
196         if (lst == NULL) return NULL;
197         nodo = lst->primero;
198         while (nodo) {
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 */
203                         error = 0;
204                         tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
205                         
206                         if (error) {
207                                 free(art);
208                                 return NULL;
209                         }
210
211                         if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
212                                 free(art);
213                                 free(tmp);
214                                 return NULL;
215                         }
216                         free(tmp);
217                         return art;
218                 }
219                 nodo = nodo->sig;
220         }
221
222         return NULL;
223 }
224
225 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
226 {
227         t_Form *form;
228         t_Articulo *articulo;
229
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);
234         form_destruir(form);
235
236         return articulo;
237 }
238
239 void art_modificar(char *s)
240 {
241         WINDOW *win;
242         t_Form *form;
243         t_Articulo *articulo;
244         char num[11];
245         void *tmp;
246         int error;
247         EMUFS_REG_SIZE size;
248         EMUFS_REG_ID id;
249
250         win = newwin(8, COLS-2, 13, 1);
251         box(win, 0, 0);
252         wrefresh(win);
253
254         if (s == NULL) {
255                 articulo = art_form_buscar(win, &id);
256         } else {
257                 id = atoi(s);
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 */
261                 error = 0;
262                 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
263                 if (error) {
264                         free(articulo);
265                         articulo = NULL;
266                 } else {
267                         if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
268                                 free(articulo);
269                                 articulo = NULL;
270                         }
271                         free(tmp);
272                 }
273         }
274
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);
286
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);
296                 if (tmp) {
297                         error = 0;
298                         lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
299                         free(tmp);
300                 }
301                 
302                 form_destruir(form);
303                 free(articulo);
304         } else {        
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));
308                 wrefresh(win);
309                 getch();
310         }
311         werase(win);
312         wrefresh(win);
313         delwin(win);
314 }
315
316 void art_eliminar(char *s)
317 {
318         WINDOW *win;
319         t_Articulo *articulo;
320         t_Reg_Articulo *nodo;
321         EMUFS_REG_ID id;
322
323         win = newwin(8, COLS-2, 13, 1);
324         box(win, 0, 0);
325         wrefresh(win);
326
327         articulo = art_form_buscar(win, &id);
328
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));
333                 wrefresh(win);
334                 getch();
335         } else {
336                 nodo = lst_articulos->primero;
337                 while (nodo) {
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);
341                                 break;
342                         }
343                         nodo = nodo->sig;
344                 }
345                 free(articulo);
346         }
347
348         werase(win);
349         wrefresh(win);
350         delwin(win);
351 }
352
353 void art_agregar(char *s)
354 {
355         WINDOW *win;
356         t_Form *form;
357         t_Articulo art;
358         t_Reg_Articulo *nuevo;
359         void *save;
360         int error = 0, existe;
361         EMUFS_REG_SIZE size;
362         EMUFS_REG_ID id;
363
364         win = newwin(8, COLS-2, 13, 1);
365         box(win, 0, 0);
366         wrefresh(win);
367
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);
376         
377         art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
378         existe = 0;
379         nuevo = lst_articulos->primero;
380         while (nuevo) {
381                 if (art.numero == nuevo->numero) {
382                         existe = 1;
383                         break;
384                 }
385                 nuevo = nuevo->sig;
386         }
387         
388         if (!existe) {
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"));
395
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);
398                 if (save != NULL) {
399                         error = 0;
400                         id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
401                         if (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));
405                                 wrefresh(win);
406                                 getch();
407                         } else {
408                                 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
409                         }
410                         free(save);
411                 }
412         } else {
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));
416                 wrefresh(win);
417                 getch();
418         }
419         form_destruir(form);
420
421         werase(win);
422         wrefresh(win);
423         delwin(win);
424 }
425
426 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
427 {
428         char *fin, *ini;
429         switch (lst->fp->tipo) {
430                 case T1:
431                 case T2:
432                         ini = (char *)src;
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! */
439                         fin = ini;
440                         while (*fin!='\0') fin++;
441                         memcpy(dst->desc, ini, fin-ini+1);
442                         
443                         ini = fin+1;
444                         fin = ini;
445                         while (*fin!='\0') fin++;
446                         memcpy(dst->presentacion, ini, fin-ini+1);
447                         
448                         ini = fin+1;
449                         fin = ini;
450                         while (*fin!='\0') fin++;
451                         fprintf(stderr, "Presentacion = %s\n", dst->presentacion);
452                         memcpy(dst->existencia, ini, fin-ini+1);
453                         
454                         ini = fin+1;
455                         fin = ini;
456                         while (*fin!='\0') fin++;
457                         memcpy(dst->pvu, ini, fin-ini+1);
458                         
459                         ini = fin+1;
460                         fin = (char *)src+size;
461                         memcpy(dst->emin, ini, fin-ini);
462
463                         break;
464                 case T3:
465                         memcpy(dst, src, sizeof(t_Articulo));
466         }
467
468         return 1; /* Todo ok */
469 }
470
471 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
472 {
473         char *tmp=NULL;
474         int i[6];
475         char *from = (char *)src;
476         switch(lst->fp->tipo) {
477                 case T1:
478                 case T2:
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]);
498                 break;
499                 case T3:
500                         /* Lleno el lugar no ocupado de los strings con *, para que el ver
501                          * registro se vea bien 
502                          */
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);
507         }
508         return tmp;
509 }
510
511 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
512 {
513         EMUFS *nuevo, *old;
514         EMUFS_REG_ID *indices, id;
515         EMUFS_REG_SIZE indices_total, i, size;
516         t_Articulo art;
517         t_LstArticulos *lst_nueva;
518         int error;
519         char *save;
520
521         PERR("==== EMPIEZO ====\n");
522         old = lst_articulos->fp;
523
524         /* Si el tipo es el mismo, no tengo que hacer nada! */
525         if (old->tipo == tipo) return;
526
527         /* Creo el nuevo file */
528         PERR("Creo el archivo\n");
529         nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
530         if (nuevo == NULL) {
531                 PERR("ARCHIVO NUEVO NO CREADO");
532                 return;
533         }
534
535         /* Creo la nueva lista */
536         lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
537         lst_nueva->primero = NULL;
538         lst_nueva->fp = nuevo;
539
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);
545                 return;
546         }
547
548         PERR("Proceso datos\n");
549         for(i=0; i<indices_total; i++) {
550                 error = 0;
551                 save = old->leer_registro(old, indices[i], &size, &error);
552                 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
553                         free(save);
554                         /* Lei un registro Ok. Lo salvo en el archivo nuevo */
555                         save = procesar_guardar_articulo(&art, &size, lst_nueva);
556                         if (save) {
557                                 error = 0;
558                                 id = nuevo->grabar_registro(nuevo, save, size, &error);
559                                 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
560                                 free(save);
561                         }
562                 }
563         }
564
565         free(indices);
566
567         PERR("Libero lo viejo\n");
568         art_liberar(lst_articulos);
569
570         PERR("Ahora tengo lo nuevo\n");
571         lst_articulos = lst_nueva;
572
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");
577         
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");
586 }
587