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 typedef struct _data_indices_ {
52 INDICE_FUNCION funcion;
54 INDICE_TIPO_DATO tipo_dato;
56 unsigned int tam_bloque;
59 int guardar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque);
61 char *str_dup(const char *s);
63 char *str_dup(const char *s)
66 if (s == NULL) return NULL;
67 tmp = (char *)malloc(sizeof(char)*(strlen(s)+1));
72 int emufs_crear_archivo_auxiliar(const char* name, const char* ext)
77 filename = (char*) malloc(sizeof(char) * (strlen(name) + strlen(ext) + 1));
78 if (filename == NULL) {
79 /* TODO Manejo de errores */
82 strcpy(filename, name);
83 strcat(filename, ext);
84 f = fopen(filename, "w");
87 /* TODO Manejo de errores */
94 EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg)
96 char name[255], otroname[255];
101 /* Si no es un tipo conocido, sale. */
102 if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
106 /* Inicializa parámetros comunes. */
107 efs = (EMUFS*) malloc(sizeof(EMUFS));
112 efs->tam_bloque = tam_bloque;
113 efs->tam_reg = tam_reg;
114 efs->nombre = str_dup(filename);
117 sprintf(otroname, "%s.info", efs->nombre);
118 fp = fopen(otroname, "w");
120 PERR("CARAJO!, NO PUEDO CREAR INFO");
123 fwrite(&err, 1, sizeof(int), fp);
127 /* Abre archivo de datos. */
128 strcpy(name, filename);
129 strcat(name, ".dat");
130 fp = fopen(name, "w");
138 /* Guarda cabecera común. */
139 fwrite(&tipo, sizeof(EMUFS_Tipo), 1, fp);
141 /* Crea archivo de índice. */
142 if (emufs_idx_crear(efs)) {
150 /* Crea archivo de control de espacio libre. */
151 if (emufs_fsc_crear(efs)) {
159 /* Crea archivo de identificadores borrados (recuperables). */
160 if (emufs_did_crear(efs)) {
168 /* Termina de realizar el trabajo según el tipo de archivo. */
172 /* Asigna punteros a funciones. */
173 if ((err = emufs_tipo1_inicializar(efs))) {
175 PERR("No se pudo inicializar el EMUFS de tipo1");
182 /* Guarda cabeceras propias. */
183 fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
188 /* Asigna punteros a funciones. */
189 emufs_tipo2_inicializar(efs);
193 /* Asigna punteros a funciones. */
194 if ((err = emufs_tipo3_inicializar(efs))) {
196 PERR("No se pudo inicializar el EMUFS de tipo3");
202 /* Guarda cabeceras propias. */
203 fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
204 fwrite(&tam_reg, sizeof(EMUFS_REG_SIZE), 1, fp);
208 /* Asigna punteros a funciones. */
209 if ((err = emufs_tipo4_inicializar(efs))) {
211 PERR("No se pudo inicializar el EMUFS de tipo4");
217 /* Guarda cabeceras propias. */
218 fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
222 /* Asigna punteros a funciones. */
223 if ((err = emufs_tipo5_inicializar(efs))) {
225 PERR("No se pudo inicializar el EMUFS de tipo5");
231 /* Guarda cabeceras propias. */
232 fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
233 fwrite(&tam_reg, sizeof(EMUFS_REG_SIZE), 1, fp);
241 EMUFS *emufs_abrir(const char *filename)
249 strcpy(name, filename);
250 strcat(name, ".dat");
252 /* Trato de determinar el tipo de archivo */
253 fp = fopen(name, "r");
254 if (fp == NULL) return NULL;
255 fread(&tipo, sizeof(EMUFS_Tipo), 1, fp);
257 /* Si no es un tipo conocido, sale. */
258 if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
263 /* Inicializa parámetros comunes. */
264 efs = (EMUFS*) malloc(sizeof(EMUFS));
270 efs->nombre = str_dup(filename);
274 /* Lee cabeceras propias. */
275 if (!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) {
281 /* Asigna punteros a funciones. */
282 if ((err = emufs_tipo1_inicializar(efs))) {
283 PERR("No se pudo inicializar el EMUFS de tipo1");
289 /* Asigna punteros a funciones. */
290 emufs_tipo2_inicializar(efs);
293 if ((!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) ||
294 (!fread(&(efs->tam_reg), sizeof(EMUFS_REG_SIZE), 1, fp)))
301 /* Asigna punteros a funciones. */
302 efs->leer_bloque = emufs_tipo3_leer_bloque;
303 efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
304 efs->leer_registro = emufs_tipo3_leer_registro;
305 efs->grabar_registro = emufs_tipo3_grabar_registro;
306 efs->borrar_registro = emufs_tipo3_borrar_registro;
307 efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
308 efs->modificar_registro = emufs_tipo3_modificar_registro;
309 efs->compactar = emufs_tipo3_compactar;
310 efs->leer_bloque_raw = emufs_tipo3_leer_bloque_raw;
318 int emufs_destruir(EMUFS *e)
322 if (e == NULL) return 1;
329 emufs_indice_destruir(e, cur);
337 int ver_archivo_FS(EMUFS *emu)
341 char name_f_block_free[255];
343 strcpy(name_f_block_free,emu->nombre);
344 strcat(name_f_block_free,".fsc");
346 if ( (f_block_free = fopen(name_f_block_free,"r"))==NULL ){
347 fprintf(stderr, "no pude abrir el archivo %s\n",name_f_block_free);
350 fprintf(stderr,"BOQUES Y ESPACIO LIBRE\n");
351 fread(®,sizeof(reg),1,f_block_free);
352 while ( !feof(f_block_free) ){
353 fprintf(stderr, "Bloque = %li Espacio libre = %li\n",reg.marker, reg.freespace);
354 fread(®,sizeof(reg),1,f_block_free);
357 fclose(f_block_free);
359 /* Imprimo la lista de bloques/registros */
360 fprintf(stderr, "BLOQUES Y REGISTROS\n");
361 strcpy(name_f_block_free,emu->nombre);
362 strcat(name_f_block_free,".idx");
363 f_block_free = fopen(name_f_block_free, "r");
366 while (!feof(f_block_free)) {
367 if (fread(&r, sizeof(EMUFS_IDX), 1, f_block_free) != 1) continue;
368 fprintf(stderr, "ID %li en bloque %li\n", r.id_reg, r.location);
371 fclose(f_block_free);
376 int debug_ver_estadisticas(EMUFS* efs)
378 EMUFS_Estadisticas s = efs->leer_estadisticas(efs);
380 printf("ESTADISTICAS:\n");
381 printf("=============\n");
382 printf("Tamaño del archivo: %lu bytes\n", s.tam_archivo);
383 printf("Tamaño de datos (incluye espacio libre): %lu bytes (%.2f %%)\n",
384 s.tam_archivo - s.tam_info_control_dat,
385 (s.tam_archivo - s.tam_info_control_dat) * 100.0
386 / (float) s.tam_archivo);
387 printf("Tamaño de info de control total: %lu bytes (%.2f %%)\n",
388 s.tam_info_control_dat + s.tam_archivos_aux,
389 (s.tam_info_control_dat + s.tam_archivos_aux) * 100.0
390 / (float) s.tam_archivo);
391 printf("Tamaño de los archivos auxiliares: %lu bytes\n",
393 printf("Tamaño de la información de control en el .dat: %lu bytes\n",
394 s.tam_info_control_dat);
395 printf("Total de espacio libre: %lu bytes\n", s.total_fs);
396 printf("Máximo espacio libre en bloque: %lu bytes\n", s.max_fs);
397 printf("Mínimo espacio libre en bloque: %lu bytes\n", s.min_fs);
398 printf("Media del espacio libre por bloque: %lu bytes\n", s.media_fs);
399 printf("Cantidad de registros: %lu\n", s.cant_registros);
400 printf("Cantidad de bloques: %lu\n", s.cant_bloques);
404 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, int str_offset)
409 /* Verifico que no existe un indice con el mismo nombre */
410 /* y que no exista un indice primario */
411 PERR("Agregando indice");
414 if (strcmp(tmp->nombre, nombre)==0) {
418 if ((funcion == IND_PRIMARIO) && (tmp->funcion == funcion)) {
428 PERR("Ya existe un indice con el mismo nombre!");
431 PERR("EMUFS ya tiene indice primario!!");
436 /* Creo el nuevo indice */
437 PERR("Creando indice\n");
438 tmp = emufs_indice_crear(emu, nombre, funcion, tipo, tipo_dato, offset, tam_bloque, str_offset);
440 /* Guardo la info del indice para poder abrir despues el archivo */
441 guardar_indice(emu, nombre, funcion, tipo, tipo_dato, offset, tam_bloque);
444 PERR("NO SE PUDO CREAR INDICE!!!");
448 if (emu->indices==NULL)
451 tmp->sig = emu->indices;
457 INDICE_DATO *emufs_buscar_registros(EMUFS *emu, char *indice, char *data, int *cant)
464 if (strcmp(tmp->nombre, indice) == 0) break;
469 PERR("NO EXISTE EL INDICE");
474 PERR("GENERANDO CLAVE")
476 k = emufs_indice_generar_clave_desde_valor(tmp, data);
478 return tmp->buscar_entradas(tmp, k, cant);
481 int guardar_indice(EMUFS *emu, char *nombre, INDICE_FUNCION funcion, INDICE_TIPO tipo, INDICE_TIPO_DATO tipo_dato, unsigned int offset, unsigned int tam_bloque)
485 int cant; /* cantidad de indices hasta el momento */
488 sprintf(filename, "%s.info", emu->nombre);
489 fp = fopen(filename, "r+");
497 fread(&cant, 1, sizeof(int), fp);
498 indices = malloc((cant+1)*sizeof(t_Indice));
499 fread(indices, cant, sizeof(t_Indice), fp);
500 memset(indices[cant].nombre, 0, 50);
501 strcpy(indices[cant].nombre, nombre);
502 indices[cant].funcion = funcion;
503 indices[cant].tipo = tipo;
504 indices[cant].tipo_dato = tipo_dato;
505 indices[cant].offset = offset;
506 indices[cant].tam_bloque = tam_bloque;
508 fseek(fp, SEEK_SET, 0);
510 fwrite(&cant, 1, sizeof(int), fp);
511 fwrite(indices, cant, sizeof(t_Indice), fp);
517 /*crea un bloque y devuelve en numero del mismo*/
518 EMUFS_BLOCK_ID emufs_create_new_block(EMUFS *emu)
525 /* obtengo nombre del archivo */
526 strcpy(name, emu->nombre);
529 if ( (fp=fopen(name,"a+")) == NULL ){
530 PERR("NO SE PUDO ABRIR EL ARCHIVO");
534 dummy = (char*)malloc(emu->tam_bloque);
535 memset(dummy, 0, emu->tam_bloque);
536 fwrite(dummy, emu->tam_bloque, 1, fp);
538 case T1: num = (ftell(fp)-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE))/emu->tam_bloque;
540 case T3: num = (ftell(fp)-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE)-sizeof(EMUFS_REG_SIZE))/emu->tam_bloque;
547 /*devuelve un numero de bloque siguiente al ultimo*/
548 EMUFS_BLOCK_ID emufs_get_new_block_number(EMUFS *emu)
552 EMUFS_BLOCK_ID num=0;
554 /* obtengo nombre del archivo */
555 strcpy(name, emu->nombre);
557 if ( (fp=fopen(name,"r")) == NULL ){
558 PERR("NO SE PUDO ABRIR EL ARCHIVO");
561 if ( fseek(fp, 0, SEEK_END)!=0 ){
562 PERR("NO PUDE HACER EL SEEK");
566 case T1: num = (ftell(fp)-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE))/emu->tam_bloque;
567 if (ftell(fp) == sizeof(EMUFS_Tipo)+sizeof(EMUFS_BLOCK_SIZE)) num = 0;
569 case T3: num = (ftell(fp)-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE)-sizeof(EMUFS_REG_SIZE))/emu->tam_bloque;
570 if (ftell(fp) == sizeof(EMUFS_Tipo)+sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE)) num = 0;
576 INDICE *emufs_buscar_indice_por_nombre(EMUFS *emu, const char *nombre)
582 if (strcmp(tmp->nombre, nombre) == 0) break;