+
+EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
+{
+ FILE *f;
+ EMUFS_Estadisticas stats;
+ char name_f[255];
+
+ strcpy(name_f,emu->nombre);
+ strcat(name_f,".dat");
+ if ( (f = fopen(name_f,"r")) == NULL){
+ PERR("No se pudo abrir el archivo");
+ return stats;
+ }
+ /* No hace falta el fseek ¿? */
+ fseek(f,0,SEEK_END);
+ stats.tam_archivo_bytes = ftell(f);
+ stats.cant_bloques = ( ftell(f) - sizeof(EMUFS_Tipo) - sizeof(EMUFS_BLOCK_SIZE) - sizeof(EMUFS_REG_SIZE) )/ emu->tam_bloque;
+ stats.tam_archivo = emufs_idx_get_count(emu);
+ stats.total_fs = emufs_fsc_get_total_fs(emu);
+ /*verificar el segentado*/
+ stats.info_control = stats.tam_archivo*sizeof(EMUFS_REG_ID) + sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE) + sizeof(EMUFS_REG_SIZE);
+ stats.media_fs = stats.total_fs/stats.cant_bloques;
+ fclose(f);
+ return stats;
+}
+
+EMUFS_REG_ID emufs_tipo3_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
+{
+ emufs_tipo3_borrar_registro(emu, id);
+ return emufs_tipo3_grabar_registro(emu, data, size, error);
+}
+
+void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE *size, int *pos)
+{
+ char* bloque;
+ EMUFS_BLOCK_ID block;
+ EMUFS_REG_ID ID_aux;
+ EMUFS_BLOCK_SIZE iterador = 0;
+ int err;
+
+ /*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 ( block == EMUFS_NOT_FOUND ){
+ PERR("No se encontro el bloque");
+ return NULL;
+ }
+ if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
+ /* TODO Manejo de errores, queda en el codigo de error lo que devolvio
+ * emufs_tipo3_leer_bloque() */
+ PERR("no se pudo leer el bloque");
+ return NULL; /*No se pudo leer el bloque*/
+ }
+
+ ID_aux = -1;
+ iterador = 0;
+ /* Busco el offset desde el comienzo desde donde arranca el registro
+ * buscado, para luego resaltarlo en al GUI
+ */
+ while ( iterador < emu->tam_bloque ) {
+ memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
+ if ( ID_aux == ID ){
+ *pos = iterador;
+ *size = emu->tam_bloque;
+ break;
+ }
+ iterador += sizeof(EMUFS_REG_ID);
+ iterador += emu->tam_reg;
+ }
+
+ return bloque;
+}
+