+void art_reformatear(int tipo, int tam_bloque, int tam_reg)
+{
+ EMUFS *nuevo, *old;
+ EMUFS_REG_ID *indices, id;
+ EMUFS_REG_SIZE indices_total, i, size;
+ t_Articulo art;
+ t_LstArticulos *lst_nueva;
+ int error;
+ char *save;
+
+ PERR("==== EMPIEZO ====\n");
+ old = lst_articulos->fp;
+
+ /* Si el tipo es el mismo, no tengo que hacer nada! */
+ if (old->tipo == tipo) return;
+
+ /* Creo el nuevo file */
+ PERR("Creo el archivo\n");
+ nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
+ if (nuevo == NULL) {
+ fprintf(stderr, "ARCHIVO NUEVO NO CREADO\n");
+ return;
+ }
+
+ /* Creo la nueva lista */
+ lst_nueva = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
+ lst_nueva->primero = NULL;
+ lst_nueva->fp = nuevo;
+
+ /* Leo los indices del archivo viejo */
+ PERR("Obtengo Indices\n");
+ indices = emufs_idx_get(old, &indices_total);
+ if (indices == NULL) {
+ art_liberar(lst_nueva);
+ return;
+ }
+
+ PERR("Proceso datos\n");
+ for(i=0; i<indices_total; i++) {
+ error = 0;
+ save = old->leer_registro(old, indices[i], &size, &error);
+ if (procesar_leer_articulo(&art, save, size, lst_articulos) == 1) {
+ free(save);
+ /* Lei un registro Ok. Lo salvo en el archivo nuevo */
+ save = procesar_guardar_articulo(&art, &size, lst_nueva);
+ if (save) {
+ error = 0;
+ id = nuevo->grabar_registro(nuevo, save, size, &error);
+ agregar_nodo_articulo(lst_nueva, crear_nodo_articulo(id, art.numero));
+ free(save);
+ }
+ }
+ }
+
+ free(indices);
+
+ PERR("Libero lo viejo\n");
+ art_liberar(lst_articulos);
+
+ PERR("Ahora tengo lo nuevo\n");
+ lst_articulos = lst_nueva;
+
+ /* El nuevo tiene como nombre emufs_tmp, lo cambio a mano! */
+ free(lst_articulos->fp->nombre);
+ lst_articulos->fp->nombre = (char *)malloc(sizeof(char)*(strlen("articulos")+1));
+ strcpy(lst_articulos->fp->nombre, "articulos");
+
+ /* Muevo los archivos! */
+ /* TODO : Poner en otro lugar mas generico! */
+ PERR("Renombre!!\n");
+ rename("emufs_tmp.dat", "articulos.dat");
+ rename("emufs_tmp.idx", "articulos.idx");
+ rename("emufs_tmp.fsc", "articulos.fsc");
+ rename("emufs_tmp.did", "articulos.did");
+ PERR("==== TERMINE ====\n");
+}
+