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
41 #include <sys/types.h>
45 /** Leo un registro del archivo, devuelve cero si no lo encuentra.**/
46 void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID,
47 EMUFS_REG_SIZE* reg_size, int* err)
50 char* registro; /* registro a leer */
53 EMUFS_BLOCK_SIZE iterador = 0;
54 int cant_bloques = 0, resto, i, copiado=0;
56 cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
58 /*si existe, lo busco en el archivo de bloques*/
59 block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
60 if ( block == EMUFS_NOT_FOUND ){
61 PERR("No se encontro el bloque");
66 registro = (char*) malloc(emu->tam_reg);
67 if (registro == NULL) {
68 PERR("No hay memoria");
69 *err = EMUFS_ERROR_OUT_OF_MEMORY;
73 resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
74 for (i=0; i<cant_bloques; i++){
75 if ((bloque = emufs_tipo3_leer_bloque(emu, block+i, err)) == NULL) {
76 /* TODO Manejo de errores, queda en el codigo de error lo que devolvio
77 * emufs_tipo3_leer_bloque() */
78 PERR("no se pudo leer el bloque");
80 return NULL; /*No se pudo leer el bloque*/
84 while ( iterador < emu->tam_bloque ) {
85 memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
86 iterador += sizeof(EMUFS_REG_ID);
88 if ( cant_bloques == 0 )
89 memcpy(registro,bloque+iterador,emu->tam_reg);
91 if ( cant_bloques-1 == i )
92 resto = emu->tam_reg - copiado;
93 memcpy(registro+(emu->tam_bloque-sizeof(EMUFS_REG_ID))*i,bloque+iterador,resto);
97 *reg_size = emu->tam_reg;
99 iterador += emu->tam_reg;
107 /*leo el bloque "ID" del archivo que viene en "emu->nombre", y lo almaceno en "ptr"*/
108 void* emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_BLOCK_ID ID, int* err)
111 char* block; /* bloque leido (en donde está el registro a leer) */
114 strcpy(name_f,emu->nombre);
115 strcat(name_f,".dat");
117 if ((file = fopen(name_f, "r")) == NULL) {
118 PERR("No se pudo abrir el archivo de datos");
119 *err = EMUFS_ERROR_CANT_OPEN_FILE;
122 fseek(file,sizeof(EMUFS_Tipo)+sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE),SEEK_SET);
123 /*FIXME: verificar que no se pase de fin de archivo*/
124 if (fseek(file,ID*emu->tam_bloque,SEEK_CUR) != 0){
125 PERR("Fallo la busqueda del bloque");
130 block = (char*) malloc(emu->tam_bloque);
132 PERR("No hay memoria");
133 *err = EMUFS_ERROR_OUT_OF_MEMORY;
136 if (fread(block, emu->tam_bloque, 1, file) != 1) {
137 /* TODO Manejo de errores */
139 PERR("Error al leer bloque");
140 *err = EMUFS_ERROR_FILE_READ;
148 EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam, int* err)
152 EMUFS_BLOCK_ID num_bloque;
153 EMUFS_BLOCK_SIZE cant;
157 int cant_bloques, resto, i=0, lugar;
159 strcpy(name_f,emu->nombre);
160 strcat(name_f,".dat");
162 cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
163 resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
164 lugar = emu->tam_reg + sizeof(EMUFS_REG_ID);
165 if ( emu->tam_bloque < emu->tam_reg - sizeof(EMUFS_REG_ID) )
166 lugar = emu->tam_bloque;
167 /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
168 num_bloque = emufs_fsc_buscar_lugar(emu, lugar, &fs);
169 /*si no hay bloques con suficiente espacio creo un bloque nuevo */
170 if (num_bloque == -1) {
171 if ( (file = fopen(name_f,"a+"))==NULL ) return -1; /*ERROR*/
172 /*tengo que buscar un ID valido para el nuevo registro*/
173 ID_aux = emufs_idx_get_new_id(emu, err);
174 /* El free esta al final de la funcion! */
175 bloque = (char*)malloc(emu->tam_bloque);
176 for (i=0; i<cant_bloques; i++) {
177 /*crear un nuevo bloque en memoria */
178 memset(bloque, 0, emu->tam_bloque);
179 /* grabar el registro al principio del bloque */
180 /*grabo el id en el bloque*/
181 memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
182 /*grabo el registro en el bloque*/
183 if ( cant_bloques == 1 ){
184 memcpy(bloque+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
186 if ( cant_bloques-1 == i )
187 resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
188 memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto);
190 /* me paro al final del archivo */
191 fseek(file, 0, SEEK_END);
192 /* grabo el bloque en el final del archivo */
193 fwrite(bloque,emu->tam_bloque,1,file);
194 /*actualizo el archivo de espacios libres*/
195 /*tengo que buscar la cantidad de bloques que existen*/
196 fseek(file, 0, SEEK_END); /* Me paro al final */
197 cant = (ftell(file)-(sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE))) / emu->tam_bloque;
198 cant--; /* Resto uno porque el numero de bloque debe empezar en 0 */
202 /* Tengo que agregar el primer bloque en IDX */
203 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
209 /* grabo el nuevo registro en el archivo de espacios libres */
210 if ( emu->tam_bloque > emu->tam_reg ) resto = emu->tam_reg;
211 if ( emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque - resto - sizeof(EMUFS_REG_ID)) != 0 ) {
220 /*tengo que buscar un ID valido para el nuevo registro*/
221 ID_aux = emufs_idx_get_new_id(emu, err);
222 for (i=0; i<cant_bloques; i++){
223 /*cargo el bloque en "bloque"*/
224 if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque+i, err))) {
225 /* TODO Manejo de errores */
226 PERR("no se pudo leer el bloque");
229 /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/
230 /*insertar el registro en el bloque*/
231 /*grabo el id en el bloque*/
232 /*veo el espacio libre que queda*/
233 fs = emufs_fsc_get_fs(emu, num_bloque+i);
234 if (emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg)
235 memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
237 memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID));
238 /*grabo el registro en el bloque*/
239 if ( cant_bloques == 1 ){
240 memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
242 if ( cant_bloques-1 == i )
243 resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
244 memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto);
247 /*grabo el bloque en el archivo*/
248 if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque+i) != 0) {
249 PERR("error al grabar bloque");
250 if (bloque) free(bloque);
251 return -1; /* se produjo un error */
254 /*actualizo el archivo de espacios libres*/
255 if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) > emu->tam_reg ){
256 resto = emu->tam_reg;
257 if ( emufs_fsc_agregar(emu, num_bloque, fs - resto - sizeof(EMUFS_REG_ID) ) != 0 ) {
259 if (bloque) free(bloque);
263 if ( cant_bloques-1 == i )
264 resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
265 if ( emufs_fsc_agregar(emu, num_bloque+i, fs-resto) !=0 ){
267 if (bloque) free(bloque);
272 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
273 if (bloque) free(bloque);
279 if (bloque) free(bloque);
283 /*Graba un bloque en el archivo*/
284 int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num)
289 strcpy(name_f,emu->nombre);
290 strcat(name_f,".dat");
292 if ( (file = fopen(name_f,"r+"))==NULL ) return -1; /*ERROR*/
293 /* Salto el header del archivo */
294 fseek(file, sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE), SEEK_SET);
295 fseek(file, num*emu->tam_bloque, SEEK_CUR);
296 fwrite(ptr, emu->tam_bloque, 1, file);
302 /*borra un registro de un bloque y acomoda los registros que quedan*/
303 int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID)
305 EMUFS_BLOCK_SIZE num_bloque;
306 EMUFS_BLOCK_SIZE ptr_elim;
307 EMUFS_BLOCK_SIZE ptr_mov;
313 num_bloque = emufs_idx_buscar_registro(emu, ID);
314 if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) {
315 /* TODO Manejo de errores */
316 PERR("no se pudo leer el bloque");
320 /*apunto al registro que voy a eliminar*/
322 while ( ptr_elim < emu->tam_bloque ){
323 memcpy(&ID_aux, bloque+ptr_elim, sizeof(EMUFS_REG_ID));
326 ptr_elim += emu->tam_reg + sizeof(EMUFS_REG_ID);
329 /*apunto al registro que voy a mover*/
330 ptr_mov = ptr_elim + emu->tam_reg + sizeof(EMUFS_REG_ID);
332 while ( (ptr_mov+sizeof(EMUFS_REG_ID)+emu->tam_reg) < emu->tam_bloque ){
333 memcpy(bloque+ptr_elim, bloque+ptr_mov, sizeof(EMUFS_REG_ID)+emu->tam_reg);
334 /* Blanqueo el area que movi */
335 memset(bloque+ptr_mov, 0, sizeof(EMUFS_REG_ID)+emu->tam_reg);
337 ptr_mov += sizeof(EMUFS_REG_ID) + emu->tam_reg;
340 /*grabo el bloque en el archivo*/
341 if ( emu->tam_bloque < emu->tam_reg )
342 memset(bloque, 0, emu->tam_bloque);
343 if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) == -1 ){
345 PERR("No se pudo grabar el bloque");
349 /*actualizo archivo .fsc*/
350 if ( emu->tam_bloque < emu->tam_reg ) {
351 for (i=0; i<emu->tam_reg/(emu->tam_bloque-sizeof(EMUFS_REG_ID))+1; i++)
352 if (emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque)) {
353 PERR("no se pudo agregar fsc");
358 fs = emufs_fsc_get_fs(emu, num_bloque);
359 if (emufs_fsc_agregar(emu, num_bloque, fs + emu->tam_reg + sizeof(EMUFS_REG_ID))) {
360 PERR("no se pudo agregar fsc");
365 /*actualizo archivo .did*/
366 if (emufs_did_agregar(emu, ID)) {
367 PERR("no se pudo agregar did");
372 /*actualizo archivo .idx*/
373 if (emufs_idx_borrar(emu, ID)) {
374 PERR("no se pudo agregar idx");
383 EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
386 EMUFS_Estadisticas stats;
390 memset(&stats,0,sizeof(EMUFS_Estadisticas));
391 strcpy(name_f,emu->nombre);
392 strcat(name_f,".dat");
393 if ( (f = fopen(name_f,"r")) == NULL){
394 PERR("No se pudo abrir el archivo");
399 stats.tam_archivo_bytes = ftell(f);
400 stats.cant_bloques =(stats.tam_archivo_bytes-sizeof(EMUFS_Tipo)-sizeof(EMUFS_BLOCK_SIZE)-sizeof(EMUFS_REG_SIZE))/
402 tmp = emufs_idx_get(emu, &stats.tam_archivo);
404 stats.info_control=stats.tam_archivo*sizeof(EMUFS_REG_ID)+sizeof(EMUFS_Tipo)+
405 sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE);
406 /* Obtengo las stats de FSC */
407 stats.total_fs = emufs_fsc_get_total_fs(emu);
408 stats.media_fs = emufs_fsc_get_media_fs(emu);
409 emufs_fsc_get_max_min_fs(emu,&stats.min_fs,&stats.max_fs);
415 EMUFS_REG_ID emufs_tipo3_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
417 emufs_tipo3_borrar_registro(emu, id);
418 return emufs_tipo3_grabar_registro(emu, data, size, error);
421 void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE *size, int *pos)
423 char* bloque, *tmp, *cur;
424 EMUFS_BLOCK_ID block;
426 EMUFS_BLOCK_SIZE iterador = 0;
427 int err, cant_bloques, i;
430 if (emu->tam_reg < emu->tam_bloque) {
431 /* Aca estoy en el caso de que 1 registro entra en 1 solo bloque */
432 block = emufs_idx_buscar_registro(emu,ID);
433 if ( block == EMUFS_NOT_FOUND ) {
436 if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
443 /* Busco el offset desde el comienzo desde donde arranca el registro
444 * buscado, para luego resaltarlo en al GUI
446 while ( iterador < emu->tam_bloque ) {
447 memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
450 *size = emu->tam_bloque;
453 iterador += sizeof(EMUFS_REG_ID);
454 iterador += emu->tam_reg;
457 /* Junto todos los bloques que ocupa el registro y agrego un separador de bloques */
459 /* Busco el primer bloque */
460 block = emufs_idx_buscar_registro(emu,ID);
461 if ( block == EMUFS_NOT_FOUND ){
464 cant_bloques = emu->tam_reg / (emu->tam_bloque - sizeof(EMUFS_REG_ID))+1;
465 *size = emu->tam_bloque*cant_bloques /*+ cant_bloques*2*/ - sizeof(EMUFS_REG_ID)*(cant_bloques-1);
466 bloque = (char *)malloc(*size);
470 /* El bloque 0 va completo */
472 if ((tmp = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
473 /* Oops! ... un bloque no existe, todo mal! */
477 memcpy(cur, tmp, emu->tam_bloque);
478 cur += emu->tam_bloque;
479 /* memcpy(cur, "<>", 2);
483 /* En resto de los bloques no pongo el ID porque ya esta en el primero */
484 for(i=1; i<cant_bloques; i++) {
486 if ((tmp = emufs_tipo3_leer_bloque(emu, block+i, &err)) == NULL) {
487 /* Oops! ... un bloque no existe, todo mal! */
491 memcpy(cur, tmp+sizeof(EMUFS_REG_ID), emu->tam_bloque-sizeof(EMUFS_REG_ID));
492 cur += emu->tam_bloque - sizeof(EMUFS_REG_ID);
493 /* memcpy(cur, "<>", 2);
502 void emufs_tipo3_compactar(EMUFS *emu)
504 EMUFS_REG_ID *tmp, max_id;
505 EMUFS_BLOCK_ID block_id;
510 int err=0, ID_aux, i;
512 strcpy(name, emu->nombre);
513 strcat(name, ".dat");
515 /* si el bloque es mas chico que el registro no hace falta compactar */
516 /*if( emu->tam_reg-sizeof(EMUFS_REG_ID) > emu->tam_bloque ) return; */
518 tmp = emufs_idx_get(emu, &max_id);
520 for( i=0; i<=max_id; i++){
521 /* si el id no existe paso al siguiente*/
522 if ( emufs_idx_existe_id(emu, i) != 0 ) continue;
523 reg = emufs_tipo3_leer_registro(emu, i, &size, &err);
525 PERR("No se pudo leer el registro");
528 emufs_tipo3_borrar_registro(emu, i);
529 ID_aux = emufs_tipo3_grabar_registro(emu, reg, emu->tam_reg, &err);
532 /*tengo que truncar el archivo*/
533 /*bloques_vacios = emufs_fsc_get_cant_bloques_vacios(emu)-1;
535 block_id = emufs_fsc_buscar_lugar(emu, emu->tam_bloque, &fs);
536 size = sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE)+block_id*emu->tam_bloque;
537 if (truncate(name, size)!=0)
538 PERR("NO TRUNQUE NADA");
539 /*hay que truncar el fsc!!!*/
540 if(emu->tam_bloque<emu->tam_reg-sizeof(EMUFS_REG_ID)) block_id = block_id/2;
541 if (emufs_fsc_truncate(emu, block_id)!= 0)
542 PERR("NO TURNQUE EL FSC");
545 void emufs_tipo3_leer_bloque_raw(EMUFS *efs, EMUFS_BLOCK_ID id, char **actual, char **anterior, char **siguiente,
546 EMUFS_BLOCK_SIZE *size1, EMUFS_BLOCK_SIZE *size2, EMUFS_BLOCK_SIZE *size3)
549 (*actual) = emufs_tipo3_leer_bloque(efs, id, &err);
550 (*anterior) = emufs_tipo3_leer_bloque(efs, id-1, &err);
551 (*siguiente) = emufs_tipo3_leer_bloque(efs, id+1, &err);
553 (*anterior) = (char *)malloc(efs->tam_bloque);
554 memset(*anterior, 0, efs->tam_bloque);
557 (*siguiente) = (char *)malloc(efs->tam_bloque);
558 memset(*siguiente, 0, efs->tam_bloque);
560 (*size1) = (*size2) = (*size3) = efs->tam_bloque;