]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/articulos.c
* BUGFIX : en tipo3 cuando pedia lugar estaba faltando agregar sizeof(EMUFS_REG_ID)
[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", T3, 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                                                 tmp->array[cant].num_reg = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
79                                                 tmp->array[cant].numero = art.numero;
80                                                 ++cant;
81                                                 free(save);
82                                         }
83                                 }
84                         }
85                 }
86                 tmp->cant = cant;
87                 xmlFreeDoc(document);
88                 xmlCleanupParser();
89         } else {
90                 tmp->fp = emufs_abrir("articulos");
91                 /* TODO Cargar registros desde el archivo */
92         }
93
94         return tmp;
95 }
96
97 int art_liberar(t_LstArticulos *l)
98 {
99         if (l == NULL) l = lst_articulos;
100         if (l == NULL) return 1;
101
102         ver_archivo_FS(l->fp);
103         emufs_destruir(l->fp);
104 /*      free(l->array); */
105         free(l);
106
107         lst_articulos = NULL;
108         return 0;
109 }
110
111 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
112 {
113         /* FIXME : NO ME GUSTA :-/ */
114         t_Articulo *art;
115         void *tmp;
116         int i,error;
117         EMUFS_REG_SIZE size;
118         int n = atoi(numero);
119
120         if (lst == NULL) lst = lst_articulos;
121         if (lst == NULL) return NULL;
122
123         for(i=0; i<lst->cant; i++) {
124                 if (n == lst->array[i].numero) {
125                         art = (t_Articulo *)malloc(sizeof(t_Articulo));
126                         /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
127                         tmp = lst->fp->leer_registro(lst->fp, lst->array[i].num_reg, &size, &error);
128                         
129                         if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
130                                 free(art);
131                                 free(tmp);
132                                 return NULL;
133                         }
134                         free(tmp);
135                         return art;
136                 }
137         }
138
139         return NULL;
140 }
141
142 t_Articulo *art_form_buscar(WINDOW *win)
143 {
144         t_Form *form;
145         t_Articulo *articulo;
146
147         form = form_crear(win);
148         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
149         form_ejecutar(form, 1,1);
150         articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
151         form_destruir(form);
152
153         return articulo;
154 }
155
156 void art_modificar(char *s)
157 {
158         WINDOW *win;
159         t_Form *form;
160         t_Articulo *articulo;
161         char num[8];
162
163         win = newwin(8, COLS-2, 13, 1);
164         box(win, 0, 0);
165         wrefresh(win);
166
167         articulo = art_form_buscar(win);
168
169         if (articulo != NULL) {
170                 form = form_crear(win);
171                 sprintf(num, "%07d", articulo->numero);
172                 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
173                 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
174                 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
175                 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
176                 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
177                 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
178                 form_ejecutar(form, 1,1);
179
180                 /* TODO : Actualizar registro */
181                 
182                 form_destruir(form);
183                 free(articulo);
184         } else {        
185                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
186                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
187                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
188                 wrefresh(win);
189                 getch();
190         }
191         werase(win);
192         wrefresh(win);
193         delwin(win);
194 }
195
196 void art_eliminar(char *s)
197 {
198         WINDOW *win;
199         t_Articulo *articulo;
200
201         win = newwin(8, COLS-2, 13, 1);
202         box(win, 0, 0);
203         wrefresh(win);
204
205         articulo = art_form_buscar(win);
206
207         if (articulo == NULL) {
208                 wattron(win, COLOR_PAIR(COLOR_YELLOW));
209                 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
210                 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
211                 wrefresh(win);
212                 getch();
213         } else {
214                 /* TODO : Eliminar un registro */
215         }
216
217         werase(win);
218         wrefresh(win);
219         delwin(win);
220 }
221
222 void art_agregar(char *s)
223 {
224         WINDOW *win;
225         t_Form *form;
226         t_Articulo art;
227         int error;
228
229         win = newwin(8, COLS-2, 13, 1);
230         box(win, 0, 0);
231         wrefresh(win);
232
233         form = form_crear(win);
234         form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
235         form_agregar_widget(form, INPUT, "Descripción", 50, "");
236         form_agregar_widget(form, INPUT, "Presentación", 30, "");
237         form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
238         form_agregar_widget(form, INPUT, "PVU", 8, "");
239         form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
240         form_ejecutar(form, 1,1);
241         
242         art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
243         strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
244         strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
245         strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
246                                 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
247         strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
248         strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
249
250         /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
251         lst_articulos->array[lst_articulos->cant].num_reg = lst_articulos->fp->grabar_registro(lst_articulos->fp, &art, sizeof(t_Articulo), &error);
252         lst_articulos->array[lst_articulos->cant].numero = art.numero;
253         lst_articulos->cant++;
254         
255         form_destruir(form);
256
257         werase(win);
258         wrefresh(win);
259         delwin(win);
260 }
261
262 int procesar_leer_articulo(t_Articulo *dst, void *src, int size, t_LstArticulos *lst)
263 {
264         char *fin, *ini;
265         switch (lst->fp->tipo) {
266                 case T1:
267                 case T2:
268                         ini = (char *)src;
269                         /* Copio el primer campo, esto es facil :-) */
270                         memcpy(&dst->numero, ini, sizeof(unsigned int));
271                         ini+=sizeof(unsigned int);
272                         /* Ahora empieza el juego */
273                         /* Los \0 son los delimitadores de campo! */
274                         fin = ini;
275                         while (*fin!='\0') fin++;
276                         memcpy(dst->desc, ini, fin-ini);
277                         
278                         ini = fin+1;
279                         fin = ini;
280                         while (*fin!='\0') fin++;
281                         memcpy(dst->presentacion, ini, fin-ini);
282                         
283                         ini = fin+1;
284                         fin = ini;
285                         while (*fin!='\0') fin++;
286                         memcpy(dst->existencia, ini, fin-ini);
287                         
288                         ini = fin+1;
289                         fin = ini;
290                         while (*fin!='\0') fin++;
291                         memcpy(dst->pvu, ini, fin-ini);
292                         
293                         ini = fin+1;
294                         fin = (char *)src+size;
295                         while (*fin!='\0') fin++;
296                         memcpy(dst->pvu, ini, fin-ini);
297
298                         break;
299                 case T3:
300                         if (size != sizeof(t_Articulo)) {
301                                 return 0; /* El tamaño no encaja!! */
302                         }
303                         memcpy(dst, src, size);
304         }
305
306         return 1; /* Todo ok */
307 }
308
309 void *procesar_guardar_articulo(t_Articulo *src, int *size, t_LstArticulos *lst)
310 {
311         char *tmp=NULL;
312         int i[6];
313         switch(lst->fp->tipo) {
314                 case T1:
315                 case T2:
316                         /* Calculo el tamaño que voy a necesitar */
317                         i[0] = sizeof(unsigned int);
318                         i[1] = sizeof(char)*(strlen(src->desc)+1);
319                         i[2] = sizeof(char)*(strlen(src->presentacion)+1);
320                         i[3] = sizeof(char)*(strlen(src->existencia)+1);
321 /*                      i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
322                         i[4] = sizeof(char)*(strlen(src->pvu)+1);
323                         i[5] = sizeof(char)*(strlen(src->emin)+1);
324                         (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
325                         tmp = (char *)malloc((*size));
326                         if (tmp == NULL) return NULL;
327                         memcpy(tmp, &src->numero, i[0]);
328                         memcpy(tmp+i[0], src->desc, i[1]);
329                         memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
330                         memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
331                         memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
332                         memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
333                 break;
334                 case T3:
335                         tmp = (char *)malloc(sizeof(t_Articulo));
336                         if (tmp == NULL) return NULL;
337                         memcpy(tmp, src, sizeof(t_Articulo));
338                         (*size) = sizeof(t_Articulo);
339         }
340         return tmp;
341 }
342