]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/emufs.h
Ups, faltaban cosas
[z.facultad/75.06/emufs.git] / emufs / emufs.h
1 /* vim: set noexpandtab tabstop=4 shiftwidth=4 wrap:
2  *----------------------------------------------------------------------------
3  *                                  emufs
4  *----------------------------------------------------------------------------
5  * This file is part of emufs.
6  *
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
10  * version.
11  *
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
15  * details.
16  *
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  *----------------------------------------------------------------------------
26  *
27  * $Id$
28  *
29  */
30
31 /** \file
32  *
33  * Estructura general de un archivo <em>abstracto</em> de emufs.
34  * 
35  * Interfaz de la estructura abstracta que representa cualquiera de los tipos
36  * de archivo implementados.
37  *
38  */
39
40 #ifndef _EMUFS_H_
41 #define _EMUFS_H_
42
43 #include <stdlib.h>
44 #include <stdio.h>
45
46 #ifdef DEBUG
47         /** Imprime un mensaje de debug por pantalla. */
48         #define PERR(msg) fprintf(stderr, "%s:%d> %s.\n",__FILE__, __LINE__, msg);
49 #else
50         #define PERR(msg) ;
51 #endif /* DEBUG */
52
53 /** Tipo de archivo. */
54 typedef enum {
55         T1, /**< Archivo de bloque parametrizado y registro variable. */
56         T2, /**< Archivo sin bloques y registros variables. */
57         T3  /**< Archivo de bloque parametrizado y registro fijo. */
58 } EMUFS_Tipo;
59
60 /** Tipo de identificador de registro. */
61 typedef unsigned long EMUFS_REG_ID;
62
63 /** Tipo de tamaño de registro. */
64 typedef unsigned long EMUFS_REG_SIZE;
65
66 /** Tipo de identificador de bloque. */
67 typedef unsigned long EMUFS_BLOCK_ID;
68
69 /** Tipo de tamaño de bloque. */
70 typedef unsigned long EMUFS_BLOCK_SIZE;
71
72 /** Tipo de espacio libre. */
73 typedef unsigned long EMUFS_FREE;
74
75 /** Tipo de offset. */
76 typedef unsigned long EMUFS_OFFSET;
77
78 /** Constante para indicar el valor especial de un ID inválido.
79  *
80  *  El uso típico es para indicar que no se encontró el ID en una búsqueda.
81  */
82 #define EMUFS_NOT_FOUND -1ul
83
84 /** Estadisticas de archivo */
85 typedef struct _emufs_est_t {
86         unsigned long tam_archivo;
87 } EMUFS_Estadisticas;
88
89 /** Tipo Abstracto para menajo de archivos.
90  *
91  *  Esta estructura es utilizada para acceder a cualquier tipo de archivo.
92  *
93  *  Cuando se requiere abrir o crear un nuevo archivo, esta estrucura contendrá los
94  *  punteros a los métodos de dicho archivo, por lo que desde el código que utilice
95  *  esta estructura no deberá ser modificado por cada tipo de archivo.
96  *
97  *  Por ejemplo:
98  *  \code
99  *    EMUFS *fs = emufs_abrir("archivo");
100  *    fs->leer_registro(id, ptr, size);
101  *  \endcode
102  *
103  *  Este ejemplo funcionará sin importar de que tipo de archivo se trate, sin
104  *  la necesidad de que el usuario tenga que hacer una selección previa del tipo
105  *  para llamar al método correspondiente a cada tipo de archivo.
106  */
107 typedef struct _emu_fs_t {
108         EMUFS_Tipo tipo;
109         EMUFS_BLOCK_SIZE tam_bloque; /**< Tamaño de bloque. 0 Si no tiene bloques */
110         EMUFS_REG_SIZE tam_reg; /**< Tamaño de registro. 0 Si son registros variables */        
111         void* (*leer_bloque)(struct _emu_fs_t*, EMUFS_BLOCK_ID, int*); /**< Método para leer un bloque */
112         void* (*leer_registro)(struct _emu_fs_t*, EMUFS_REG_ID, EMUFS_REG_SIZE*, int*); /**< Método para leer un registro */
113         EMUFS_REG_ID (*grabar_registro)(struct _emu_fs_t*, void*, EMUFS_REG_SIZE, int*); /**< Método para grabar un registro */
114         EMUFS_REG_ID (*modificar_registro)(struct _emu_fs_t*, EMUFS_REG_ID, void*, EMUFS_REG_SIZE, int*); /**< Método para modificar un registro */
115         int (*borrar_registro)(struct _emu_fs_t*, EMUFS_REG_ID); /**< Método para borrar un registro */
116         EMUFS_Estadisticas (*leer_estadisticas)(struct _emu_fs_t *);
117         char *nombre; /**< Nombre del archivo */
118 } EMUFS;
119
120 /** Crea un archivo auxiliar. */
121 int emufs_crear_archivo_auxiliar(const char*, const char*);
122
123 /** Crea un nuevo archivo EMUFS.
124  *
125  *  Un archivo EMUFS está compuesto por 4 archivos a nivel del SO.
126  *  Un archivo principal con extensión .dat y 3 archivos auxiliares para
127  *  manejo interno.
128  *
129  *  El parámetro filename que recive esta función en el nombre virtual que se
130  *  utilizará, ya que las extensiones serán puestas automáticamente for EMUFS.
131  *
132  *  Un ejemplo:
133  *  \code
134  *  EMUFS *fp  emufs_crear("archivo", T3, 100, 100);
135  *  \endcode
136  *
137  *  En el ejemplo anterior se tiene que nuestro filesystem virtual se llamará
138  *  archivo.
139  *
140  *  Los últimos 2 parámetros serán ignorados si el tipo de archivo no utiliza
141  *  dicho parámetro.
142  *
143  *  \param filename Nombre del archivo virtual.
144  *  \param tipo Tipo de archivo.
145  *  \param tam_bloque Tamaño del bloque.
146  *  \param tam_reg Tamaño del registro.
147  */
148 EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo,EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg);
149
150 /** Abre un archivo EMUFS.
151  *
152  *  Abre un archivo, determinando de que tipo se trata.
153  *
154  *  \param filename Nombre del archivo virtual.
155  */
156 EMUFS *emufs_abrir(const char *filename);
157
158 /** Libera un archivo virtual */
159 int emufs_destruir(EMUFS *e);
160
161 int ver_archivo_FS(EMUFS *emu);
162
163 #endif /* _EMUFS_H_ */