]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/emufs.c
los tipos nuevos todavia no eran conocidos
[z.facultad/75.06/emufs.git] / emufs / emufs.c
index 507dcb814615924547d4d351c41f8b77c0e9fa64..e789fa701156766cfae2c7aab9a9edf013fc5a2f 100644 (file)
@@ -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. */
        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;
        }
 
                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. */
 
                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);
                                /* 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. */                      
                                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;
                        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;
 
        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;
        /* 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;
        while (tmp) {
                if (strcmp(tmp->nombre, nombre)==0) {
                        error = 1;