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