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