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