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