5 static t_LstArticulos *lst_articulos;
7 static t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id);
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 /* 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);
17 t_LstArticulos *art_get_lst()
22 int eliminar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
24 if (nodo == NULL) return 0;
25 if (nodo->ant == NULL) {
26 /* Me piden borrar el primer nodo */
28 nodo->sig->ant = NULL;
30 lst->primero = nodo->sig;
33 nodo->sig->ant = nodo->ant;
35 nodo->ant->sig = nodo->sig;
41 t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num)
44 if (reg == EMUFS_NOT_FOUND) return NULL;
45 tmp = malloc(sizeof(t_Reg_Articulo));
46 if (tmp == NULL) return NULL;
47 tmp->sig = tmp->ant = NULL;
54 int agregar_nodo_articulo(t_LstArticulos *lst, t_Reg_Articulo *nodo)
56 if (nodo == NULL) return 0;
59 lst->primero->ant = nodo;
60 nodo->sig = lst->primero;
68 t_LstArticulos *art_cargar(const char *filename, int tipo, int tam_bloque)
71 xmlNode *node, *inicio;
77 EMUFS_REG_ID id, *indices, indices_cant;
79 tmp = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
80 if (tmp == NULL) return NULL;
84 if (filename != NULL) {
85 PERR("Voy a crear desde un XML");
86 document = xmlReadFile(filename, "ISO-8859-1",0);
87 if (document == NULL) {
94 node = xmlDocGetRootElement(document);
95 /* Busco el TAG principal "ARTICULOS" */
97 if (node->type == XML_ELEMENT_NODE) {
98 if (strcmp(node->name, "ARTICULOS") == 0) {
99 inicio = node->children;
106 tmp->fp = emufs_crear("articulos", tipo-1, tam_bloque, sizeof(t_Articulo));
107 for (node=inicio ; node ; node = node->next) {
108 if (node->type == XML_ELEMENT_NODE) {
109 if (strcmp(node->name, "ARTICULO") == 0) {
112 memset(&art, '*', sizeof(t_Articulo));
113 prop = xmlGetProp(node, "NroArtículo");
114 art.numero = atoi(prop);
116 strcpy(art.desc, prop = xmlGetProp(node, "Descripción")); xmlFree(prop);
117 strcpy(art.presentacion, prop = xmlGetProp(node, "Presentación")); xmlFree(prop);
118 strcpy(art.existencia, prop = xmlGetProp(node, "Existencia")); xmlFree(prop);
119 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
120 strcpy(art.pvu, prop = xmlGetProp(node, "PVU")); xmlFree(prop);
121 strcpy(art.emin, prop = xmlGetProp(node, "Emín")); xmlFree(prop);
122 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
123 save = procesar_guardar_articulo(&art, &size, lst_articulos);
126 id = tmp->fp->grabar_registro(tmp->fp, save, size, &error);
127 agregar_nodo_articulo(tmp, crear_nodo_articulo(id, art.numero));
133 xmlFreeDoc(document);
136 PERR("Voy a recuperar desde un archivo");
137 tmp->fp = emufs_abrir("articulos");
138 if (tmp->fp == NULL) {
139 PERR("No se pudo cargar archivo de articulos.");
141 lst_articulos = NULL;
144 /* Ahora trato de recuperar la info */
145 indices = emufs_idx_get(tmp->fp, &indices_cant);
146 for(i=0; i<indices_cant; i++) {
149 /* Leo el registro */
151 save = tmp->fp->leer_registro(tmp->fp, indices[i], &size, &error);
152 if (procesar_leer_articulo(&art, save, size, tmp) == 1) {
153 agregar_nodo_articulo(tmp, crear_nodo_articulo(indices[i], art.numero));
163 int art_liberar(t_LstArticulos *l)
165 if (l == NULL) l = lst_articulos;
166 if (l == NULL) return 1;
169 emufs_destruir(l->fp);
172 l->primero = l->primero->sig;
177 lst_articulos = NULL;
181 t_Articulo *art_obtener(t_LstArticulos *lst, const char *numero, EMUFS_REG_ID *id)
184 t_Reg_Articulo *nodo;
188 int n = atoi(numero);
190 if (lst == NULL) lst = lst_articulos;
191 if (lst == NULL) return NULL;
194 if (n == nodo->numero) {
195 (*id) = nodo->num_reg;
196 art = (t_Articulo *)malloc(sizeof(t_Articulo));
197 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
199 tmp = lst->fp->leer_registro(lst->fp, nodo->num_reg, &size, &error);
206 if (procesar_leer_articulo(art, tmp, size, lst_articulos) != 1) {
220 t_Articulo *art_form_buscar(WINDOW *win, EMUFS_REG_ID *id)
223 t_Articulo *articulo;
225 form = form_crear(win);
226 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
227 form_ejecutar(form, 1,1);
228 articulo = art_obtener(NULL, form_obtener_valor_char(form, "Numero de Artículo"), id);
234 void art_modificar(char *s)
238 t_Articulo *articulo;
245 win = newwin(8, COLS-2, 13, 1);
250 articulo = art_form_buscar(win, &id);
253 /* Leo el registro directamente */
254 articulo = (t_Articulo *)malloc(sizeof(t_Articulo));
255 /* Ya se cual tengo que retornar. Ahora veo si lo cargo desde el archivo */
257 tmp = lst_articulos->fp->leer_registro(lst_articulos->fp, id, &size, &error);
262 if (procesar_leer_articulo(articulo, tmp, size, lst_articulos) != 1) {
270 if (articulo != NULL) {
271 form = form_crear(win);
272 sprintf(num, "%08d", articulo->numero);
273 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, num);
274 form_es_modificable(form, "Numero de Artículo" , 0);
275 form_agregar_widget(form, INPUT, "Descripción", 50, articulo->desc);
276 form_agregar_widget(form, INPUT, "Presentación", 30, articulo->presentacion);
277 form_agregar_widget(form, INPUT, "Stock Actual", 8, articulo->existencia);
278 form_agregar_widget(form, INPUT, "PVU", 8, articulo->pvu);
279 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, articulo->emin);
280 form_ejecutar(form, 1,1);
282 /* Actualizar registro */
283 articulo->numero = form_obtener_valor_int(form, "Numero de Artículo");
284 strcpy(articulo->desc, form_obtener_valor_char(form, "Descripción"));
285 strcpy(articulo->presentacion, form_obtener_valor_char(form, "Presentación"));
286 strcpy(articulo->existencia, form_obtener_valor_char(form, "Stock Actual"));
287 strcpy(articulo->pvu, form_obtener_valor_char(form, "PVU"));
288 strcpy(articulo->emin, form_obtener_valor_char(form, "Stock Mínimo"));
289 /* Ya actualice los datos, ahora veo de grabarlos */
290 tmp = procesar_guardar_articulo(articulo, &size, lst_articulos);
293 lst_articulos->fp->modificar_registro(lst_articulos->fp, id, tmp, size, &error);
300 wattron(win, COLOR_PAIR(COLOR_YELLOW));
301 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
302 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
311 void art_eliminar(char *s)
314 t_Articulo *articulo;
315 t_Reg_Articulo *nodo;
318 win = newwin(8, COLS-2, 13, 1);
322 articulo = art_form_buscar(win, &id);
324 if (articulo == NULL) {
325 wattron(win, COLOR_PAIR(COLOR_YELLOW));
326 mvwaddstr(win, 6, 4, "No existe artículo con ese código. Abortando!");
327 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
331 nodo = lst_articulos->primero;
333 if (nodo->numero == articulo->numero) {
334 lst_articulos->fp->borrar_registro(lst_articulos->fp, nodo->num_reg);
335 eliminar_nodo_articulo(lst_articulos, nodo);
348 void art_agregar(char *s)
353 t_Reg_Articulo *nuevo;
355 int error = 0, existe;
359 win = newwin(8, COLS-2, 13, 1);
363 form = form_crear(win);
364 form_agregar_widget(form, INPUT, "Numero de Artículo", 8, "");
365 form_agregar_widget(form, INPUT, "Descripción", 50, "");
366 form_agregar_widget(form, INPUT, "Presentación", 30, "");
367 form_agregar_widget(form, INPUT, "Stock Actual", 8, "");
368 form_agregar_widget(form, INPUT, "PVU", 8, "");
369 form_agregar_widget(form, INPUT, "Stock Mínimo", 8, "");
370 form_ejecutar(form, 1,1);
372 art.numero = atoi(form_obtener_valor_char(form, "Numero de Artículo"));
374 nuevo = lst_articulos->primero;
376 if (art.numero == nuevo->numero) {
384 strcpy(art.desc, form_obtener_valor_char(form, "Descripción"));
385 strcpy(art.presentacion, form_obtener_valor_char(form, "Presentación"));
386 strcpy(art.existencia, form_obtener_valor_char(form, "Stock Actual"));
387 /*strncpy(tmp->array[cant].ubicacion, xmlGetProp(node, "Ubicacion"), 30);*/
388 strcpy(art.pvu, form_obtener_valor_char(form, "PVU"));
389 strcpy(art.emin, form_obtener_valor_char(form, "Stock Mínimo"));
391 /* Ya leido el articulo ahora paso a guardarlo en el archivo y agregarlo a la lista */
392 save = procesar_guardar_articulo(&art, &size, lst_articulos);
395 id = lst_articulos->fp->grabar_registro(lst_articulos->fp, save, size, &error);
397 wattron(win, COLOR_PAIR(COLOR_YELLOW));
398 mvwaddstr(win, 6, 4, "Error al tratar de agregar el nuevo registro");
399 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
403 agregar_nodo_articulo(lst_articulos, crear_nodo_articulo(id, art.numero));
408 wattron(win, COLOR_PAIR(COLOR_YELLOW));
409 mvwaddstr(win, 7, 1, "El código ya existe!. Abortando.");
410 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
421 int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst)
424 switch (lst->fp->tipo) {
428 /* Copio el primer campo, esto es facil :-) */
429 memset(dst, 0, sizeof(t_Articulo));
430 memcpy(&dst->numero, ini, sizeof(unsigned int));
431 ini+=sizeof(unsigned int);
432 /* Ahora empieza el juego */
433 /* Los \0 son los delimitadores de campo! */
435 while (*fin!='\0') fin++;
436 memcpy(dst->desc, ini, fin-ini+1);
440 while (*fin!='\0') fin++;
441 memcpy(dst->presentacion, ini, fin-ini+1);
445 while (*fin!='\0') fin++;
446 memcpy(dst->existencia, ini, fin-ini+1);
450 while (*fin!='\0') fin++;
451 memcpy(dst->pvu, ini, fin-ini+1);
454 fin = (char *)src+size;
455 memcpy(dst->emin, ini, fin-ini);
459 memcpy(dst, src, sizeof(t_Articulo));
462 return 1; /* Todo ok */
465 void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst)
469 char *from = (char *)src;
470 switch(lst->fp->tipo) {
473 /* Calculo el tamaño que voy a necesitar */
474 i[0] = sizeof(unsigned int);
475 i[1] = sizeof(char)*(strlen(src->desc)+1);
476 i[2] = sizeof(char)*(strlen(src->presentacion)+1);
477 i[3] = sizeof(char)*(strlen(src->existencia)+1);
478 /* i[4] = sizeof(char)*(strlen(src->ubicacion)+1); */
479 i[4] = sizeof(char)*(strlen(src->pvu)+1);
480 i[5] = sizeof(char)*(strlen(src->emin)+1);
481 (*size) = i[0]+i[1]+i[2]+i[3]+i[4]+i[5];
482 tmp = (char *)malloc((*size));
483 if (tmp == NULL) return NULL;
484 memset(tmp, 0, *size);
485 memcpy(tmp, &src->numero, i[0]);
486 memcpy(tmp+i[0], src->desc, i[1]);
487 memcpy(tmp+i[0]+i[1], src->presentacion, i[2]);
488 memcpy(tmp+i[0]+i[1]+i[2], src->existencia, i[3]);
489 memcpy(tmp+i[0]+i[1]+i[2]+i[3], src->pvu, i[4]);
490 memcpy(tmp+i[0]+i[1]+i[2]+i[3]+i[4], src->emin, i[5]);
493 /* Lleno el lugar no ocupado de los strings con *, para que el ver
494 * registro se vea bien
496 tmp = (char *)malloc(sizeof(t_Articulo));
497 memset(tmp, '*', sizeof(t_Articulo));
498 memcpy(tmp, from, sizeof(t_Articulo));
499 (*size) = sizeof(t_Articulo);
504 void art_reformatear(int tipo, int tam_bloque, int tam_reg)
507 EMUFS_REG_ID *indices, id;
508 EMUFS_REG_SIZE indices_total, i, size;
510 t_LstArticulos *lst_nueva;
514 PERR("==== EMPIEZO ====\n");
515 old = lst_articulos->fp;
517 /* Si el tipo es el mismo, no tengo que hacer nada! */
518 if (old->tipo == tipo) return;
520 /* Creo el nuevo file */
521 PERR("Creo el archivo\n");
522 nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
524 PERR("ARCHIVO NUEVO NO CREADO");
528 /* Creo la nueva lista */
529 lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
530 lst_nueva->primero = NULL;
531 lst_nueva->fp = nuevo;
533 /* Leo los indices del archivo viejo */
534 PERR("Obtengo Indices\n");
535 indices = emufs_idx_get(old, &indices_total);
536 if (indices == NULL) {
537 art_liberar(lst_nueva);
541 PERR("Proceso datos\n");
542 for(i=0; i<indices_total; i++) {
544 save = old->leer_registro(old, indices[i], &size, &error);
545 if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
547 /* Lei un registro Ok. Lo salvo en el archivo nuevo */
548 save = procesar_guardar_articulo(&art, &size, lst_nueva);
551 id = nuevo->grabar_registro(nuevo, save, size, &error);
552 agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
560 PERR("Libero lo viejo\n");
561 art_liberar(lst_articulos);
563 PERR("Ahora tengo lo nuevo\n");
564 lst_articulos = lst_nueva;
566 /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
567 free(lst_articulos->fp->nombre);
568 lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1));
569 strcpy(lst_articulos->fp->nombre, "articulos");
571 /* Muevo los archivos! */
572 /* TODO : Poner en otro lugar mas generico! */
573 PERR("Renombre!!\n");
574 rename("emufs_tmp.dat", "articulos.dat");
575 rename("emufs_tmp.idx", "articulos.idx");
576 rename("emufs_tmp.fsc", "articulos.fsc");
577 rename("emufs_tmp.did", "articulos.did");
578 PERR("==== TERMINE ====\n");