X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/015bf5db523d05c490afd35f94cb8a4df2002a56..5c39a8b8061f2ae5c22a12e40d1b9f4ffea42c68:/emufs/emufs.c?ds=sidebyside diff --git a/emufs/emufs.c b/emufs/emufs.c index 9f60c37..9a03441 100644 --- a/emufs/emufs.c +++ b/emufs/emufs.c @@ -142,16 +142,12 @@ 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 */ + 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 +166,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); @@ -244,6 +241,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; }