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)
t_Articulo *articulo;
t_Form *form;
INDICE *idx;
+ int editar;
idx = lst_articulos->fp->indices;
PERR("AGREGO A LA LISTA");
fprintf(stderr, "%d - %s\n", articulo->numero, articulo->desc);
lista_agregar_fila(lista,
- articulo->numero,
- articulo->desc,
- articulo->existencia,
- articulo->emin
- );
+ articulo->numero,
+ articulo->desc,
+ articulo->existencia,
+ articulo->emin
+ );
free(articulo);
}
PERR("OBTENGO SIGUIENTE CLAVE");
}
curs_set(0);
- lista_ejecutar(lista);
+ editar = lista_ejecutar(lista);
curs_set(1);
+
+ if (editar != -1) {
+ char cc[20];
+ sprintf(cc, "%d", editar);
+ art_modificar(cc);
+ }
}
void art_consultas_stock(char *s, t_Lista *lista)
t_Form *form;
INDICE *idx;
float por;
+ int editar;
idx = emufs_buscar_indice_por_nombre(lst_articulos->fp, "desc");
if (idx == NULL) PERR("NO SE ENCUENTRA INDICE DESC!!!");
}
curs_set(0);
- lista_ejecutar(lista);
+ editar = lista_ejecutar(lista);
curs_set(1);
+ if (editar != -1) {
+ char cc[20];
+ sprintf(cc, "%d", editar);
+ art_modificar(cc);
+ }
}
void art_consultas_cambiar_precio(char *s, t_Lista *lista)
void art_consultas_varias(char *nombre_indice, char *titulo, t_Lista *lista)
{
- int i, cant, error;
+ int i, cant, error, editar;
char desc[51], *tmp;
t_Articulo articulo;
t_Form *form;
}
if (datos) free(datos);
curs_set(0);
- lista_ejecutar(lista);
+ editar = lista_ejecutar(lista);
curs_set(1);
+ if (editar != -1) {
+ char cc[20];
+ sprintf(cc, "%d", editar);
+ art_modificar(cc);
+ }
}
win = newwin(LINES-4, COLS-2, 2, 1);
win1 = derwin(win, LINES-6, COLS-4, 1, 1);
+ werase(win1);
werase(win);
box(win, 0, 0);
+ wrefresh(win1);
wrefresh(win);
/* Creo la lista donde mostrar la consulta*/
lista_clear(lista);
werase(win1);
werase(win);
- wrefresh(win1);
box(win, 0, 0);
+ wrefresh(win1);
wrefresh(win);
}
werase(win1);
win = newwin(LINES-4, COLS-2, 2, 1);
win1 = derwin(win, LINES-6, COLS-4, 1, 1);
werase(win);
+ werase(win1);
box(win, 0, 0);
+ wrefresh(win1);
wrefresh(win);
PERR("Obtengo clave menor");
mostrar_art(win1, k, s, idx);
wrefresh(win1);
+ wrefresh(win);
PERR("Sigue el usuario");
curs_set(0);
stack[0] = k;
continue;
}
werase(win1);
+ werase(win);
mostrar_art(win1, k, s, idx);
wrefresh(win1);
+ wrefresh(win);
}
curs_set(1);
win = newwin(LINES-4, COLS-2, 2, 1);
win1 = derwin(win, LINES-6, COLS-4, 1, 1);
werase(win);
+ werase(win1);
box(win, 0, 0);
+ wrefresh(win1);
wrefresh(win);
/* El usuario ingresa rango a listar */
form_destruir(form);
werase(win1);
wrefresh(win1);
+ werase(win);
+ wrefresh(win);
/* Si el usuario no ingreso alguno de los datos, lo obtengo del indice */
/*idx = emufs_buscar_indice_por_nombre(fact_get_lst()->fp, "emision");*/
CLAVE k;
INDICE_DATO dummy1;
k.i_clave = numero;
+ EMUFS *fp;
/* dummy se pasa porque esto se hace por clave primaria, y el INDICE_DATO que se
* pasa solo es requerido cuando son claves multiples
*/
PERR("Guardando modificacion de Stock");
error = 0;
fprintf(stderr, "PTR=%p %p\n", lst_articulos, lst_articulos->fp);
- lst_articulos->fp->modificar_registro(lst_articulos->fp, k, tmp, size, &error, dummy1);
+ fp = lst_articulos->fp;
+ PERR("Pase1");
+ fprintf(stderr, "METODO : %p\n", fp->modificar_registro);
+ fp->modificar_registro(fp, k, tmp, size, &error, dummy1);
+ PERR("Pase2");
PERR("Listo");
free(tmp);
}
}
}
+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;
+}
+