]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
- Se agrega svn:ignore para que no salga la libemufs.a en el svn st.
authorLeandro Lucarella <llucax@gmail.com>
Fri, 9 Apr 2004 22:46:48 +0000 (22:46 +0000)
committerLeandro Lucarella <llucax@gmail.com>
Fri, 9 Apr 2004 22:46:48 +0000 (22:46 +0000)
- Primer intento de tipo1; solo implementa leer_registro (y no esta probado).
- Se generaliza emufs_crear() y se le agrega soporte para tipo1 (falta probar).
- Se agrega emufs_crear_archivo_auxiliar().
- Se agregan los emufs_xxx_crear() para crear archivos auxiliares específicos.
- Se actualiza Makefile.

emufs/Makefile
emufs/did.c
emufs/did.h
emufs/emufs.c
emufs/emufs.h
emufs/fsc.c
emufs/fsc.h
emufs/idx.c
emufs/idx.h
emufs/tipo1.c [new file with mode: 0644]
emufs/tipo1.h [new file with mode: 0644]

index aecd1e56b5d6831c8736314897ff047eb45afc80..fc6b95aa3c912c4b15b971946db8ac6b22655dc2 100644 (file)
@@ -1,13 +1,13 @@
 CFLAGS=-Wall -g -ansi -pedantic -DDEBUG
 LDFLAGS=
 
 CFLAGS=-Wall -g -ansi -pedantic -DDEBUG
 LDFLAGS=
 
-EMUFS_COMMON=emufs.o idx.o did.o fsc.o
+EMUFS_COMMON=emufs.o tipo1.o tipo3.o idx.o did.o fsc.o
 
 
-all: tipo3_main libemufs.a
+all: libemufs.a tipo3_main
 
 
-tipo3_main: tipo3_main.o tipo3.o $(EMUFS_COMMON)
+tipo3_main: tipo3_main.o $(EMUFS_COMMON)
 
 
-libemufs.a: tipo3.o $(EMUFS_COMMON)
+libemufs.a: $(EMUFS_COMMON)
        ar cru libemufs.a tipo3.o $(EMUFS_COMMON)
 
 clean:
        ar cru libemufs.a tipo3.o $(EMUFS_COMMON)
 
 clean:
index 90a200b7094010a05946bac36abea188b78bca65..407b123e418e1db47f92a6d080391d3ac2a03ebf 100644 (file)
@@ -20,6 +20,7 @@
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:07:57 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:07:57 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *          Leandro Lucarella <llucare@fi.uba.ar>
  *----------------------------------------------------------------------------
  *
  * $Id$
  *----------------------------------------------------------------------------
  *
  * $Id$
 #include <string.h>
 #include <unistd.h>
 
 #include <string.h>
 #include <unistd.h>
 
+int emufs_did_crear(EMUFS* efs)
+{
+       return emufs_crear_archivo_auxiliar(efs->nombre, EMUFS_DID_EXT);
+}
+
 int emufs_did_get_last(EMUFS *emu)
 {
        FILE * f_did;
 int emufs_did_get_last(EMUFS *emu)
 {
        FILE * f_did;
@@ -46,7 +52,7 @@ int emufs_did_get_last(EMUFS *emu)
        char name_f_did[255];
        
        strcpy(name_f_did, emu->nombre);
        char name_f_did[255];
        
        strcpy(name_f_did, emu->nombre);
-       strcat(name_f_did,  EMUFS_DID_EXT);
+       strcat(name_f_did, EMUFS_DID_EXT);
        
        if ( (f_did = fopen(name_f_did,"r")) == NULL) return -1; /*ERROR*/
        fseek(f_did, 0, SEEK_END);
        
        if ( (f_did = fopen(name_f_did,"r")) == NULL) return -1; /*ERROR*/
        fseek(f_did, 0, SEEK_END);
index b50d630f6b3660f4fae8990fa58eea4a35aef037..e79b8cee1e497596c72b972694b3715eb2ad8cc2 100644 (file)
@@ -20,6 +20,7 @@
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:09:31 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:09:31 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *          Leandro Lucarella <llucare@fi.uba.ar>
  *----------------------------------------------------------------------------
  *
  * $Id$
  *----------------------------------------------------------------------------
  *
  * $Id$
@@ -42,6 +43,8 @@
 
 #define EMUFS_DID_EXT ".did"
 
 
 #define EMUFS_DID_EXT ".did"
 
+int emufs_did_crear(EMUFS*);
+
 int emufs_did_get_last(EMUFS *); 
 
 int emufs_did_agregar(EMUFS *, int);
 int emufs_did_get_last(EMUFS *); 
 
 int emufs_did_agregar(EMUFS *, int);
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)
index 0e469a9c0fc4d80f8888098e3470f9dc33d6e7eb..f8a70673bb190a8c8099ce39fc9245d8f61ba789 100644 (file)
@@ -78,6 +78,9 @@ typedef struct _emu_fs_t {
        char *nombre; /**< Nombre del archivo */
 } EMUFS;
 
        char *nombre; /**< Nombre del archivo */
 } EMUFS;
 
+/** Crea un archivo auxiliar. */
+int emufs_crear_archivo_auxiliar(const char*, const char*);
+
 /** Crea un nuevo archivo EMUFS.
  *
  *  Un archivo EMUFS está compuesto por 4 archivos a nivel del sistema operativo.
 /** Crea un nuevo archivo EMUFS.
  *
  *  Un archivo EMUFS está compuesto por 4 archivos a nivel del sistema operativo.
@@ -100,7 +103,7 @@ typedef struct _emu_fs_t {
  *  \param tam_bloque Tamaño del bloque.
  *  \param tam_reg Tamaño del registro.
  */
  *  \param tam_bloque Tamaño del bloque.
  *  \param tam_reg Tamaño del registro.
  */
-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);
 
 /** Abre un archivo EMUFS.
  *
 
 /** Abre un archivo EMUFS.
  *
index 692d6d1799d8a29d86846d2adff2008193894b0c..b67ce36367e499d736c25ab74560a39c06a88bcb 100644 (file)
@@ -20,6 +20,7 @@
  *----------------------------------------------------------------------------
  * Creado:  vie abr  9 16:17:50 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
  *----------------------------------------------------------------------------
  * Creado:  vie abr  9 16:17:50 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *          Leandro Lucarella <llucare@fi.uba.ar>
  *----------------------------------------------------------------------------
  *
  * $Id$
  *----------------------------------------------------------------------------
  *
  * $Id$
 #include <string.h>
 #include <unistd.h>
 
 #include <string.h>
 #include <unistd.h>
 
+int emufs_fsc_crear(EMUFS* efs)
+{
+       return emufs_crear_archivo_auxiliar(efs->nombre, EMUFS_FSC_EXT);
+}
+
 int emufs_fsc_agregar(EMUFS *emu, int num_bloque, int fs)
 {
        FILE *f_fsc;
 int emufs_fsc_agregar(EMUFS *emu, int num_bloque, int fs)
 {
        FILE *f_fsc;
index 0a2df0d99f0c68eb49c20eef1721be40a3c5b50f..9e44692c496abe642e1dc0430441a78122db6a11 100644 (file)
@@ -20,6 +20,7 @@
  *----------------------------------------------------------------------------
  * Creado:  vie abr  9 16:17:50 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
  *----------------------------------------------------------------------------
  * Creado:  vie abr  9 16:17:50 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *          Leandro Lucarella <llucare@fi.uba.ar>
  *----------------------------------------------------------------------------
  *
  * $Id$
  *----------------------------------------------------------------------------
  *
  * $Id$
@@ -46,6 +47,8 @@ typedef struct emufs_fsc_t {
        int free_space;
 } EMUFS_FSC;
 
        int free_space;
 } EMUFS_FSC;
 
+int emufs_fsc_crear(EMUFS*);
+
 int emufs_fsc_agregar(EMUFS *, int, int);
 
 int emufs_fsc_actualizar(EMUFS *, int, int);
 int emufs_fsc_agregar(EMUFS *, int, int);
 
 int emufs_fsc_actualizar(EMUFS *, int, int);
index ea971023895af951102674f475556be4b8b41e46..cc882578975632ec29e1fa44bcd10394b9ed6230 100644 (file)
@@ -20,6 +20,7 @@
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:10:35 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:10:35 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *          Leandro Lucarella <llucare@fi.uba.ar>
  *----------------------------------------------------------------------------
  *
  * $Id$
  *----------------------------------------------------------------------------
  *
  * $Id$
@@ -56,6 +57,11 @@ FILE* emufs_idx_abrir(EMUFS* efs, const char* mode)
        return f;
 }
 
        return f;
 }
 
+int emufs_idx_crear(EMUFS *efs)
+{
+       return emufs_crear_archivo_auxiliar(efs->nombre, EMUFS_IDX_EXT);
+}
+
 int emufs_idx_buscar_mayor_id(EMUFS *emu)
 {
        int id, max = -1;
 int emufs_idx_buscar_mayor_id(EMUFS *emu)
 {
        int id, max = -1;
index cb67b6977a61b09fa8a7cfcd4e2c2ffc9971c4c5..40555497d24bb4f8632bf9bae89e638f33ffac00 100644 (file)
@@ -20,6 +20,7 @@
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:11:46 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
  *----------------------------------------------------------------------------
  * Creado:  jue abr  8 18:11:46 ART 2004
  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *          Leandro Lucarella <llucare@fi.uba.ar>
  *----------------------------------------------------------------------------
  *
  * $Id$
  *----------------------------------------------------------------------------
  *
  * $Id$
@@ -49,6 +50,8 @@ typedef struct emufs_idx_t {
 
 FILE* emufs_idx_abrir(EMUFS*, const char*);
 
 
 FILE* emufs_idx_abrir(EMUFS*, const char*);
 
+int emufs_idx_crear(EMUFS*);
+
 int emufs_idx_buscar_mayor_id(EMUFS *);
 
 int emufs_idx_buscar_registro(EMUFS *, int);
 int emufs_idx_buscar_mayor_id(EMUFS *);
 
 int emufs_idx_buscar_registro(EMUFS *, int);
diff --git a/emufs/tipo1.c b/emufs/tipo1.c
new file mode 100644 (file)
index 0000000..d5a0a58
--- /dev/null
@@ -0,0 +1,116 @@
+/* vim: set noexpandtab tabstop=4 shiftwidth=4:
+ *----------------------------------------------------------------------------
+ *                                  emufs
+ *----------------------------------------------------------------------------
+ * This file is part of emufs.
+ *
+ * emufs is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU General Public License as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option) any later
+ * version.
+ *
+ * emufs is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place, Suite 330, Boston, MA  02111-1307  USA
+ *----------------------------------------------------------------------------
+ * Creado:  vie abr  9 16:47:32 ART 2004
+ * Autores: Leandro Lucarella <llucare@fi.uba.ar>
+ *----------------------------------------------------------------------------
+ *
+ * $Id$
+ *
+ */
+
+/** \file
+ *
+ * Archivo con bloque de longitud parametrizada, registro de longitud variable.
+ * 
+ * Implementación del archivo con bloques de longitud parametrizada y registros
+ * de longitud variable.
+ *
+ */
+
+#include "tipo1.h"
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+#include <unistd.h>
+#include <malloc.h>
+
+int emufs_tipo1_leer_registro(EMUFS* efs, int reg_id, void* reg_ptr, unsigned long reg_size)
+{
+       int block_id; /* id del bloque en donde esta el registro a leer */
+       char* block; /* bloque leido (en donde está el registro a leer) */
+       ptrdiff_t offset; /* offset del bloque a leido */
+       unsigned long curr_reg_size; /* tamaño del registro leido secuencialmente */
+       int curr_reg_id; /* id del registro leido secuencialmente */
+
+       block_id = emufs_idx_buscar_registro(efs, reg_id);
+       block = (char*) malloc(efs->tam_bloque);
+       if (block == NULL) {
+               /* TODO Manejo de errores */
+               printf("No hay memoria.\n");
+               return -1;
+       }
+       
+       if (emufs_tipo1_leer_bloque(efs, block_id, block) == -1) {
+               /* TODO Manejo de errores */
+               free(block);
+               printf("no se pudo leer el bloque\n");
+               return -1;
+       }
+
+       /* Busco secuencialmente en el bloque el registro a leer */
+       offset = 0;
+       do {
+               /* Copio el id del registro de la cabecera. */
+               memcpy(&curr_reg_id, block + offset, sizeof(int));
+               offset += sizeof(int);
+               /* Copio el tamaño del registro de la cabecera. */
+               memcpy(&curr_reg_size, block + offset, sizeof(unsigned long));
+               offset += sizeof(unsigned long);
+               if (curr_reg_id == reg_id) {
+                       /* XXX Posible checkeo de reg_size == curr_reg_size */
+                       memcpy(reg_ptr, block + offset, curr_reg_size);
+                       break;
+               }
+               /* Desplazo el offset */
+               offset += curr_reg_size;
+       } while (offset < efs->tam_bloque);
+
+       free(block);
+       return 0;
+}
+
+int emufs_tipo1_leer_bloque(EMUFS *emu, int ID, void* ptr)
+{
+       return -1; /* FIXME Error */
+}
+
+int emufs_tipo1_grabar_registro(EMUFS *emu, void *ptr, unsigned long tam)
+{
+       return -1; /* FIXME Error */
+}
+
+/*Busco en el archivo de Id`s un Id valido para un nuevo registro*/
+int emufs_tipo1_get_id(EMUFS *emu)
+{
+       return -1; /* FIXME Error */
+}
+
+/*Graba un bloque en el archivo*/
+int emufs_tipo1_grabar_bloque(EMUFS *emu, void *ptr, int num)
+{
+       return -1; /* FIXME Error */
+}
+
+/*borra un registro de un bloque y acomoda los registros que quedan*/
+int emufs_tipo1_borrar_registro(EMUFS *emu, int ID, unsigned long tam_reg)
+{
+       return -1; /* FIXME Error */
+}
diff --git a/emufs/tipo1.h b/emufs/tipo1.h
new file mode 100644 (file)
index 0000000..113a66d
--- /dev/null
@@ -0,0 +1,63 @@
+/* vim: set noexpandtab tabstop=4 shiftwidth=4:
+ *----------------------------------------------------------------------------
+ *                                  emufs
+ *----------------------------------------------------------------------------
+ * This file is part of emufs.
+ *
+ * emufs is free software; you can redistribute it and/or modify it under the
+ * terms of the GNU General Public License as published by the Free Software
+ * Foundation; either version 2 of the License, or (at your option) any later
+ * version.
+ *
+ * emufs is distributed in the hope that it will be useful, but WITHOUT ANY
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
+ * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
+ * details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
+ * Place, Suite 330, Boston, MA  02111-1307  USA
+ *----------------------------------------------------------------------------
+ * Creado:  vie abr  9 16:47:54 ART 2004
+ * Autores: Leandro Lucarella <llucare@fi.uba.ar>
+ *----------------------------------------------------------------------------
+ *
+ * $Id$
+ *
+ */
+
+/** \file
+ *
+ * Archivo con bloque de longitud parametrizada, registro de longitud variable.
+ * 
+ * Interfaz del archivo con bloques de longitud parametrizada y registros de
+ * longitud variable.
+ *
+ */
+
+#ifndef _EMUFS_TIPO1_H_
+#define _EMUFS_TIPO1_H_
+
+#include "emufs.h"
+#include "did.h"
+#include "idx.h"
+#include "fsc.h"
+
+int emufs_tipo1_leer_registro(EMUFS *, int , void *, unsigned long);
+
+int emufs_tipo1_leer_bloque(EMUFS *, int , void *);
+
+int emufs_tipo1_grabar_registro(EMUFS *, void *, unsigned long );
+
+int emufs_tipo1_grabar_bloque(EMUFS *, void *, int);
+
+int emufs_tipo1_get_id(EMUFS *);
+
+int emufs_tipo1_buscar_registro(EMUFS *, int);
+
+int emufs_tipo1_buscar_lugar(EMUFS *, unsigned long , int *);
+
+int emufs_tipo1_borrar_registro(EMUFS*, int, unsigned long);
+
+
+#endif /* _EMUFS_TIPO1_H_ */