From: Ricardo Markiewicz Date: Wed, 14 Apr 2004 20:38:41 +0000 (+0000) Subject: * Se inicializa bloque en \0's al crear un nuevo bloque en tipo1 X-Git-Tag: svn_import_r684~486 X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/commitdiff_plain/dfd80953713dfca6db472364519ca94fa641ebd5 * Se inicializa bloque en \0's al crear un nuevo bloque en tipo1 * Ver registros ahora sirve tanto para tipo1 como para tipo3 (tipo1 no puede modificar ni borrar hasta que borrar_registro sea implementada) --- diff --git a/emufs/tipo1.c b/emufs/tipo1.c index 4ef7f76..769d7b2 100644 --- a/emufs/tipo1.c +++ b/emufs/tipo1.c @@ -176,6 +176,7 @@ EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg, if (block_id == EMUFS_NOT_FOUND) { /* crear un nuevo bloque en memoria */ block = (char*) malloc(efs->tam_bloque); + memset(block, 0, efs->tam_bloque); if (block == NULL) { /* TODO Manejo de errores */ PERR("No hay memoria"); @@ -388,6 +389,7 @@ void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE offset += curr_reg_size; } while (offset < block_size); + (*size) = efs->tam_bloque; return block; } diff --git a/emufs_gui/registros.c b/emufs_gui/registros.c index e6f81fc..09cd7f9 100644 --- a/emufs_gui/registros.c +++ b/emufs_gui/registros.c @@ -4,7 +4,8 @@ #include "articulos.h" /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */ -static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual); +static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho); +static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho); #define ACT 0 #define ANT 1 @@ -13,6 +14,7 @@ static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_S void ver_registros(WINDOW *padre, int w, int h) { /* Ventanas donde mostrar las cosas */ + char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*); WINDOW *actual[2]; EMUFS_REG_SIZE size; int scroll, actual_ancho; @@ -23,14 +25,21 @@ void ver_registros(WINDOW *padre, int w, int h) EMUFS *fp; int pos_actual, ancho_registro, offset, pos; fp = emufs_abrir("articulos"); + switch (fp->tipo) { + case T1: + case T2: + procesar = procesar_registro_articulo_tipo1; + break; + case T3: + procesar = procesar_registro_articulo_tipo3; + } total_indice = emufs_idx_get_count(fp); ant_indice = 1; data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual); - data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual); + data = procesar(fp, data, &size, &pos_actual, &ancho_registro); - ancho_registro = sizeof(t_Articulo)-sizeof(unsigned int)*2+20; max_scroll = size / (w-4) - (h-8); if (max_scroll < 0) max_scroll = 0; @@ -98,14 +107,14 @@ void ver_registros(WINDOW *padre, int w, int h) } data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual); - data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual); + data = procesar(fp, data, &size, &pos_actual, &ancho_registro); break; case 'g': case 'G': art_agregar(NULL); free(data); data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual); - data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual); + data = procesar(fp, data, &size, &pos_actual, &ancho_registro); total_indice = emufs_idx_get_count(fp); @@ -129,7 +138,7 @@ void ver_registros(WINDOW *padre, int w, int h) free(data); data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual); - data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual); + data = procesar(fp, data, &size, &pos_actual, &ancho_registro); /* Tengo que re-pintar algunas cosas */ wattron(padre, A_BOLD); @@ -157,7 +166,7 @@ void ver_registros(WINDOW *padre, int w, int h) if (ant_indice >= total_indice) ant_indice = total_indice-1; if (data) free(data); data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual); - data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual); + data = procesar(fp, data, &size, &pos_actual, &ancho_registro); } break; case 'k': @@ -166,7 +175,7 @@ void ver_registros(WINDOW *padre, int w, int h) if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0; if (data) free(data); data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual); - data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual); + data = procesar(fp, data, &size, &pos_actual, &ancho_registro); } } @@ -195,7 +204,7 @@ void ver_registros(WINDOW *padre, int w, int h) curs_set(1); } -char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual) +char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho) { char *tmp, *salida, *tmp1, pos_actualizada, ant; int cant_header, i=0, j; @@ -203,6 +212,8 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si /* Calculo cuantos headers de registros va a haber en el archivo */ cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID)); + if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */ + /* El tamaño del nuevo array lo calculo asi : * * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro @@ -252,6 +263,90 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si free(ptr); (*tmp1) = '\0'; (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1; + (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+10; + return salida; +} + +char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho) +{ + EMUFS_REG_SIZE offset, curr_size; + char *tmp, *salida, *tmp1, pos_actualizada, ant; + int cant_header, i=0, j; + if (ptr == NULL) return NULL; + + /* Cuento la cantidad de registros en este bloque */ + cant_header = 0; + offset = 0; + do { + /* Me salto el ID, que no me interesa saber su valor */ + offset += sizeof(EMUFS_REG_ID); + /* Copio el tamaño del registro de la cabecera. */ + memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE)); + offset += sizeof(EMUFS_REG_SIZE); + + /* Desplazo el offset */ + if (curr_size == 0) { + /* Si el tamaño de registro es 0, quiere decir que llegue a la + * parte que esta vacia */ + break; + } else { + cant_header++; + offset += curr_size; + } + } while (offset < (*size)); + + /* Proceso */ + salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1); + tmp = ptr; + tmp1 = salida; + pos_actualizada = 0; + while (i