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: jue abr 8 18:10:35 ART 2004
22 * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
23 * Leandro Lucarella <llucare@fi.uba.ar>
24 *----------------------------------------------------------------------------
32 * Manejo de archivos de índice de registros.
34 * Implementación del manejo de archivos de índice de registros.
43 /* Objetivo: Realiza una apertura de un archivo indice y devuelve el handler. */
44 FILE* emufs_idx_abrir(EMUFS* efs, const char* mode)
49 filename = (char*) malloc(sizeof(char) * (strlen(efs->nombre)
50 + strlen(EMUFS_IDX_EXT) + 1));
51 if (filename == NULL) {
52 /* TODO Manejo de errores */
55 strcpy(filename, efs->nombre);
56 strcat(filename, EMUFS_IDX_EXT);
57 f = fopen(filename, mode);
62 /* Crea un archivo indice de registros */
63 int emufs_idx_crear(EMUFS *efs)
65 return emufs_crear_archivo_auxiliar(efs->nombre, EMUFS_IDX_EXT);
68 /* Devuelve el mayor id de registro utilizado so far en el archivo de datos, revisando el indice. */
69 EMUFS_REG_ID emufs_idx_buscar_mayor_id(EMUFS *emu)
74 char name_f_idx[255]; /* TODO usar malloc para no limitar el tamaño de nombre de archivo */
77 strcpy(name_f_idx,emu->nombre);
78 strcat(name_f_idx, EMUFS_IDX_EXT);
80 if ( (f_idx = fopen(name_f_idx,"r")) == NULL) return -1; /*ERROR*/
81 while ( !feof(f_idx) ){
82 /* Me aseguro de leer la cantidad de bytes correcta */
83 if (fread(®,sizeof(EMUFS_IDX),1,f_idx) != 1) continue;
84 if (reg.n_idreg >= max) {
97 /* busca el registro ID en el archivo ".idx" y devuelve el nro de bloque en el que se encuentra */
98 EMUFS_BLOCK_ID emufs_idx_buscar_registro(EMUFS *emu, EMUFS_REG_ID n_IdReg)
102 char name_f_idx[255];
103 unsigned short int b_Found = 0;
105 strcpy(name_f_idx,emu->nombre);
106 strcat(name_f_idx, EMUFS_IDX_EXT);
108 if ( (f_idx = fopen(name_f_idx,"r")) == NULL) return -1; /*ERROR*/
110 while (!feof(f_idx) && !b_Found){
111 if (fread(®,sizeof(EMUFS_IDX),1,f_idx) != 1) continue;
112 if (reg.n_idreg == n_IdReg) b_Found = 1;
117 /* Sino lo encontre devuelvo uno, otherwise el offset o bloque */
121 return(reg.n_location);
124 /* agrega un registro al final del archivo */
125 int emufs_idx_agregar(EMUFS *emu, EMUFS_REG_ID n_idreg, EMUFS_BLOCK_ID n_location)
129 char name_f_idx[255];
131 strcpy(name_f_idx,emu->nombre);
132 strcat(name_f_idx, EMUFS_IDX_EXT);
134 if ( (f_idx = fopen(name_f_idx,"a+"))==NULL ) return -1;
136 /* Note: Location = Bloque para Tipo 1 y 3, Offset para Tipo 2 */
137 reg.n_idreg = n_idreg;
138 reg.n_location = n_location;
139 fwrite(®,sizeof(EMUFS_IDX),1,f_idx);
144 /* Borra un registro del indice dada la eliminacion fisica de un reg */
145 int emufs_idx_borrar(EMUFS *emu, EMUFS_REG_ID n_IdReg)
148 EMUFS_IDX reg, *buffer;
149 char name_f_idx[255];
150 long actual, final, cant, i, tam, a;
152 strcpy(name_f_idx,emu->nombre);
153 strcat(name_f_idx, EMUFS_IDX_EXT);
155 if ( (f_idx = fopen(name_f_idx,"a+"))==NULL ) return -1;
158 while ( !feof(f_idx) ){
159 /*busco cual tengo que borrar*/
160 if ( fread(®, sizeof(EMUFS_IDX), 1, f_idx) != 1 ) continue;
161 if ( reg.n_idreg == n_IdReg )
165 /* me paro en el que tengo que borrar */
166 fseek(f_idx, -sizeof(EMUFS_IDX), SEEK_CUR);
167 actual = ftell(f_idx); /* Guardo la posicion actual */
168 printf(" actual = %ld\n",actual);
169 fseek(f_idx, 0, SEEK_END); /* me voy al final */
170 final = ftell(f_idx); /* veo cuando ocupa el archivo */
171 fseek(f_idx, actual, SEEK_SET);/* vuelvo al lugar desde donde quiero justificar */
172 /*calculo cuantos registros tengo que mover */
173 cant = (final-actual)/sizeof(EMUFS_IDX);
174 buffer = (EMUFS_IDX*)malloc((cant)*sizeof(EMUFS_IDX));
175 printf("sizeof buffer = %ld\n",(cant-1)*sizeof(EMUFS_IDX));
176 /*apunto al siguiente del que quiero borrar*/
177 final = actual + sizeof(EMUFS_IDX);
178 /*leo todos los que quedan*/
179 fseek(f_idx,final,SEEK_SET);
180 fread(buffer,sizeof(EMUFS_IDX),cant-1,f_idx) ;
181 /* for( i=0; i<cant-1; i ++)
182 printf("buffer[%ld] = %ld , %ld\n",i,*(buffer+i),*(buffer+2*i));*/
183 /*apunto al lugar donde deben ser guardados*/
184 fseek(f_idx,actual,SEEK_SET);
185 printf(" actual = %ld\n",actual);
187 fwrite(buffer,sizeof(EMUFS_IDX),cant-1,f_idx);
190 fseek (f_idx, -sizeof(EMUFS_IDX),SEEK_END);
193 if ( truncate(name_f_idx, actual+(cant-1)*sizeof(EMUFS_IDX))!= 0)
194 printf("no pude truncar\n");
195 else printf("TRUNKE!!!!\n");