strcpy(name_f_fsc,emu->nombre);
strcat(name_f_fsc, EMUFS_FSC_EXT);
+ /* Lo guardo en el archivo al final "a+"*/
+ if ( (f_fsc = fopen(name_f_fsc,"r+"))==NULL ) return -1;
+ /* lo busco.. si esta lo modifico y si no lo agrego */
+ fseek(f_fsc,0,SEEK_SET);
+ while ( !feof(f_fsc) ){
+ if ( fread(®,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
+ if ( reg.marker == marker ){
+ fseek(f_fsc,-sizeof(EMUFS_FSC),SEEK_CUR);
+ reg.freespace = freespace;
+ fwrite(®,sizeof(EMUFS_FSC),1,f_fsc);
+ fclose(f_fsc);
+ return 0;
+ }
+ }
/* Cargo el registro */
reg.marker = marker;
reg.freespace = freespace;
-
- /* Lo guardo en el archivo al final "a+"*/
- if ( (f_fsc = fopen(name_f_fsc,"a+"))==NULL ) return -1;
fwrite(®,sizeof(EMUFS_FSC),1,f_fsc);
fclose(f_fsc);
return 0;
if ( (f_fsc = fopen(name_f_fsc,"r"))==NULL ) return EMUFS_NOT_FOUND;
+ if ( emu->tam_reg > emu->tam_bloque-sizeof(EMUFS_REG_ID) ){
+ fseek(f_fsc,0,SEEK_SET);
+ while(!feof(f_fsc)){
+ if (fread(®,sizeof(EMUFS_FSC),1,f_fsc) != 1) continue;
+ if (reg.freespace == emu->tam_bloque) {
+ fclose(f_fsc);
+ *freespace = reg.freespace;
+ return reg.marker;
+ }
+ }
+ }
/* Inicializamos la estructura para devolver algun valor en concreto */
/* en caso de que no se halle un espacio libre apropiado */
while(!feof(f_fsc)){
return EMUFS_NOT_FOUND;
}
-/* agrega un registro al final del archivo */
int emufs_idx_agregar(EMUFS *emu, EMUFS_REG_ID id_reg, EMUFS_BLOCK_ID location)
{
FILE *f_idx;
strcpy(name_f_idx,emu->nombre);
strcat(name_f_idx, EMUFS_IDX_EXT);
- if ( (f_idx = fopen(name_f_idx,"r+"))==NULL ) return -1;
+ if ( (f_idx = fopen(name_f_idx,"a+"))==NULL ) return -1;
fseek(f_idx, sizeof(EMUFS_IDX)*id_reg, SEEK_SET);
reg.id_reg = id_reg;
if (fseek(f_idx, sizeof(EMUFS_IDX)*ID, SEEK_SET) == 0) {
fread(®, sizeof(EMUFS_IDX), 1, f_idx);
- if (reg.location == EMUFS_NOT_FOUND) {
+ if (reg.location != EMUFS_NOT_FOUND) {
fclose(f_idx);
- return -1;
+ return 0;
}
}
fclose(f_idx);
- return 0;/*no existe el id*/
+ return -1;/*no existe el id*/
}
int emufs_idx_actualizar(EMUFS *emu, int ID, EMUFS_BLOCK_ID bloque)
return -1;
}
printf("actualice el id = %d\n",ID);
- /*fseek(f_idx,0,SEEK_SET);*/
+ fseek(f_idx,0,SEEK_SET);
fseek(f_idx,ID*sizeof(EMUFS_IDX),SEEK_SET);
fread(®,sizeof(EMUFS_IDX),1,f_idx);
reg.location = bloque;
EMUFS_BLOCK_SIZE iterador = 0;
int cant_bloques = 0, resto, i, copiado=0;
- cant_bloques = emu->tam_reg / emu->tam_bloque + 1;
+ cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
/*si existe, lo busco en el archivo de bloques*/
block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
break;
}
*reg_size = emu->tam_reg;
- fprintf(stderr, "ACA VALE %d\n", emu->tam_reg);
}
iterador += emu->tam_reg;
}
strcpy(name_f,emu->nombre);
strcat(name_f,".dat");
- cant_bloques = emu->tam_reg / emu->tam_bloque + 1;
+ cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
/* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
num_bloque = emufs_fsc_buscar_lugar(emu, emu->tam_reg+sizeof(EMUFS_REG_ID), &fs);
+ printf("encontre lugar en %d\n", num_bloque);
/*si no hay bloques con suficiente espacio creo un bloque nuevo */
if (num_bloque == -1) {
if ( (file = fopen(name_f,"a+"))==NULL ) return -1; /*ERROR*/
if (i == 0) {
/* Tengo que agregar el primer bloque en IDX */
- if ( emufs_idx_existe_id(emu,ID_aux) != 0){ /* deberia ser == 0 pero no funca*/
- emufs_idx_actualizar(emu, ID_aux, num_bloque);
- } else {
- if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
- free(bloque);
- return -1;
+ if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
+ free(bloque);
+ return -1;
}
- }
}
+
/* grabo el nuevo registro en el archivo de espacios libres */
if ( emu->tam_bloque > emu->tam_reg ) resto = emu->tam_reg;
- if ( emufs_fsc_agregar(emu, num_bloque, emu->tam_bloque - resto - sizeof(EMUFS_REG_ID)) != 0 ) {
+ if ( emufs_fsc_agregar(emu, num_bloque+i, emu->tam_bloque - resto - sizeof(EMUFS_REG_ID)) != 0 ) {
fclose(file);
free(bloque);
return -1;
}
+
}
fclose(file);
} else {
- /*cargo el bloque en "bloque"*/
- if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, err))) {
- /* TODO Manejo de errores */
- PERR("no se pudo leer el bloque");
- return -1;
- }
- /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/
- /*insertar el registro en el bloque*/
- /*tengo que buscar un ID valido para el nuevo registro*/
- ID_aux = emufs_idx_get_new_id(emu, err);
- /*grabo el id en el bloque*/
- memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID));
- /*grabo el registro en el bloque*/
- memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
- if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) != 0) {
- PERR("error al grabar bloque");
- return -1; /* se produjo un error */
- }
- /*actualizo el archivo de espacios libres*/
- if ( emufs_fsc_actualizar(emu, num_bloque, fs - emu->tam_reg - sizeof(EMUFS_REG_ID)) != 0 ){
- free(bloque);
- return -1;
- }
- /*actualizo el archivo de bloques y registros*/
- if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
- free(bloque);
- return -1;
+ for (i=0; i<cant_bloques; i++){
+ /*cargo el bloque en "bloque"*/
+ if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque+i, err))) {
+ /* TODO Manejo de errores */
+ PERR("no se pudo leer el bloque");
+ return -1;
+ }
+ /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/
+ /*insertar el registro en el bloque*/
+ /*tengo que buscar un ID valido para el nuevo registro*/
+ ID_aux = emufs_idx_get_new_id(emu, err);
+ /*grabo el id en el bloque*/
+ /*veo el espacio libre que queda*/
+ fs = emufs_fsc_get_fs(emu, num_bloque+i);
+ printf("el espacio libre del bloque %d es: %d\n", num_bloque+i, fs);
+ if (emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg)
+ memcpy(bloque+sizeof(EMUFS_REG_ID),&ID_aux,sizeof(EMUFS_REG_ID));
+ else
+ memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID));
+ /*grabo el registro en el bloque*/
+ if ( cant_bloques == 1 ){
+ memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
+ } else {
+ if ( cant_bloques-1 == i )
+ resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
+ memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto);
+ }
+
+ /*grabo el bloque en el archivo*/
+ if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque+i) != 0) {
+ PERR("error al grabar bloque");
+ return -1; /* se produjo un error */
+ }
+
+ /*actualizo el archivo de espacios libres*/
+ if ( emu->tam_bloque-sizeof(EMUFS_REG_ID) > emu->tam_reg ){
+ resto = emu->tam_reg;
+ if ( emufs_fsc_agregar(emu, num_bloque, fs - resto - sizeof(EMUFS_REG_ID) ) != 0 ) {
+ fclose(file);
+ if (bloque != NULL) free(bloque);
+ return -1;
+ }
+ /*agrego al idx*/
+ if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
+ if (bloque != NULL) free(bloque);
+ return -1;
+ }
+ } else {
+ if ( cant_bloques-1 == i )
+ resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
+ fs = emufs_fsc_get_fs(emu,num_bloque+i);
+ if ( emufs_fsc_agregar(emu, num_bloque+i, fs-resto) !=0 ){
+ fclose(file);
+ if (bloque != NULL) free(bloque);
+ return -1;
+ }
+ /*actualizo el archivo de bloques y registros*/
+ if (i == 0) {
+ /* Tengo que agregar el primer bloque en IDX */
+ if( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
+ if (bloque != NULL) free(bloque);
+ return -1;
+ }
+ }
+ }
}
-
}
free(bloque);
return ID_aux;
EMUFS_REG_ID ID_aux;
EMUFS_FREE fs;
char *bloque;
- int err = 0;
+ int err = 0, i;
num_bloque = emufs_idx_buscar_registro(emu, ID);
if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) {
/*actualizo archivo .fsc*/
if ( emu->tam_bloque < emu->tam_reg ) {
- if ( emufs_fsc_actualizar(emu, num_bloque, emu->tam_bloque) != 0 ) return -1;
+ for (i=0; i<emu->tam_reg/(emu->tam_bloque-sizeof(EMUFS_REG_ID))+1; i++)
+ if ( emufs_fsc_actualizar(emu, num_bloque+i, emu->tam_bloque) != 0 ) return -1;
} else {
fs = emufs_fsc_get_fs(emu, num_bloque);
if ( emufs_fsc_actualizar(emu, num_bloque, fs + emu->tam_reg + sizeof(EMUFS_REG_ID)) != 0 ) return -1;
printf("Modo de uso : %s tam_bloque\n", argv[0]);
return 1;
}
+
strcpy(a, "1234567890");
strcpy(c, "REGISTRO NUMERO 2. ESTE REGISTRO ES MUCHO MAS LARGO QUE EL UNO");
strcpy(d, "ABCDEFGHIJKL");
strcpy(i, "me argrego despues de borrar a un registro");
fp = emufs_crear("articulos", T3, atoi(argv[1]), 100);
-
+ printf("cant de bloques = %d\n", fp->tam_reg/(fp->tam_bloque-sizeof(EMUFS_REG_ID)) +1);
+ printf("GRABANDO REGISTROS....\n");
v[0] = fp->grabar_registro(fp, a, 100, &err);
v[1] = fp->grabar_registro(fp, c, 100, &err);
v[2] = fp->grabar_registro(fp, d, 100, &err);
v[5] = fp->grabar_registro(fp, g, 100, &err);
v[6] = fp->grabar_registro(fp, h, 100, &err);
v[7] = fp->grabar_registro(fp, i, 100, &err);
+ for (j=0; j<8; j++)
+ printf("Grabado : %d\n", v[j]);
+ printf("RECUPERANDO REGISTROS....\n");
for (j=0; j<8; j++){
b_ptr = fp->leer_registro(fp, v[j], ®_size, &err);
printf("Recuperado : %s\n", b_ptr);
}
+ printf("BORRANDO REGISTROS....\n");
for (j=0; j<8; j++){
fp->borrar_registro(fp, v[j]);
printf("borrado : %d\n", v[j]);
}
- ver_archivo_FS(fp);
+ printf("GRABANDO REGISTROS....\n");
v[0] = fp->grabar_registro(fp, a, 100, &err);
v[1] = fp->grabar_registro(fp, c, 100, &err);
v[2] = fp->grabar_registro(fp, d, 100, &err);