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