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.
50 char *str_dup(const char *s);
52 char *str_dup(const char *s)
55 if (s == NULL) return NULL;
56 tmp = (char *)malloc(sizeof(char)*(strlen(s)+1));
61 int emufs_crear_archivo_auxiliar(const char* name, const char* ext)
66 filename = (char*) malloc(sizeof(char) * (strlen(name) + strlen(ext) + 1));
67 if (filename == NULL) {
68 /* TODO Manejo de errores */
71 strcpy(filename, name);
72 strcat(filename, ext);
73 f = fopen(filename, "w");
76 /* TODO Manejo de errores */
83 EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg)
90 /* Si no es un tipo conocido, sale. */
91 if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
95 /* Inicializa parámetros comunes. */
96 efs = (EMUFS*) malloc(sizeof(EMUFS));
101 efs->tam_bloque = tam_bloque;
102 efs->tam_reg = tam_reg;
103 efs->nombre = str_dup(filename);
106 /* Abre archivo de datos. */
107 strcpy(name, filename);
108 strcat(name, ".dat");
109 fp = fopen(name, "w");
117 /* Guarda cabecera común. */
118 fwrite(&tipo, sizeof(EMUFS_Tipo), 1, fp);
120 /* Crea archivo de índice. */
121 if (emufs_idx_crear(efs)) {
129 /* Crea archivo de control de espacio libre. */
130 if (emufs_fsc_crear(efs)) {
138 /* Crea archivo de identificadores borrados (recuperables). */
139 if (emufs_did_crear(efs)) {
147 /* Termina de realizar el trabajo según el tipo de archivo. */
151 /* Asigna punteros a funciones. */
152 if ((err = emufs_tipo1_inicializar(efs))) {
154 PERR("No se pudo inicializar el EMUFS de tipo1");
161 /* Guarda cabeceras propias. */
162 fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
167 /* Asigna punteros a funciones. */
168 emufs_tipo2_inicializar(efs);
172 /* Asigna punteros a funciones. */
173 efs->leer_bloque = emufs_tipo3_leer_bloque;
174 efs->leer_registro = emufs_tipo3_leer_registro;
175 efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
176 efs->grabar_registro = emufs_tipo3_grabar_registro;
177 efs->borrar_registro = emufs_tipo3_borrar_registro;
178 efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
179 efs->modificar_registro = emufs_tipo3_modificar_registro;
180 efs->compactar = emufs_tipo3_compactar;
181 efs->leer_bloque_raw = emufs_tipo3_leer_bloque_raw;
182 /* Guarda cabeceras propias. */
183 fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
184 fwrite(&tam_reg, sizeof(EMUFS_REG_SIZE), 1, fp);
193 EMUFS *emufs_abrir(const char *filename)
201 strcpy(name, filename);
202 strcat(name, ".dat");
204 /* Trato de determinar el tipo de archivo */
205 fp = fopen(name, "r");
206 if (fp == NULL) return NULL;
207 fread(&tipo, sizeof(EMUFS_Tipo), 1, fp);
209 /* Si no es un tipo conocido, sale. */
210 if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
215 /* Inicializa parámetros comunes. */
216 efs = (EMUFS*) malloc(sizeof(EMUFS));
222 efs->nombre = str_dup(filename);
226 /* Lee cabeceras propias. */
227 if (!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) {
233 /* Asigna punteros a funciones. */
234 if ((err = emufs_tipo1_inicializar(efs))) {
235 PERR("No se pudo inicializar el EMUFS de tipo1");
241 /* Asigna punteros a funciones. */
242 emufs_tipo2_inicializar(efs);
245 if ((!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) ||
246 (!fread(&(efs->tam_reg), sizeof(EMUFS_REG_SIZE), 1, fp)))
253 /* Asigna punteros a funciones. */
254 efs->leer_bloque = emufs_tipo3_leer_bloque;
255 efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
256 efs->leer_registro = emufs_tipo3_leer_registro;
257 efs->grabar_registro = emufs_tipo3_grabar_registro;
258 efs->borrar_registro = emufs_tipo3_borrar_registro;
259 efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
260 efs->modificar_registro = emufs_tipo3_modificar_registro;
261 efs->compactar = emufs_tipo3_compactar;
262 efs->leer_bloque_raw = emufs_tipo3_leer_bloque_raw;
270 int emufs_destruir(EMUFS *e)
272 if (e == NULL) return 1;
278 int ver_archivo_FS(EMUFS *emu)
282 char name_f_block_free[255];
284 strcpy(name_f_block_free,emu->nombre);
285 strcat(name_f_block_free,".fsc");
287 if ( (f_block_free = fopen(name_f_block_free,"r"))==NULL ){
288 fprintf(stderr, "no pude abrir el archivo %s\n",name_f_block_free);
291 fprintf(stderr,"BOQUES Y ESPACIO LIBRE\n");
292 fread(®,sizeof(reg),1,f_block_free);
293 while ( !feof(f_block_free) ){
294 fprintf(stderr, "Bloque = %li Espacio libre = %li\n",reg.marker, reg.freespace);
295 fread(®,sizeof(reg),1,f_block_free);
298 fclose(f_block_free);
300 /* Imprimo la lista de bloques/registros */
301 fprintf(stderr, "BLOQUES Y REGISTROS\n");
302 strcpy(name_f_block_free,emu->nombre);
303 strcat(name_f_block_free,".idx");
304 f_block_free = fopen(name_f_block_free, "r");
307 while (!feof(f_block_free)) {
308 if (fread(&r, sizeof(EMUFS_IDX), 1, f_block_free) != 1) continue;
309 fprintf(stderr, "ID %li en bloque %li\n", r.id_reg, r.location);
312 fclose(f_block_free);
317 int debug_ver_estadisticas(EMUFS* efs)
319 EMUFS_Estadisticas s = efs->leer_estadisticas(efs);
321 printf("ESTADISTICAS:\n");
322 printf("=============\n");
323 printf("Tamaño del archivo: %lu bytes\n", s.tam_archivo);
324 printf("Tamaño de datos (incluye espacio libre): %lu bytes (%.2f %%)\n",
325 s.tam_archivo - s.tam_info_control_dat,
326 (s.tam_archivo - s.tam_info_control_dat) * 100.0
327 / (float) s.tam_archivo);
328 printf("Tamaño de info de control total: %lu bytes (%.2f %%)\n",
329 s.tam_info_control_dat + s.tam_archivos_aux,
330 (s.tam_info_control_dat + s.tam_archivos_aux) * 100.0
331 / (float) s.tam_archivo);
332 printf("Tamaño de los archivos auxiliares: %lu bytes\n",
334 printf("Tamaño de la información de control en el .dat: %lu bytes\n",
335 s.tam_info_control_dat);
336 printf("Total de espacio libre: %lu bytes\n", s.total_fs);
337 printf("Máximo espacio libre en bloque: %lu bytes\n", s.max_fs);
338 printf("Mínimo espacio libre en bloque: %lu bytes\n", s.min_fs);
339 printf("Media del espacio libre por bloque: %lu bytes\n", s.media_fs);
340 printf("Cantidad de registros: %lu\n", s.cant_registros);
341 printf("Cantidad de bloques: %lu\n", s.cant_bloques);
345 int emufs_agregar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque)
350 /* Verifico que no existe un indice con el mismo nombre */
351 /* y que no exista un indice primario */
352 PERR("Agregando indice");
355 if (strcmp(tmp->nombre, nombre)==0) {
359 if ((funcion == IND_PRIMARIO) && (tmp->funcion == funcion)) {
369 PERR("Ya existe un indice con el mismo nombre!");
372 PERR("EMUFS ya tiene indice primario!!");
377 /* Creo el nuevo indice */
378 PERR("Creando indice\n");
379 tmp = emufs_indice_crear(emu, nombre, funcion, tipo, tipo_dato, offset, tam_bloque);
382 PERR("NO SE PUDO CREAR INDICE!!!");
386 if (emu->indices==NULL)
389 tmp->sig = emu->indices;
395 INDICE_DATO *emufs_buscar_registros(EMUFS *emu, char *indice, char *data, int *cant)
402 if (strcmp(tmp->nombre, indice) == 0) break;
407 PERR("NO EXISTE EL INDICE");
412 PERR("GENERANDO CLAVE")
414 k = emufs_indice_generar_clave_desde_valor(tmp, data);
416 return tmp->buscar_entradas(tmp, k, cant);