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