X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/3b3ca43c7a94d0fd000a67f8d214ad7ab4754ddc..008189ea62c4d3800769f00a304f95cc454102b3:/emufs/emufs.c diff --git a/emufs/emufs.c b/emufs/emufs.c index 507dcb8..e789fa7 100644 --- a/emufs/emufs.c +++ b/emufs/emufs.c @@ -99,7 +99,7 @@ EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_b int err = 0; /* Si no es un tipo conocido, sale. */ - if ((tipo != T1) && (tipo != T2) && (tipo != T3)) { + if ((tipo != T1) && (tipo != T2) && (tipo != T3) && (tipo != T4) && (tipo != T5)) { return NULL; } @@ -191,7 +191,7 @@ EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_b case T3: /* Asigna punteros a funciones. */ - if ((err = emufs_tipo4_inicializar(efs))) { + if ((err = emufs_tipo3_inicializar(efs))) { /* TODO ERROR */ PERR("No se pudo inicializar el EMUFS de tipo3"); fclose(fp); @@ -299,17 +299,32 @@ EMUFS *emufs_abrir(const char *filename) return NULL; } /* Asigna punteros a funciones. */ - efs->leer_bloque = emufs_tipo3_leer_bloque; - efs->leer_registro_raw = emufs_tipo3_leer_registro_raw; - efs->leer_registro = emufs_tipo3_leer_registro; - efs->grabar_registro = emufs_tipo3_grabar_registro; - efs->borrar_registro = emufs_tipo3_borrar_registro; - efs->leer_estadisticas = emufs_tipo3_leer_estadisticas; - efs->modificar_registro = emufs_tipo3_modificar_registro; - efs->compactar = emufs_tipo3_compactar; - efs->leer_bloque_raw = emufs_tipo3_leer_bloque_raw; + emufs_tipo3_inicializar(efs); break; - } + + case T4: + /* Lee cabeceras propias. */ + if (!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) { + free(efs->nombre); + free(efs); + fclose(fp); + return NULL; + } + emufs_tipo4_inicializar(efs); + break; + + case T5: + if ((!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) || + (!fread(&(efs->tam_reg), sizeof(EMUFS_REG_SIZE), 1, fp))) + { + free(efs->nombre); + free(efs); + fclose(fp); + return NULL; + } + /* Asigna punteros a funciones. */ + emufs_tipo5_inicializar(efs); + } fclose(fp); return efs; @@ -410,6 +425,7 @@ int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDIC /* y que no exista un indice primario */ PERR("Agregando indice"); tmp = emu->indices; + PERR("IGUALE"); while (tmp) { if (strcmp(tmp->nombre, nombre)==0) { error = 1;