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 * Implementación de la estructura abstracta que representa cualquiera de los
36 * tipos de archivo implementados. Se incluyen funciones tipo <em>factory</em>
37 * para crear un archivo, abrirlo y destruirlo.
49 char *str_dup(const char *s);
51 char *str_dup(const char *s)
54 if (s == NULL) return NULL;
55 tmp = (char *)malloc(sizeof(char)*(strlen(s)+1));
60 int emufs_crear_archivo_auxiliar(const char* name, const char* ext)
65 filename = (char*) malloc(sizeof(char) * (strlen(name) + strlen(ext) + 1));
66 if (filename == NULL) {
67 /* TODO Manejo de errores */
70 strcpy(filename, name);
71 strcat(filename, ext);
72 f = fopen(filename, "w");
75 /* TODO Manejo de errores */
82 EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg)
88 /* Si no es un tipo conocido, sale. */
89 if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
93 /* Inicializa parámetros comunes. */
94 efs = (EMUFS*) malloc(sizeof(EMUFS));
99 efs->tam_bloque = tam_bloque;
100 efs->tam_reg = tam_reg;
101 efs->nombre = str_dup(filename);
103 /* Abre archivo de datos. */
104 strcpy(name, filename);
105 strcat(name, ".dat");
106 fp = fopen(name, "w");
114 /* Guarda cabecera común. */
115 fwrite(&tipo, sizeof(EMUFS_Tipo), 1, fp);
117 /* Crea archivo de índice. */
118 if (emufs_idx_crear(efs)) {
125 /* Crea archivo de control de espacio libre. */
126 if (emufs_fsc_crear(efs)) {
133 /* Crea archivo de identificadores borrados (recuperables). */
134 if (emufs_did_crear(efs)) {
141 /* Termina de realizar el trabajo según el tipo de archivo. */
145 /* Asigna punteros a funciones. */
146 emufs_tipo1_inicializar(efs);
148 /* Guarda cabeceras propias. */
149 fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
154 /* Asigna punteros a funciones. */
155 emufs_tipo2_inicializar(efs);
159 /* Asigna punteros a funciones. */
160 efs->leer_bloque = emufs_tipo3_leer_bloque;
161 efs->leer_registro = emufs_tipo3_leer_registro;
162 efs->grabar_registro = emufs_tipo3_grabar_registro;
163 efs->borrar_registro = emufs_tipo3_borrar_registro;
164 efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
165 efs->modificar_registro = emufs_tipo3_modificar_registro;
166 /* Guarda cabeceras propias. */
167 fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
168 fwrite(&tam_reg, sizeof(EMUFS_REG_SIZE), 1, fp);
177 EMUFS *emufs_abrir(const char *filename)
184 strcpy(name, filename);
185 strcat(name, ".dat");
187 /* Trato de determinar el tipo de archivo */
188 fp = fopen(name, "r");
189 if (fp == NULL) return NULL;
190 fread(&tipo, sizeof(EMUFS_Tipo), 1, fp);
192 /* Si no es un tipo conocido, sale. */
193 if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
198 /* Inicializa parámetros comunes. */
199 efs = (EMUFS*) malloc(sizeof(EMUFS));
205 efs->nombre = str_dup(filename);
209 /* Asigna punteros a funciones. */
210 emufs_tipo1_inicializar(efs);
211 /* Lee cabeceras propias. */
212 if (!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) {
220 /* Asigna punteros a funciones. */
221 emufs_tipo2_inicializar(efs);
224 if ((!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) ||
225 (!fread(&(efs->tam_reg), sizeof(EMUFS_REG_SIZE), 1, fp)))
232 /* Asigna punteros a funciones. */
233 efs->leer_bloque = emufs_tipo3_leer_bloque;
234 efs->leer_registro = emufs_tipo3_leer_registro;
235 efs->grabar_registro = emufs_tipo3_grabar_registro;
236 efs->borrar_registro = emufs_tipo3_borrar_registro;
237 efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
238 efs->modificar_registro = emufs_tipo3_modificar_registro;
246 int emufs_destruir(EMUFS *e)
248 if (e == NULL) return 1;
254 int ver_archivo_FS(EMUFS *emu)
258 char name_f_block_free[255];
260 strcpy(name_f_block_free,emu->nombre);
261 strcat(name_f_block_free,".fsc");
263 if ( (f_block_free = fopen(name_f_block_free,"r"))==NULL ){
264 fprintf(stderr, "no pude abrir el archivo %s\n",name_f_block_free);
267 fread(®,sizeof(reg),1,f_block_free);
268 while ( !feof(f_block_free) ){
269 fprintf(stderr, " Bloque = %li Espacio libre = %li\n",reg.marker, reg.freespace);
270 fread(®,sizeof(reg),1,f_block_free);
273 fclose(f_block_free);
275 /* Imprimo la lista de bloques/registros */
276 fprintf(stderr, "BLOQUES Y REGISTROS\n");
277 strcpy(name_f_block_free,emu->nombre);
278 strcat(name_f_block_free,".idx");
281 f_block_free = fopen(name_f_block_free, "r");
282 fread(&r, sizeof(EMUFS_IDX), 1, f_block_free);
283 while (!feof(f_block_free)) {
284 fprintf(stderr, "ID %li en bloque %li\n", r.id_reg, r.location);
285 fread(&r, sizeof(EMUFS_IDX), 1, f_block_free);
287 fclose(f_block_free);