]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/idx.h
anda mal, tambien hay un problema cuando se quiere medir la cantidad de bloques en...
[z.facultad/75.06/emufs.git] / emufs / idx.h
index a2c9736946cf1fe108a87d8421d23a99f0c373de..dd0fe6047b4c7bc30d1a4b935d503df5e7eb81fa 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$
  *
  */
 
  *
  */
 
-#ifndef _IDX_H
-#define _IDX_H
+#ifndef _EMUFS_IDX_H
+#define _EMUFS_IDX_H
 
 #include <string.h>
 
 #include <string.h>
+#include <unistd.h>
 #include "emufs.h"
 
 #include "emufs.h"
 
-int emufs_idx_buscar_mayor_id(EMUFS *);
+#define EMUFS_IDX_EXT ".idx"
 
 
-int emufs_idx_buscar_registro(EMUFS *, int);
+typedef struct emufs_idx_t {
+       EMUFS_REG_ID id_reg;
+       EMUFS_BLOCK_ID location;
+} EMUFS_IDX;
 
 
-int emufs_idx_agregar(EMUFS *, int , int);
+FILE* emufs_idx_abrir(EMUFS*, const char*);
 
 
-#endif /* _IDX_H */
+int emufs_idx_crear(EMUFS*);
+
+EMUFS_REG_ID emufs_idx_buscar_mayor_id_libre(EMUFS*, int*);
+
+EMUFS_BLOCK_ID emufs_idx_buscar_registro(EMUFS*, EMUFS_REG_ID);
+
+int emufs_idx_agregar(EMUFS*, EMUFS_BLOCK_ID, EMUFS_REG_ID);
+
+int emufs_idx_borrar(EMUFS*, EMUFS_REG_ID);
+
+/** Retorna un array con los Ids validos del archivo IDX
+ *
+ *  EL ARRAY DEBE SER LIBERADO!
+ *  \param emu EMUFS
+ *  \param cant Puntero donde guardar la cantidad de items
+ */
+EMUFS_REG_ID *emufs_idx_get(EMUFS *emu, EMUFS_REG_ID *cant);
+
+EMUFS_REG_ID emufs_idx_get_new_id(EMUFS*, int*);
+
+int emufs_idx_existe_id(EMUFS *emu, int ID);
+
+int emufs_idx_actualizar(EMUFS *emu, int ID, EMUFS_BLOCK_ID bloque);
+
+#endif /* _EMUFS_IDX_H */