1 /* vim: set noexpandtab tabstop=4 shiftwidth=4:
2 *----------------------------------------------------------------------------
4 *----------------------------------------------------------------------------
5 * This file is part of emufs.
7 * emufs is free software; you can redistribute it and/or modify it under the
8 * terms of the GNU General Public License as published by the Free Software
9 * Foundation; either version 2 of the License, or (at your option) any later
12 * emufs is distributed in the hope that it will be useful, but WITHOUT ANY
13 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
17 * You should have received a copy of the GNU General Public License along
18 * with emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
19 * Place, Suite 330, Boston, MA 02111-1307 USA
20 *----------------------------------------------------------------------------
21 * Creado: mié mar 31 17:26:46 ART 2004
22 * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
23 * Ricardo Markiewicz <rmarkie@fi.uba.ar>
24 * Leandro Lucarella <llucare@fi.uba.ar>
25 *----------------------------------------------------------------------------
33 * Estructura general de un archivo <em>abstracto</em> de emufs.
35 * Interfaz de la estructura abstracta que representa cualquiera de los tipos
36 * de archivo implementados.
46 /** Tipo de archivo. */
48 T1, /**< Archivo de bloque parametrizado y registro variable. */
49 T2, /**< Archivo sin bloques y registros variables. */
50 T3 /**< Archivo de bloque parametrizado y registro fijo. */
53 /** Tipo Abstracto para menajo de archivos.
55 * Esta estructura es utilizada para acceder a cualquier tipo de archivo.
57 * Cuando se requiere abrir o crear un nuevo archivo, esta estrucura contendrá los
58 * punteros a los métodos de dicho archivo, por lo que desde el código que utilice
59 * esta estructura no deberá ser modificado por cada tipo de archivo.
63 * EMUFS *fs = emufs_abrir("archivo");
64 * fs->leer_registro(id, ptr, size);
67 * Este ejemplo funcionará sin importar de que tipo de archivo se trate, sin
68 * la necesidad de que el usuario tenga que hacer una selección previa del tipo
69 * para llamar al método correspondiente a cada tipo de archivo.
71 typedef struct _emu_fs_t {
73 unsigned long tam_bloque; /**< Tamaño de bloque. 0 Si no tiene bloques */
74 int (*leer_bloque)(struct _emu_fs_t *, int, void *); /**< Método para leer un bloque */
75 int (*leer_registro)(struct _emu_fs_t *, int, void *, unsigned long); /**< Método para leer un registro */
76 int (*grabar_registro)(struct _emu_fs_t *, void *, unsigned long ); /**< Método para grabar un registro */
77 int (*borrar_registro)(struct _emu_fs_t *, int, unsigned long ); /**< Método para borrar un registro */
78 char *nombre; /**< Nombre del archivo */
81 /** Crea un nuevo archivo EMUFS.
83 * Un archivo EMUFS está compuesto por 4 archivos a nivel del sistema operativo.
84 * Un archivo principal con extensión .dat y 3 archivos auxiliares para manejo interno.
86 * El parámetro filename que recive esta función en el nombre virtual que se utilizará, ya
87 * que las extensiones serán puestas automáticamente for EMUFS.
91 * EMUFS *fp emufs_crear("archivo", T3, 100, 100);
94 * En el ejemplo anterior se tiene que nuestro filesystem virtual se llamará archivo.
96 * Los últimos 2 parámetros serán ignorados si el tipo de archivo no utiliza dicho parámetro.
98 * \param filename Nombre del archivo virtual.
99 * \param tipo Tipo de archivo.
100 * \param tam_bloque Tamaño del bloque.
101 * \param tam_reg Tamaño del registro.
103 EMUFS *emufs_crear(const char *filename, char tipo, unsigned int tam_bloque, unsigned int tam_reg);
105 /** Abre un archivo EMUFS.
107 * Abre un archivo, determinando de que tipo se trata.
109 * \param filename Nombre del archivo virtual.
111 EMUFS *emufs_abrir(const char *filename);
113 /** Libera un archivo virtual */
114 int emufs_destruir(EMUFS *e);
116 int ver_archivo_FS(EMUFS *emu);
118 #endif /* _EMUFS_H_ */