]> git.llucax.com Git - z.facultad/75.06/emufs.git/blobdiff - emufs/tipo3.h
* Bugfix : en procesar_leer_registro para tipo1 me estaba pasando 1 char
[z.facultad/75.06/emufs.git] / emufs / tipo3.h
index 47b25687b17f43ad4471734efe137b2d20213310..7c8555556bf60c602f577b7206f021d0d90bd5ac 100644 (file)
@@ -1,36 +1,73 @@
-#ifndef _PARAM_CTE_H_
-#define _PARAM_CTE_H_
+/* 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:  mié mar 31 17:26:46 ART 2004
+ * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
+ *----------------------------------------------------------------------------
+ *
+ * $Id$
+ *
+ */
+
+/** \file
+ *
+ * Archivo con bloques y registros de longitud parametrizada.
+ * 
+ * Implementación del archivo con bloques y registros de longitud
+ * parametrizada.
+ *
+ */
+
+#ifndef _EMUFS_TIPO3_H_
+#define _EMUFS_TIPO3_H_
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
 #include "emufs.h"
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
 #include "emufs.h"
+#include "did.h"
+#include "idx.h"
+#include "fsc.h"
 
 
-typedef struct block_free_t{
-       int block;
-       int free_space;
-}BLOCK_FREE_T;
-
-typedef struct block_reg_t{
-       int block;
-       long int id_reg;
-}BLOCK_REG_T;
-
-int leer_registro(EMUFS *, int , void *, unsigned long);
+/** Lee el registro \param id_reg y lo almacena en \param ptr */
+void* emufs_tipo3_leer_registro(EMUFS*, EMUFS_REG_ID, EMUFS_REG_SIZE*, int*);
 
 
-int leer_bloque(EMUFS *, int , void *);
+/** Lee el bloque \param num_bloque y lo almacena en \param ptr */
+void* emufs_tipo3_leer_bloque(EMUFS*, EMUFS_BLOCK_ID, int*);
 
 
-int grabar_registro(EMUFS *, void *, unsigned long );
+/** Graba el registro apuntado por \param ptr en el archivo */
+EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE, int*);
 
 
-int existe_registro(EMUFS *, int);
+/** Graba el bloque apuntado por \param ptr en el archivo */
+int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num_bloque);
 
 
-int buscar_registro(EMUFS *, int);
+int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg);
 
 
-int buscar_lugar(EMUFS *, unsigned long , int *);
+int emufs_tipo3_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg);
+       
+/** Método para modificar un registro */
+EMUFS_REG_ID emufs_tipo3_modificar_registro(EMUFS *emu, EMUFS_REG_ID, void*, EMUFS_REG_SIZE, int*);
 
 
-int get_id(EMUFS *);
+EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *);
 
 
-int grabar_bloque(EMUFS *, void *, int);
+void* emufs_tipo3_leer_registro_raw(struct _emu_fs_t*, EMUFS_REG_ID, EMUFS_REG_SIZE*, int *);
 
 
-int borrar_registro(EMUFS*, int, int);
-#endif
+#endif /* _EMUFS_TIPO3_H_ */