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 *----------------------------------------------------------------------------
31 * Archivo con bloques y registros de longitud parametrizada.
33 * Implementación del archivo con bloques y registros de longitud
40 /** Leo un registro del archivo, devuelve cero si no lo encuentra.**/
41 void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID,
42 EMUFS_REG_SIZE* reg_size, int* err)
45 char* registro; /* registro a leer */
48 EMUFS_BLOCK_SIZE iterador = 0;
49 int cant_bloques = 0, resto, i, copiado=0;
51 cant_bloques = emu->tam_reg / emu->tam_bloque + 1;
53 /*si existe, lo busco en el archivo de bloques*/
54 block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
55 if ( block == EMUFS_NOT_FOUND ){
56 PERR("No se encontro el bloque");
60 registro = (char*) malloc(emu->tam_reg);
61 if (registro == NULL) {
62 /* TODO Manejo de errores */
64 PERR("No hay memoria");
65 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
69 resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
70 for (i=0; i<cant_bloques; i++){
71 if ((bloque = emufs_tipo3_leer_bloque(emu, block+i, err)) == NULL) {
72 /* TODO Manejo de errores, queda en el codigo de error lo que devolvio
73 * emufs_tipo3_leer_bloque() */
74 PERR("no se pudo leer el bloque");
75 return NULL; /*No se pudo leer el bloque*/
79 while ( iterador < emu->tam_bloque ) {
80 memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
81 iterador += sizeof(EMUFS_REG_ID);
83 if ( cant_bloques == 0 )
84 memcpy(registro,bloque+iterador,emu->tam_reg);
86 if ( cant_bloques-1 == i )
87 resto = emu->tam_reg - copiado;
88 memcpy(registro+(emu->tam_bloque-sizeof(EMUFS_REG_ID))*i,bloque+iterador,resto);
92 *reg_size = emu->tam_reg;
94 iterador += emu->tam_reg;
102 /*leo el bloque "ID" del archivo que viene en "emu->nombre", y lo almaceno en "ptr"*/
103 void* emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_REG_ID ID, int* err)
106 char* block; /* bloque leido (en donde está el registro a leer) */
109 strcpy(name_f,emu->nombre);
110 strcat(name_f,".dat");
112 if ((file = fopen(name_f, "r")) == NULL) {
113 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
114 return NULL; /* FIXME ERROR */
116 fseek(file,sizeof(EMUFS_Tipo)+sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE),SEEK_SET);
117 /*FIXME: verificar que no se pase de fin de archivo*/
118 fseek(file,ID*emu->tam_bloque,SEEK_CUR);
119 block = (char*) malloc(emu->tam_bloque);
121 /* TODO Manejo de errores */
122 PERR("No hay memoria");
123 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
126 if (fread(block, emu->tam_bloque, 1, file) != 1) {
127 /* TODO Manejo de errores */
129 PERR("Error al leer bloque");
130 *err = 3; /* EMUFS_ERROR_FILE_READ */
138 EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam, int* err)
142 EMUFS_BLOCK_ID num_bloque;
143 EMUFS_BLOCK_SIZE cant;
147 int cant_bloques, resto, i;
149 strcpy(name_f,emu->nombre);
150 strcat(name_f,".dat");
152 cant_bloques = emu->tam_reg / emu->tam_bloque + 1;
153 resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
154 /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
155 num_bloque = emufs_fsc_buscar_lugar(emu, emu->tam_reg+sizeof(EMUFS_REG_ID), &fs);
156 /*si no hay bloques con suficiente espacio creo un bloque nuevo */
157 if (num_bloque == -1) {
158 if ( (file = fopen(name_f,"a+"))==NULL ) return -1; /*ERROR*/
159 /*tengo que buscar un ID valido para el nuevo registro*/
160 ID_aux = emufs_idx_get_new_id(emu, err);
161 for (i=0; i<cant_bloques; i++) {
162 /*crear un nuevo bloque en memoria */
163 bloque = (char*)malloc(emu->tam_bloque);
164 memset(bloque, 0, emu->tam_bloque);
165 /* grabar el registro al principio del bloque */
166 /*grabo el id en el bloque*/
167 memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
168 /*grabo el registro en el bloque*/
169 if ( cant_bloques == 0 ){
170 memcpy(bloque+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
172 if ( cant_bloques-1 == i )
173 resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
174 memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto);
176 /* me paro al final del archivo */
177 fseek(file, 0, SEEK_END);
178 /* grabo el bloque en el final del archivo */
179 fwrite(bloque,emu->tam_bloque,1,file);
180 /*actualizo el archivo de espacios libres*/
181 /*tengo que buscar la cantidad de bloques que existen*/
182 fseek(file, 0, SEEK_END); /* Me paro al final */
183 cant = (ftell(file)-(sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE))) / emu->tam_bloque;
184 cant--; /* Resto uno porque el numero de bloque debe empezar en 0 */
186 /* grabo el nuevo registro en el archivo de espacios libres */
187 if ( emufs_fsc_agregar(emu, num_bloque, emu->tam_bloque - resto - sizeof(EMUFS_REG_ID)) != 0 ) {
194 /*actualizo el archivo de bloques y registros*/
195 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
200 /*cargo el bloque en "bloque"*/
201 if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, err))) {
202 /* TODO Manejo de errores */
203 PERR("no se pudo leer el bloque");
206 /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/
207 /*insertar el registro en el bloque*/
208 /*tengo que buscar un ID valido para el nuevo registro*/
209 ID_aux = emufs_idx_get_new_id(emu, err);
210 /*grabo el id en el bloque*/
211 memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID));
212 /*grabo el registro en el bloque*/
213 memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
214 if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) != 0) {
215 PERR("error al grabar bloque");
216 return -1; /* se produjo un error */
218 /*actualizo el archivo de espacios libres*/
219 if ( emufs_fsc_actualizar(emu, num_bloque, fs - emu->tam_reg - sizeof(EMUFS_REG_ID)) != 0 ){
223 /*actualizo el archivo de bloques y registros*/
224 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
234 /*Graba un bloque en el archivo*/
235 int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num)
240 strcpy(name_f,emu->nombre);
241 strcat(name_f,".dat");
243 if ( (file = fopen(name_f,"r+"))==NULL ) return -1; /*ERROR*/
244 /* Salto el header del archivo */
245 fseek(file, sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE), SEEK_SET);
246 fseek(file, num*emu->tam_bloque, SEEK_CUR);
247 fwrite(ptr, emu->tam_bloque, 1, file);
253 /*borra un registro de un bloque y acomoda los registros que quedan*/
254 int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID)
256 EMUFS_BLOCK_SIZE num_bloque;
257 EMUFS_BLOCK_SIZE ptr_elim;
258 EMUFS_BLOCK_SIZE ptr_mov;
264 num_bloque = emufs_idx_buscar_registro(emu, ID);
265 if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) {
266 /* TODO Manejo de errores */
267 PERR("no se pudo leer el bloque");
271 /*apunto al registro que voy a eliminar*/
273 while ( ptr_elim < emu->tam_bloque ){
274 memcpy(&ID_aux, bloque+ptr_elim, sizeof(EMUFS_REG_ID));
277 ptr_elim += emu->tam_reg + sizeof(EMUFS_REG_ID);
280 /*apunto al registro que voy a mover*/
281 ptr_mov = ptr_elim + emu->tam_reg + sizeof(EMUFS_REG_ID);
283 while ( (ptr_mov+sizeof(EMUFS_REG_ID)+emu->tam_reg) < emu->tam_bloque ){
284 memcpy(bloque+ptr_elim, bloque+ptr_mov, sizeof(EMUFS_REG_ID)+emu->tam_reg);
285 /* Blanqueo el area que movi */
286 memset(bloque+ptr_mov, 0, sizeof(EMUFS_REG_ID)+emu->tam_reg);
288 ptr_mov += sizeof(EMUFS_REG_ID) + emu->tam_reg;
291 /*grabo el bloque en el archivo*/
292 if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) == -1 ){
294 PERR("No se pudo grabar el bloque");
298 /*actualizo archivo .fsc*/
299 fs = emufs_fsc_get_fs(emu, num_bloque);
300 if ( emufs_fsc_actualizar(emu, num_bloque, fs + emu->tam_reg + sizeof(EMUFS_REG_ID)) != 0 ) return -1;
302 /*actualizo archivo .did*/
303 if ( emufs_did_agregar(emu, ID) != 0 ) return -1;
305 /*actualizo archivo .idx*/
306 if ( emufs_idx_borrar(emu, ID) != 0 ) return -1;
312 EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
315 EMUFS_Estadisticas stats;
319 strcpy(name_f,emu->nombre);
320 strcat(name_f,".dat");
321 if ( (f = fopen(name_f,"r")) == NULL){
322 PERR("No se pudo abrir el archivo");
326 /* No hace falta el fseek ¿? */
328 stats.tam_archivo_bytes = ftell(f);
329 stats.cant_bloques = ( ftell(f) - sizeof(EMUFS_Tipo) - sizeof(EMUFS_BLOCK_SIZE) - sizeof(EMUFS_REG_SIZE) )/ emu->tam_bloque;
330 tmp = emufs_idx_get(emu, &stats.tam_archivo);
332 stats.total_fs = emufs_fsc_get_total_fs(emu);
333 /*verificar el segentado*/
334 stats.info_control = stats.tam_archivo*sizeof(EMUFS_REG_ID) + sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE) + sizeof(EMUFS_REG_SIZE);
335 stats.media_fs = stats.total_fs/stats.cant_bloques;
340 EMUFS_REG_ID emufs_tipo3_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
342 emufs_tipo3_borrar_registro(emu, id);
343 return emufs_tipo3_grabar_registro(emu, data, size, error);
346 void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE *size, int *pos)
349 EMUFS_BLOCK_ID block;
351 EMUFS_BLOCK_SIZE iterador = 0;
354 /*si existe, lo busco en el archivo de bloques*/
355 block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
356 if ( block == EMUFS_NOT_FOUND ){
357 PERR("No se encontro el bloque");
360 if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
361 /* TODO Manejo de errores, queda en el codigo de error lo que devolvio
362 * emufs_tipo3_leer_bloque() */
363 PERR("no se pudo leer el bloque");
364 return NULL; /*No se pudo leer el bloque*/
370 if ( emu->tam_bloque < emu->tam_reg ){
371 *pos = sizeof(EMUFS_REG_ID);
372 *size = emu->tam_bloque;
376 /* Busco el offset desde el comienzo desde donde arranca el registro
377 * buscado, para luego resaltarlo en al GUI
379 while ( iterador < emu->tam_bloque ) {
380 memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
383 *size = emu->tam_bloque;
386 iterador += sizeof(EMUFS_REG_ID);
387 iterador += emu->tam_reg;