5 static t_LstArticulos *lst_articulos;
7 static t_Articulo *art_form_buscar(WINDOW *win);
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);
12 static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
14 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
17 if (reg == EMUFS_NOT_FOUND) return NULL;
18 tmp = malloc(sizeof(t_Reg_Articulo));
19 if (tmp == NULL) return NULL;
20 tmp->sig = tmp->ant = NULL;
27 t_LstArticulos *art_cargar(const char *filename)
30 xmlNode *node, *inicio;
31 int cant, error = 0, i, id;
35 t_Reg_Articulo *reg_nodo;
37 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
38 if (tmp == NULL) return NULL;
42 if (filename != NULL) {
43 document = xmlReadFile(filename, "ISO-8859-1",0);
44 if (document == NULL) {
49 node = xmlDocGetRootElement(document);
50 /* Busco el TAG principal "ARTICULOS" */
52 if (node->type == XML_ELEMENT_NODE) {
53 if (strcmp(node->name, "ARTICULOS") == 0) {
54 inicio = node->children;
61 /* Cuento la cantidad de articulos en el archivo */
63 for ( ; node ; node = node->next) {
64 if (node->type == XML_ELEMENT_NODE) {
65 if (strcmp(node->name, "ARTICULO") == 0) {
71 /* leo los datos y los guardo en el archivo*/
73 /* FIXME : por ahora hago que entren 2 bloques y me sobre algo de espacio*/
74 tmp->fp = emufs_crear("articulos", T2, sizeof(t_Articulo)*2, sizeof(t_Articulo));
75 for (node=inicio ; node ; node = node->next) {
76 if (node->type == XML_ELEMENT_NODE) {
77 if (strcmp(node->name, "ARTICULO") == 0) {
80 art.numero = atoi(xmlGetProp(node, "NroArtículo"));
81 strncpy(art.desc, xmlGetProp(node, "Descripción"), 50);
82 strncpy(art.presentacion, xmlGetProp(node, "Presentación"), 30);
83 strncpy(art.existencia, xmlGetProp(node, "Existencia"), 8);
84 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
85 strncpy(art.pvu, xmlGetProp(node, "PVU"), 8);
86 strncpy(art.emin, xmlGetProp(node, "Emín"), 8);
87 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
88 save = procesar_guardar_articulo(&art, &size, lst_articulos);
90 reg_nodo = crear_nodo_articulo(tmp->fp->grabar_registro(tmp->fp, save, size, &error), art.numero);
91 if (reg_nodo != NULL) {
93 tmp->primero->ant = reg_nodo;
94 reg_nodo->sig = tmp->primero;
95 tmp->primero = reg_nodo;
97 tmp->primero = reg_nodo;
105 xmlFreeDoc(document);
108 tmp->fp = emufs_abrir("articulos");
109 /* Ahora trato de recuperar la info */
110 cant = emufs_idx_get_count(tmp->fp);
111 for(i=0; i<cant; i++) {
114 id = emufs_idx_get_id_at(tmp->fp, i);
115 /* Leo el registro */
116 save = tmp->fp->leer_registro(tmp->fp, id, &size, &error);
117 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
118 reg_nodo = crear_nodo_articulo(id, art.numero);
119 if (reg_nodo != NULL) {
121 tmp->primero->ant = reg_nodo;
122 reg_nodo->sig = tmp->primero;
123 tmp->primero = reg_nodo;
125 tmp->primero = reg_nodo;
136 int art_liberar(t_LstArticulos *l)
138 if (l == NULL) l = lst_articulos;
139 if (l == NULL) return 1;
141 emufs_destruir(l->fp);
142 /* TODO : Liberar lista */
145 lst_articulos = NULL;
149 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero)
152 t_Reg_Articulo *nodo;
156 int n = atoi(numero);
158 if (lst == NULL) lst = lst_articulos;
159 if (lst == NULL) return NULL;
163 if (n == nodo->numero) {
164 art = (t_Articulo *)malloc(sizeof(t_Articulo));
165 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
166 tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
173 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
187 t_Articulo *art_form_buscar(WINDOW *win)
190 t_Articulo *articulo;
192 form = form_crear(win);
193 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
194 form_ejecutar(form, 1,1);
195 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"));
201 void art_modificar(char *s)
205 t_Articulo *articulo;
208 win = newwin(8, COLS-2, 13, 1);
212 articulo = art_form_buscar(win);
214 if (articulo != NULL) {
215 form = form_crear(win);
216 sprintf(num, "%08d", articulo->numero);
217 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
218 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
219 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
220 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
221 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
222 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
223 form_ejecutar(form, 1,1);
225 /* TODO : Actualizar registro */
230 wattron(win, COLOR_PAIR(COLOR_YELLOW));
231 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
232 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
241 void art_eliminar(char *s)
244 t_Articulo *articulo;
245 t_Reg_Articulo *nodo, *del;
246 win = newwin(8, COLS-2, 13, 1);
250 articulo = art_form_buscar(win);
252 if (articulo == NULL) {
253 wattron(win, COLOR_PAIR(COLOR_YELLOW));
254 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
255 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
259 nodo = lst_articulos->primero;
261 if (nodo->numero == articulo->numero) {
262 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
265 nodo->ant->sig = nodo->sig;
267 nodo->sig->ant = nodo->ant;
271 nodo->sig->ant = NULL;
273 lst_articulos->primero = nodo->sig;
288 void art_agregar(char *s)
293 t_Reg_Articulo *nuevo;
295 int error = 0, existe;
299 win = newwin(8, COLS-2, 13, 1);
303 form = form_crear(win);
304 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
305 form_agregar_widget(form, INPUT, "Descripción", 50, "");
306 form_agregar_widget(form, INPUT, "Presentación", 30, "");
307 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
308 form_agregar_widget(form, INPUT, "PVU", 8, "");
309 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
310 form_ejecutar(form, 1,1);
312 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
314 nuevo = lst_articulos->primero;
316 if (art.numero == nuevo->numero) {
324 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
325 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
326 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
327 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
328 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
329 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
331 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
332 save = procesar_guardar_articulo(&art, &size, lst_articulos);
334 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
336 wattron(win, COLOR_PAIR(COLOR_YELLOW));
337 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
338 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
342 nuevo = crear_nodo_articulo(id, art.numero);
344 if (lst_articulos->primero) {
345 lst_articulos->primero->ant = nuevo;
346 nuevo->sig = lst_articulos->primero;
347 lst_articulos->primero = nuevo;
349 lst_articulos->primero = nuevo;
356 wattron(win, COLOR_PAIR(COLOR_YELLOW));
357 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
358 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
369 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
372 switch (lst->fp->tipo) {
376 /* Copio el primer campo, esto es facil :-) */
377 memcpy(&dst->numero, ini, sizeof(unsigned int));
378 ini+=sizeof(unsigned int);
379 /* Ahora empieza el juego */
380 /* Los \0 son los delimitadores de campo! */
382 while (*fin!='\0') fin++;
383 memcpy(dst->desc, ini, fin-ini+1);
387 while (*fin!='\0') fin++;
388 memcpy(dst->presentacion, ini, fin-ini+1);
392 while (*fin!='\0') fin++;
393 memcpy(dst->existencia, ini, fin-ini+1);
397 while (*fin!='\0') fin++;
398 memcpy(dst->pvu, ini, fin-ini+1);
401 fin = (char *)src+size;
402 memcpy(dst->emin, ini, fin-ini+1);
406 memcpy(dst, src, sizeof(t_Articulo));
409 return 1; /* Todo ok */
412 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
416 switch(lst->fp->tipo) {
419 /* Calculo el tamaño que voy a necesitar */
420 i[0] = sizeof(unsigned int);
421 i[1] = sizeof(char)*(strlen(src->desc)+1);
422 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
423 i[3] = sizeof(char)*(strlen(src->existencia)+1);
424 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
425 i[4] = sizeof(char)*(strlen(src->pvu)+1);
426 i[5] = sizeof(char)*(strlen(src->emin)+1);
427 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
428 tmp = (char *)malloc((*size));
429 if (tmp == NULL) return NULL;
430 memcpy(tmp, &src->numero, i[0]);
431 memcpy(tmp+i[0], src->desc, i[1]);
432 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
433 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
434 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
435 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
438 tmp = (char *)malloc(sizeof(t_Articulo));
439 if (tmp == NULL) return NULL;
440 memcpy(tmp, src, sizeof(t_Articulo));
441 (*size) = sizeof(t_Articulo);