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