int err = 0;
/* Si no es un tipo conocido, sale. */
- if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
+ if ((tipo != T1) && (tipo != T2) && (tipo != T3) && (tipo != T4) && (tipo != T5)) {
return NULL;
}
case T3:
/* Asigna punteros a funciones. */
- if ((err = emufs_tipo4_inicializar(efs))) {
+ if ((err = emufs_tipo3_inicializar(efs))) {
/* TODO ERROR */
PERR("No se pudo inicializar el EMUFS de tipo3");
fclose(fp);
return NULL;
}
/* Asigna punteros a funciones. */
- efs->leer_bloque = emufs_tipo3_leer_bloque;
- efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
- efs->leer_registro = emufs_tipo3_leer_registro;
- efs->grabar_registro = emufs_tipo3_grabar_registro;
- efs->borrar_registro = emufs_tipo3_borrar_registro;
- efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
- efs->modificar_registro = emufs_tipo3_modificar_registro;
- efs->compactar = emufs_tipo3_compactar;
- efs->leer_bloque_raw = emufs_tipo3_leer_bloque_raw;
+ emufs_tipo3_inicializar(efs);
break;
- }
+
+ case T4:
+ /* Lee cabeceras propias. */
+ if (!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) {
+ free(efs->nombre);
+ free(efs);
+ fclose(fp);
+ return NULL;
+ }
+ emufs_tipo4_inicializar(efs);
+ break;
+
+ case T5:
+ if ((!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) ||
+ (!fread(&(efs->tam_reg), sizeof(EMUFS_REG_SIZE), 1, fp)))
+ {
+ free(efs->nombre);
+ free(efs);
+ fclose(fp);
+ return NULL;
+ }
+ /* Asigna punteros a funciones. */
+ emufs_tipo5_inicializar(efs);
+ }
fclose(fp);
return efs;
/* y que no exista un indice primario */
PERR("Agregando indice");
tmp = emu->indices;
+ PERR("IGUALE");
while (tmp) {
if (strcmp(tmp->nombre, nombre)==0) {
error = 1;