]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/emufs.c
Ups, faltaban cosas
[z.facultad/75.06/emufs.git] / emufs / emufs.c
index ef22753e9a34cfeef89adf206525cd00b947f230..9956bf6b0e4e7e3bb33569a6340cacb3f1783a48 100644 (file)
@@ -79,7 +79,7 @@ int emufs_crear_archivo_auxiliar(const char* name, const char* ext)
        return 0;
 }
 
-EMUFS *emufs_crear(const char *filename, EMUFS_TYPE tipo, EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg)
+EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg)
 {
        char name[255];
        FILE *fp;
@@ -112,7 +112,7 @@ EMUFS *emufs_crear(const char *filename, EMUFS_TYPE tipo, EMUFS_BLOCK_SIZE tam_b
        }
 
        /* Guarda cabecera común. */
-       fwrite(&tipo, sizeof(EMUFS_TYPE), 1, fp);
+       fwrite(&tipo, sizeof(EMUFS_Tipo), 1, fp);
 
        /* Crea archivo de índice. */
        if (emufs_idx_crear(efs)) {
@@ -142,6 +142,7 @@ EMUFS *emufs_crear(const char *filename, EMUFS_TYPE tipo, EMUFS_BLOCK_SIZE tam_b
        switch (tipo) {
 
                case T1:
+                       /* Asigna punteros a funciones. */
                        emufs_tipo1_inicializar(efs);
 
                        /* Guarda cabeceras propias. */
@@ -151,10 +152,7 @@ EMUFS *emufs_crear(const char *filename, EMUFS_TYPE tipo, EMUFS_BLOCK_SIZE tam_b
 
                case T2:
                        /* Asigna punteros a funciones. */
-                       efs->grabar_registro = emufs_tipo2_grabar_registro;           
-            efs->borrar_registro = emufs_tipo2_borrar_registro;
-                       efs->nombre = str_dup(filename);
-                   /*efs->leer_registro = emufs_tipo2_leer_registro;*/                                         
+                       emufs_tipo2_inicializar(efs);
                        break;
 
                case T3:
@@ -188,7 +186,7 @@ EMUFS *emufs_abrir(const char *filename)
        /* Trato de determinar el tipo de archivo */
        fp = fopen(name, "r");
        if (fp == NULL) return NULL;
-       fread(&tipo, sizeof(EMUFS_TYPE), 1, fp);
+       fread(&tipo, sizeof(EMUFS_Tipo), 1, fp);
 
        /* Si no es un tipo conocido, sale. */
        if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
@@ -207,6 +205,7 @@ EMUFS *emufs_abrir(const char *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)) {
@@ -217,6 +216,8 @@ EMUFS *emufs_abrir(const char *filename)
                        }
                        break;
                case T2:
+                       /* Asigna punteros a funciones. */
+                       emufs_tipo2_inicializar(efs);                   
                        break;
                case T3:
                        if ((!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) ||
@@ -227,10 +228,11 @@ EMUFS *emufs_abrir(const char *filename)
                                fclose(fp);
                                return NULL;
                        }                       
+                       /* Asigna punteros a funciones. */                      
                        efs->leer_bloque = emufs_tipo3_leer_bloque;
                        efs->leer_registro = emufs_tipo3_leer_registro;
                        efs->grabar_registro = emufs_tipo3_grabar_registro;
-                       /*efs->borrar_registro = emufs_tipo3_borrar_registro;*/
+                       efs->borrar_registro = emufs_tipo3_borrar_registro;
                        break;
        }