]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/emufs.c
- Se agrega svn:ignore para que no salga la libemufs.a en el svn st.
[z.facultad/75.06/emufs.git] / emufs / emufs.c
index 6edd665a2fa9aaa738bae1e06d80ae8fb55cc15e..0c529edc03fd8136812135abb26a02ffb211b21e 100644 (file)
  */
 
 #include "emufs.h"
  */
 
 #include "emufs.h"
+#include "tipo1.h"
 #include "tipo3.h"
 #include "did.h"
 #include "fsc.h"
 #include "idx.h"
 
 #include "tipo3.h"
 #include "did.h"
 #include "fsc.h"
 #include "idx.h"
 
-/* Defino las extenciones que usan cada tipo de archivo */
-
 char *str_dup(const char *s);
 
 char *str_dup(const char *s)
 char *str_dup(const char *s);
 
 char *str_dup(const char *s)
@@ -57,64 +56,119 @@ char *str_dup(const char *s)
        return tmp;
 }
 
        return tmp;
 }
 
+int emufs_crear_archivo_auxiliar(const char* name, const char* ext)
+{
+       FILE* f;
+       char* filename;
+
+       filename = (char*) malloc(sizeof(char) * (strlen(name) + strlen(ext) + 1));
+       if (filename == NULL) {
+               /* TODO Manejo de errores */
+               return -1;
+       }
+       strcpy(filename, name);
+       strcat(filename, ext);
+       f = fopen(filename, "w");
+       free(filename);
+       if (f == NULL) {
+               /* TODO Manejo de errores */
+               return -1;
+       }
+       fclose(f);
+       return 0;
+}
+
 
 
-EMUFS *emufs_crear(const char *filename, char tipo, unsigned int tam_bloque, unsigned int tam_reg)
+EMUFS *emufs_crear(const char *filename, char tipo, unsigned long tam_bloque, unsigned long tam_reg)
 {
        char name[255];
        FILE *fp;
 {
        char name[255];
        FILE *fp;
-       EMUFS *tmp = (EMUFS *)malloc(sizeof(EMUFS));
+       EMUFS *efs;
+
+       /* Si no es un tipo conocido, sale */
+       if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
+               return NULL;
+       }
+
+       /* Inicializa parámetros comunes. */
+       efs = (EMUFS*) malloc(sizeof(EMUFS));
+       efs->tipo = tipo;
+       efs->tam_bloque = tam_bloque;
+       efs->nombre = str_dup(filename);
+
+       /* Abre archivo de datos. */
+       strcpy(name, filename);
+       strcat(name, ".dat");
+       fp = fopen(name, "w");
+       if (fp == NULL) {
+               /* TODO ERROR */
+               free(efs->nombre);
+               free(efs);
+               return NULL;
+       }
+
+       /* Guarda cabecera común. */
+       fwrite(&tipo, sizeof(char), 1, fp); /* FIXME no debería ser sizeof(EMUFS_TYPE) ? */
+
+       /* Crea archivo de índice. */
+       if (emufs_idx_crear(efs)) {
+               /* TODO ERROR */
+               free(efs->nombre);
+               free(efs);
+               return NULL;
+       }
 
 
+       /* Crea archivo de control de espacio libre. */
+       if (emufs_fsc_crear(efs)) {
+               /* TODO ERROR */
+               free(efs->nombre);
+               free(efs);
+               return NULL;
+       }
+
+       /* Crea archivo de identificadores borrados (recuperables). */
+       if (emufs_did_crear(efs)) {
+               /* TODO ERROR */
+               free(efs->nombre);
+               free(efs);
+               return NULL;
+       }
+
+       /* Termina de realizar el trabajo según el tipo de archivo. */
        switch (tipo) {
        switch (tipo) {
+
                case T1:
                case T1:
-               break;
+                       /* Asigna punteros a funciones. */
+                       efs->leer_bloque     = emufs_tipo1_leer_bloque;
+                       efs->leer_registro   = emufs_tipo1_leer_registro;
+                       efs->grabar_registro = emufs_tipo1_grabar_registro;
+                       efs->borrar_registro = emufs_tipo1_borrar_registro;
+
+                       /* Guarda cabeceras propias. */
+                       fwrite(&tam_bloque, sizeof(unsigned long), 1, fp);
+
+                       break;
+
                case T2:
                case T2:
-               break;
+                       break;
+
                case T3:
                case T3:
-                       tmp->tipo = T3;
-                       tmp->tam_bloque = tam_bloque;
-                       tmp->leer_bloque = emufs_tipo3_leer_bloque;
-                       tmp->leer_registro = emufs_tipo3_leer_registro;
-                       tmp->grabar_registro = emufs_tipo3_grabar_registro;
-                       tmp->borrar_registro = emufs_tipo3_borrar_registro;
-                       tmp->nombre = str_dup(filename);
+                       /* 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;
 
 
-                       strcpy(name, filename);
-                       strcat(name, ".dat");
-                       fp = fopen(name, "w");
-                       if (fp == NULL) {
-                               /* ERROR */
-                               free(tmp->nombre);
-                               free(tmp);
-                               return NULL;
-                       }
-                       /* Guardo el Header */
-                       fwrite(&tipo, sizeof(char), 1, fp);
+                       /* Guarda cabeceras propias. */
                        fwrite(&tam_bloque, sizeof(unsigned int), 1, fp);
                        fwrite(&tam_reg, sizeof(unsigned int), 1, fp);
                        fwrite(&tam_bloque, sizeof(unsigned int), 1, fp);
                        fwrite(&tam_reg, sizeof(unsigned int), 1, fp);
-                       fclose(fp);
                        
                        
-                       strcpy(name, filename);
-                       strcat(name, EMUFS_IDX_EXT);
-                       fp = fopen(name, "w");
-                       fclose(fp);
+                       break;
 
 
-                       strcpy(name, filename);
-                       strcat(name, EMUFS_FSC_EXT);
-                       fp = fopen(name, "w");
-                       fclose(fp);
-
-                       strcpy(name, filename);
-                       strcat(name, EMUFS_DID_EXT);
-                       fp = fopen(name, "w");
-                       fclose(fp);
-
-               break;
-               default:
-                       free(tmp);
-                       return NULL;
        }
 
        }
 
-       return tmp;
+       fclose(fp);
+       return efs;
 }
 
 EMUFS *emufs_abrir(const char *filename)
 }
 
 EMUFS *emufs_abrir(const char *filename)