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