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