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