#include <stdio.h>
#include <string.h>
-/** Leo un registro del archivo, devuelve cero si no lo encuentra.**/
-void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID,
+/** Leo un registro del archivo, devuelve NULL si no lo encuentra.**/
+void* emufs_tipo3_leer_registro(EMUFS *emu, CLAVE clave,
EMUFS_REG_SIZE* reg_size, int* err)
{
+ INDICE_DATO dato;
char* bloque;
char* registro; /* registro a leer */
EMUFS_BLOCK_ID block;
- EMUFS_REG_ID ID_aux;
+ EMUFS_REG_ID ID_aux, ID;
EMUFS_BLOCK_SIZE iterador = 0;
int cant_bloques = 0, resto, i, copiado=0;
-
+
cant_bloques = (emu->tam_reg / (emu->tam_bloque-sizeof(EMUFS_REG_ID))) + 1;
if ( emu->tam_reg+sizeof(EMUFS_REG_ID) == emu->tam_bloque )
cant_bloques = 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*/
+ if (emu->indices != NULL) {
+ /* TODO : Verificar donde esta el indice primario */
+ dato = emu->indices->existe_entrada(emu->indices, clave);
+ block = dato.bloque;
+ ID = dato.id;
+ } else {
+ block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
+ }
if ( block == EMUFS_NOT_FOUND ){
PERR("No se encontro el bloque");
*err = -1;
EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam, int* err)
{
+ INDICE_DATO idx_data;
EMUFS_REG_ID ID_aux;
EMUFS_FREE fs, new_fs;
EMUFS_BLOCK_ID num_bloque;
FILE *file;
char name_f[255];
char* bloque = NULL;
- int cant_bloques, resto, i=0, lugar;
+ int cant_bloques, resto, i=0;
strcpy(name_f,emu->nombre);
strcat(name_f,".dat");
free(bloque);
return -1;
}
+ idx_data.id = ID_aux;
+ idx_data.bloque = num_bloque;
+ emufs_indice_agregar(emu->indices, ptr, idx_data);
}
/* grabo el nuevo registro en el archivo de espacios libres */
if (bloque) free(bloque);
return -1;
}
+ idx_data.id = ID_aux;
+ idx_data.bloque = num_bloque;
+ emufs_indice_agregar(emu->indices, ptr, idx_data);
}
}
}
EMUFS_BLOCK_SIZE ptr_elim;
EMUFS_BLOCK_SIZE ptr_mov;
EMUFS_REG_ID ID_aux;
- EMUFS_FREE fs, new_fs;
+ EMUFS_FREE fs;
char *bloque;
int err = 0, i, cant_bloques;
void emufs_tipo3_compactar(EMUFS *emu)
{
+/* TODO ARREGLAR */
+#ifdef PEPITO_EL_GALAN
EMUFS_REG_ID *tmp, max_id;
EMUFS_BLOCK_ID block_id;
EMUFS_REG_SIZE size;
if(emu->tam_bloque-sizeof(EMUFS_REG_ID) < emu->tam_reg) block_id = block_id/2;
if (emufs_fsc_truncate(emu, block_id)!= 0)
PERR("NO TURNQUE EL FSC");
+#endif
}
void emufs_tipo3_leer_bloque_raw(EMUFS *efs, EMUFS_BLOCK_ID id, char **actual, char **anterior, char **siguiente,