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