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