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