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