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