X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/015bf5db523d05c490afd35f94cb8a4df2002a56..47632f8f1b760f3538651edad104e595c73f8e63:/emufs/emufs.c diff --git a/emufs/emufs.c b/emufs/emufs.c index 9f60c37..7d0d87f 100644 --- a/emufs/emufs.c +++ b/emufs/emufs.c @@ -142,16 +142,13 @@ EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_b switch (tipo) { case T1: - /* Inicializa archivo (punteros a funciones, chequeos, etc). */ - if (emufs_tipo1_inicializar(efs)) { - /* TODO ERROR */ - free(efs->nombre); - free(efs); - return NULL; - } + /* Asigna punteros a funciones. */ + /* TODO verificar que el tamaño de bloque sea como mínimo del + * tamaño de la cabecera de un registro + N */ + fprintf(stderr, "tambloque = %d\n", efs->tam_bloque); + emufs_tipo1_inicializar(efs); - /* Guarda cabeceras propias. - * FIXME esto me gustaria que vaya a inicializar() */ + /* Guarda cabeceras propias. */ fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp); break; @@ -170,6 +167,7 @@ EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_b 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; /* Guarda cabeceras propias. */ fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp); fwrite(&tam_reg, sizeof(EMUFS_REG_SIZE), 1, fp); @@ -210,11 +208,9 @@ EMUFS *emufs_abrir(const char *filename) } efs->tipo = tipo; efs->nombre = str_dup(filename); - + switch (tipo) { case T1: - /* Asigna punteros a funciones. */ - emufs_tipo1_inicializar(efs); /* Lee cabeceras propias. */ if (!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) { free(efs->nombre); @@ -222,6 +218,8 @@ EMUFS *emufs_abrir(const char *filename) fclose(fp); return NULL; } + /* Asigna punteros a funciones. */ + emufs_tipo1_inicializar(efs); break; case T2: /* Asigna punteros a funciones. */ @@ -244,6 +242,7 @@ EMUFS *emufs_abrir(const char *filename) 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; break; }