static void *procesar_guardar_articulo(t_Articulo *src, EMUFS_REG_SIZE *size, t_LstArticulos *lst);
static int procesar_leer_articulo(t_Articulo *dst, void *src, EMUFS_REG_SIZE size, t_LstArticulos *lst);
+static void dump_articulos(char *tmpfile);
+
#ifdef TP_PRIMER_ENTREGA
/* Manejo de la lista doble */
static t_Reg_Articulo *crear_nodo_articulo(EMUFS_REG_ID reg, unsigned int num);
return tmp;
}
-void art_reformatear(int tipo, int tam_bloque, int tam_reg)
+void art_reformatear(t_Parametros *param)
{
-#ifdef NO_SE_PUEDE_USAR
- 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 *tmpfile = "tmp_file.xxx";
+ FILE *fp;
char *save;
+ int error;
+ EMUFS_REG_SIZE size;
+ EMUFS *emu;
+ t_Articulo articulo, *un_articulo;
- PERR("==== EMPIEZO ====\n");
- old = lst_articulos->fp;
-
- /* Creo el nuevo file */
- PERR("Creo el archivo\n");
- nuevo = emufs_crear("emufs_tmp", tipo, tam_bloque, sizeof(t_Articulo));
- if (nuevo == NULL) {
- PERR("ARCHIVO NUEVO NO CREADO");
- return;
- }
+ /* Creo el archivo temporal con los datos actuales */
+ PERR("Creo dumpfile");
+ dump_articulos(tmpfile);
+ PERR("Listo");
- /* 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;
- }
+ /* Destruyo el EMUFS y todos sus indices */
+ art_liberar(NULL);
- 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) {
+ /* vuelvo a crear el EMUFS y sus indices (esto deberia pisar lo actual) */
+ PERR("Creando todo de nuevo")
+
+ lst_articulos = (t_LstArticulos *)malloc(sizeof(t_LstArticulos));
+
+ emu = lst_articulos->fp = emufs_crear("articulos", param->tipo_arch_art, param->tam_bloque_art, sizeof(t_Articulo));
+ emufs_agregar_indice(emu, "presentacion", IND_EXAHUSTIVO, param->ind_art[2].tipo_arbol, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), param->ind_art[2].tam_bloque, 1);
+ emufs_agregar_indice(emu, "desc", IND_EXAHUSTIVO, param->ind_art[1].tipo_arbol, IDX_STRING, STRUCT_OFFSET(un_articulo, desc), param->ind_art[1].tam_bloque, 0);
+ emufs_agregar_indice(emu, "codigo", IND_PRIMARIO, param->ind_art[0].tipo_arbol, IDX_INT, 0, param->ind_art[0].tam_bloque, 0);
+ PERR("Listo");
+ /* Ahora solo resta volver a meter todos los datos en el archivo */
+ fp = fopen(tmpfile, "rb");
+ PERR("Agregando datos de nuevo")
+ while (!feof(fp)) {
+ if (fread(&articulo, sizeof(t_Articulo), 1, fp) != 1) continue;
+ save = procesar_guardar_articulo(&articulo, &size, lst_articulos);
+ if (save) {
+ error = 0;
+ emu->grabar_registro(emu, save, size, &error);
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");
-#endif
+ fclose(fp);
+ PERR("Todo listo");
+ unlink(tmpfile);
}
int art_exportar_xml(const char *filename)
}
}
+static void dump_articulos(char *tmpfile)
+{
+ t_Articulo *art;
+ EMUFS_REG_ID id;
+ FILE *fp;
+ CLAVE k;
+ INDICE *idx;
+
+ idx = lst_articulos->fp->indices;
+
+ k = idx->obtener_menor_clave(idx);
+
+ if (!(fp = fopen(tmpfile, "wb"))) return;
+
+ while (k.i_clave != -1) {
+ art = art_obtener(lst_articulos, k.i_clave, &id);
+ if (art != NULL) {
+ fwrite(art, 1, sizeof(t_Articulo), fp);
+ free(art);
+ }
+ k = idx->obtener_sig_clave(idx, k);
+ }
+
+ fclose(fp);
+ return;
+}
+