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)
89 /* Si no es un tipo conocido, sale. */
90 if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
94 /* Inicializa parámetros comunes. */
95 efs = (EMUFS*) malloc(sizeof(EMUFS));
100 efs->tam_bloque = tam_bloque;
101 efs->tam_reg = tam_reg;
102 efs->nombre = str_dup(filename);
104 /* Abre archivo de datos. */
105 strcpy(name, filename);
106 strcat(name, ".dat");
107 fp = fopen(name, "w");
115 /* Guarda cabecera común. */
116 fwrite(&tipo, sizeof(EMUFS_Tipo), 1, fp);
118 /* Crea archivo de índice. */
119 if (emufs_idx_crear(efs)) {
126 /* Crea archivo de control de espacio libre. */
127 if (emufs_fsc_crear(efs)) {
134 /* Crea archivo de identificadores borrados (recuperables). */
135 if (emufs_did_crear(efs)) {
142 /* Termina de realizar el trabajo según el tipo de archivo. */
146 /* Asigna punteros a funciones. */
147 if ((err = emufs_tipo1_inicializar(efs))) {
149 PERR("No se pudo inicializar el EMUFS de tipo1");
155 /* Guarda cabeceras propias. */
156 fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
161 /* Asigna punteros a funciones. */
162 emufs_tipo2_inicializar(efs);
166 /* Asigna punteros a funciones. */
167 efs->leer_bloque = emufs_tipo3_leer_bloque;
168 efs->leer_registro = emufs_tipo3_leer_registro;
169 efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
170 efs->grabar_registro = emufs_tipo3_grabar_registro;
171 efs->borrar_registro = emufs_tipo3_borrar_registro;
172 efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
173 efs->modificar_registro = emufs_tipo3_modificar_registro;
174 efs->compactar = emufs_tipo3_compactar;
175 efs->leer_bloque_raw = emufs_tipo3_leer_bloque_raw;
176 /* Guarda cabeceras propias. */
177 fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
178 fwrite(&tam_reg, sizeof(EMUFS_REG_SIZE), 1, fp);
187 EMUFS *emufs_abrir(const char *filename)
195 strcpy(name, filename);
196 strcat(name, ".dat");
198 /* Trato de determinar el tipo de archivo */
199 fp = fopen(name, "r");
200 if (fp == NULL) return NULL;
201 fread(&tipo, sizeof(EMUFS_Tipo), 1, fp);
203 /* Si no es un tipo conocido, sale. */
204 if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
209 /* Inicializa parámetros comunes. */
210 efs = (EMUFS*) malloc(sizeof(EMUFS));
216 efs->nombre = str_dup(filename);
220 /* Lee cabeceras propias. */
221 if (!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) {
227 /* Asigna punteros a funciones. */
228 if ((err = emufs_tipo1_inicializar(efs))) {
229 PERR("No se pudo inicializar el EMUFS de tipo1");
235 /* Asigna punteros a funciones. */
236 emufs_tipo2_inicializar(efs);
239 if ((!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) ||
240 (!fread(&(efs->tam_reg), sizeof(EMUFS_REG_SIZE), 1, fp)))
247 /* Asigna punteros a funciones. */
248 efs->leer_bloque = emufs_tipo3_leer_bloque;
249 efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
250 efs->leer_registro = emufs_tipo3_leer_registro;
251 efs->grabar_registro = emufs_tipo3_grabar_registro;
252 efs->borrar_registro = emufs_tipo3_borrar_registro;
253 efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
254 efs->modificar_registro = emufs_tipo3_modificar_registro;
255 efs->compactar = emufs_tipo3_compactar;
256 efs->leer_bloque_raw = emufs_tipo3_leer_bloque_raw;
264 int emufs_destruir(EMUFS *e)
266 if (e == NULL) return 1;
272 int ver_archivo_FS(EMUFS *emu)
276 char name_f_block_free[255];
278 strcpy(name_f_block_free,emu->nombre);
279 strcat(name_f_block_free,".fsc");
281 if ( (f_block_free = fopen(name_f_block_free,"r"))==NULL ){
282 fprintf(stderr, "no pude abrir el archivo %s\n",name_f_block_free);
285 fprintf(stderr,"BOQUES Y ESPACIO LIBRE\n");
286 fread(®,sizeof(reg),1,f_block_free);
287 while ( !feof(f_block_free) ){
288 fprintf(stderr, "Bloque = %li Espacio libre = %li\n",reg.marker, reg.freespace);
289 fread(®,sizeof(reg),1,f_block_free);
292 fclose(f_block_free);
294 /* Imprimo la lista de bloques/registros */
295 fprintf(stderr, "BLOQUES Y REGISTROS\n");
296 strcpy(name_f_block_free,emu->nombre);
297 strcat(name_f_block_free,".idx");
298 f_block_free = fopen(name_f_block_free, "r");
301 while (!feof(f_block_free)) {
302 if (fread(&r, sizeof(EMUFS_IDX), 1, f_block_free) != 1) continue;
303 fprintf(stderr, "ID %li en bloque %li\n", r.id_reg, r.location);
306 fclose(f_block_free);