From: Ricardo Markiewicz Date: Mon, 19 Apr 2004 00:23:34 +0000 (+0000) Subject: * BUGFIXs : Varios memory leaks X-Git-Tag: svn_import_r684~334 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/e50af225b6fcc10c4cfd18b4f3c1bb850558efc8?ds=inline * BUGFIXs : Varios memory leaks * Se hace reformatear factura * Falta probar algunas cosas --- diff --git a/emufs_gui/emufs_view.c b/emufs_gui/emufs_view.c index 719a549..94ca402 100644 --- a/emufs_gui/emufs_view.c +++ b/emufs_gui/emufs_view.c @@ -505,6 +505,9 @@ void menu_mantenimiento() case 4: nuevo_tam_registro = 0; preguntar_nuevo_tipo(&nuevo_tipo, &nuevo_tam_bloque, &nuevo_tam_registro); + dlg = msg_box(stdscr, COLS, LINES, "Cambiando el formato de archivo .... Aguarde"); + fact_reformatear(nuevo_tipo, nuevo_tam_bloque, nuevo_tam_registro); + msg_box_free(stdscr, dlg); break; case 5: nuevo_tam_registro = -2; diff --git a/emufs_gui/facturas.c b/emufs_gui/facturas.c index 966bd70..f2ceeb2 100644 --- a/emufs_gui/facturas.c +++ b/emufs_gui/facturas.c @@ -680,6 +680,15 @@ static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, char *ini, *fin; int dummy; + if (lst == NULL) { + PERR("Puntero a lista NULO"); + return 0; + } + if (lst->fp == NULL) { + PERR("EMUFS No creado!"); + return 0; + } + switch (lst->fp->tipo) { case T1: case T2: @@ -756,3 +765,83 @@ static int procesar_leer_factura(t_Factura *dst, void *src, EMUFS_REG_SIZE size, return 0; } +void fact_reformatear(int tipo, int tam_bloque, int tam_reg) +{ + EMUFS *nuevo, *old; + EMUFS_REG_ID *indices, id; + EMUFS_REG_SIZE indices_total, i, size, tam_reg1; + t_Factura fact; + t_LstFacturas *lst_nueva; + int error; + char *save; + + PERR("==== EMPIEZO ====\n"); + old = lst_facturas->fp; + + /* Creo el nuevo file */ + PERR("Creo el archivo\n"); + if (tipo == T3) { + /* Me aseguro de que entren n items completos */ + tam_reg1 = sizeof(t_Factura)-sizeof(char *)-sizeof(t_Item*)+10*sizeof(t_Item); + } + nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, tam_reg1); + if (nuevo == NULL) { + PERR("ARCHIVO NUEVO NO CREADO"); + return; + } + + /* Creo la nueva lista */ + lst_nueva = (t_LstFacturas *)malloc(sizeof(t_LstFacturas)); + lst_nueva->primero = NULL; + lst_nueva->fp = nuevo; + + /* Leo los indices del archivo viejo */ + PERR("Obtengo Indices\n"); + indices = emufs_idx_get(old, &indices_total); + if (indices == NULL) { + fact_liberar(lst_nueva); + return; + } + + PERR("Proceso datos\n"); + for(i=0; ileer_registro(old, indices[i], &size, &error); + if (procesar_leer_factura(&fact, save, size, lst_facturas) == 0) { + free(save); + /* Lei un registro Ok. Lo salvo en el archivo nuevo */ + save = procesar_guardar_factura(&fact, lst_nueva, &size); + if (save) { + error = 0; + id = nuevo->grabar_registro(nuevo, save, size, &error); + agregar_nodo_factura(lst_nueva, crear_nodo_factura(id, fact.reg_nota, fact.numero)); + free(save); + if (fact.items) free(fact.items); + if (fact.nota) free(fact.nota); + } + } + } + + free(indices); + + PERR("Libero lo viejo\n"); + fact_liberar(lst_facturas); + + PERR("Ahora tengo lo nuevo\n"); + lst_facturas = lst_nueva; + + /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */ + free(lst_facturas->fp->nombre); + lst_facturas->fp->nombre = (char *)malloc(sizeof(char)*(strlen("facturas")+1)); + strcpy(lst_facturas->fp->nombre, "facturas"); + + /* Muevo los archivos! */ + /* TODO : Poner en otro lugar mas generico! */ + PERR("Renombre!!\n"); + rename("emufs_tmp.dat", "facturas.dat"); + rename("emufs_tmp.idx", "facturas.idx"); + rename("emufs_tmp.fsc", "facturas.fsc"); + rename("emufs_tmp.did", "facturas.did"); + PERR("==== TERMINE ====\n"); +} + diff --git a/emufs_gui/facturas.h b/emufs_gui/facturas.h index 22dbd4e..f6f8cf6 100644 --- a/emufs_gui/facturas.h +++ b/emufs_gui/facturas.h @@ -71,4 +71,6 @@ void fact_eliminar(char *s); /** Obtiene la list de facturas */ t_LstFacturas *fact_get_lst(); +void fact_reformatear(int tipo, int tam_bloque, int tam_reg); + #endif