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