free(bloque);
return 0;
}
+
+void *emufs_tipo1_leer_registro_plus(EMUFS *emu, CLAVE clave, EMUFS_REG_SIZE *size, int *err)
+{
+ CLAVE clave_ajena;
+ char *reg;
+ char *bloque, *aux;
+ INDEX_DAT query;
+ int result, cant_reg, i;
+ EMUFS_REG_SIZE tam_reg;
+
+ /*cargo el query*/
+ query.clave = clave;
+ query.num_bloque = 0;
+ /*hago la consulta*/
+
+ result = emufs_b_plus_get_bloque(emu->indices, &query, 0);
+
+ if (result == -1){
+ PERR("NO EXISTE EL BLOQUE");
+ return NULL;
+ }
+ if (result == 1){
+ PERR("SE PRODUJO UN ERROR EN EL ARBOL");
+ return NULL;
+ }
+ /*leo el bloque*/
+ bloque = emufs_tipo1_leer_bloque(emu, query.num_bloque, err);
+ /*busco el registro en el bloque*/
+ /*copio la cantidad de registros*/
+ memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
+ aux = bloque;
+ for (i=0; i<cant_reg; i++){
+ /*copio el tamanio del registro*/
+ memcpy(&tam_reg, aux+sizeof(EMUFS_REG_ID), sizeof(EMUFS_REG_SIZE));
+ /*leo la clave*/
+ clave_ajena = emufs_indice_generar_clave(emu->indices, aux+sizeof(EMUFS_TIPO1_REG_HEADER));
+ if ( emufs_indice_es_igual(emu->indices, clave, clave_ajena) ){
+ reg = (char*)malloc(tam_reg);
+ if (reg == NULL){
+ PERR("NO SE PUDO CARGAR EL REGISTRO");
+ *err = -1;
+ free(bloque);
+ return -1;
+ }
+ /*copio el registro*/
+ memcpy(reg, aux+sizeof(EMUFS_TIPO1_REG_HEADER), tam_reg);
+ *size = tam_reg;
+ break; /*ya lo encontre, corto el for*/
+ }
+ aux += tam_reg+sizeof(EMUFS_TIPO1_REG_HEADER); /*paso al proximo*/
+ }
+ free(bloque);
+ return reg;
+}
/** Elimina un registro de clave CLAVE del archivo con ayuda del arbol B+*/
int emufs_tipo1_eliminar_ordenado(EMUFS *emu, CLAVE clave, int *err);
+
+void *emufs_tipo1_leer_registro_plus(EMUFS *emu, CLAVE clave, EMUFS_REG_SIZE *size, int *err);
#endif /* _EMUFS_TIPO1_H_ */
char *r;
EMUFS *emu;
int tam_nodo = SIZE_B_PLUS_HEADER + sizeof(CLAVE)*5 + sizeof(CLAVE)*6;
- EMUFS_REG_SIZE len;
+ EMUFS_REG_SIZE len, size;
int err=0;
texto = "PARTE COSNSTANTE, clave =";
emufs_tipo1_insertar_ordenado(emu, r, len, &err);
PERR("REGISTRO 7 GRABADO");
free(r);
-
+/*
clave.i_clave = 93;
emufs_tipo1_eliminar_ordenado(emu, clave, &err);
clave.i_clave = 99;
emufs_tipo1_eliminar_ordenado(emu, clave, &err);
clave.i_clave = 77;
emufs_tipo1_eliminar_ordenado(emu, clave, &err);
+*/
+
+PERR("LEYENDO REGISTRO");
+clave.i_clave = 99;
+r = emufs_tipo1_leer_registro_plus(emu, clave, &size, &err);
+imprimir_reg(r, strlen(texto), size);
/*
for ( i=0; i<10000; i++){
free(bloque);
return 0;
}
+
+void *emufs_tipo3_leer_registro_plus(EMUFS *emu, CLAVE clave, EMUFS_REG_SIZE *size, int *err)
+{
+ CLAVE clave_ajena;
+ char *reg;
+ char *bloque, *aux;
+ INDEX_DAT query;
+ int result, cant_reg, i;
+ EMUFS_REG_SIZE tam_reg;
+
+ tam_reg = emu->tam_reg;
+ /*cargo el query*/
+ query.clave = clave;
+ query.num_bloque = 0;
+ /*hago la consulta*/
+
+ result = emufs_b_plus_get_bloque(emu->indices, &query, 0);
+
+ if (result == -1){
+ PERR("NO EXISTE EL BLOQUE");
+ return NULL;
+ }
+ if (result == 1){
+ PERR("SE PRODUJO UN ERROR EN EL ARBOL");
+ return NULL;
+ }
+ /*leo el bloque*/
+ bloque = emufs_tipo3_leer_bloque(emu, query.num_bloque, err);
+ /*busco el registro en el bloque*/
+ /*copio la cantidad de registros*/
+ memcpy(&cant_reg, bloque+emu->tam_bloque-sizeof(int), sizeof(int));
+ aux = bloque;
+ for (i=0; i<cant_reg; i++){
+ /*leo la clave*/
+ clave_ajena = emufs_indice_generar_clave(emu->indices, aux+sizeof(EMUFS_REG_ID));
+ if ( emufs_indice_es_igual(emu->indices, clave, clave_ajena) ){
+ reg = (char*)malloc(tam_reg);
+ if (reg == NULL){
+ PERR("NO SE PUDO CARGAR EL REGISTRO");
+ *err = -1;
+ free(bloque);
+ return -1;
+ }
+ /*copio el registro*/
+ memcpy(reg, aux+sizeof(EMUFS_REG_ID), tam_reg);
+ *size = tam_reg;
+ break; /*ya lo encontre, corto el for*/
+ }
+ aux += tam_reg+sizeof(EMUFS_REG_ID); /*paso al proximo*/
+ }
+ free(bloque);
+ return reg;
+}
int emufs_tipo3_insertar_ordenado(EMUFS *emu, void *ptr, EMUFS_REG_SIZE size, int *err);
int emufs_tipo3_eliminar_ordenado(EMUFS *emu, CLAVE clave, int *err);
+
+void *emufs_tipo3_leer_registro_plus(EMUFS *emu, CLAVE clave, EMUFS_REG_SIZE *size, int *err);
#endif /* _EMUFS_TIPO3_H_ */
char *r;
EMUFS *emu;
int tam_nodo = SIZE_B_PLUS_HEADER + sizeof(CLAVE)*5 + sizeof(CLAVE)*6;
- EMUFS_REG_SIZE len;
+ EMUFS_REG_SIZE len, size;
int err=0, i;
texto = "PARTE COSNSTANTE, clave =";
emufs_tipo3_eliminar_ordenado(emu, clave, &err);
clave.i_clave = 77;
emufs_tipo3_eliminar_ordenado(emu, clave, &err);
+
+*/
+
+PERR("LEYENDO REGISTRO");
+clave.i_clave = 99;
+err = 0;
+r = emufs_tipo3_leer_registro_plus(emu, clave, &size, &err);
+if (err) PERR(" NO SE LEYO EL REGISTRO");
+
+imprimir_reg(r, strlen(texto), size);
+
+
/*for ( i=0; i<10000; i++){
srandom(i);
clave.i_clave = random();