}
/* Si estoy manejando string tengo que sacar las abreviaturas */
- if (idx->tipo_dato == IDX_STRING) {
+/* XXX if (idx->tipo_dato == IDX_STRING) {
b_leer_header(out, &header);
claves = b_leer_claves(out, &header);
desabreviar_claves(idx, claves, &header);
- }
+ }*/
fclose(fp);
return out;
}
B_NodoEntry *claves;
/* Si las claves son de tipo string debo abreviar antes de guardar */
- if (idx->tipo_dato == IDX_STRING) {
+/*XXX if (idx->tipo_dato == IDX_STRING) {
b_leer_header(data, &header);
claves = b_leer_claves(data, &header);
abreviar_claves(idx, claves, &header);
- }
+ }*/
fp = fopen(idx->filename, "r+");
fseek(fp, id*idx->tam_bloque, SEEK_SET);
fwrite(data, 1, idx->tam_bloque, fp);
while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, k))) i++;
if ((i<header.cant) && (emufs_indice_es_igual(idx, claves[i].clave, k))) {
/* LA ENCONTRE! , ahora busco la siguiente clave!! */
+ fprintf(stderr, "Me encontre en pos %d en el padre\n", i);
if ((i+1)<header.cant) {
+ PERR("Joya, hay lugar a la derecha");
if (claves[i].hijo_derecho == -1) {
+ PERR("Y soy hoja!!");
/* Joya!, fue facil, la siguiente va en camino! */
- salida = claves[i].clave;
+ salida = claves[i+1].clave;
free(nodo);
return salida;
}
+ PERR("No soy hoja, busco la hoja de menor");
/* Mmmmm ... la siguiente esta en uno de mis hijo */
/* Necesito la mas chica de las siguientes, para eso
* me voy a mi hijo derecho y de ahi bajo siempre
return salida;
}
+ PERR("Fuck, tengo que ir otro nodo a buscar");
/* Fuck, la siguiente clave la tengo que sacar de padre */
/* Busco al mi padre, perdido en un maremoto hace mucho,muchos
* aƱos
*/
free(nodo);
+ if (header.padre == -1) {
+ salida.i_clave = -1;
+ return salida;
+ }
nodo = b_leer_nodo(idx, header.padre);
b_leer_header(nodo, &header);
claves = b_leer_claves(nodo, &header);
i = 0;
- while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, k))) i++;
- if (i<header.cant)
+ PERR("Busco mi siguiente en mi padre");
+ fprintf(stderr, "Padre tiene %d claves\n", header.cant);
+ while ((i<header.cant) && (emufs_indice_es_menor(idx, claves[i].clave, k))) {
+ i++;
+ fprintf(stderr, "Proximo i : %d\n", i);
+ }
+ if (i<header.cant) {
+ PERR("Siguiente clave encontrada");
salida = claves[i].clave;
- else
+ } else {
/* No hay mas claves! */
+ PERR("Busque y busque pero no aparecio");
salida.i_clave = -1;
+ }
return salida;
} else {
tmp = nodo;
}
/* No encontre la clave pasada, no existe */
+ PERR("No encontre la clave pasada!!");
salida.i_clave = -1;
return salida;
}
t_Form *form;
WINDOW *win, *win1;
INDICE *idx;
- CLAVE k;
+ CLAVE k_menor, k_mayor;
win = newwin(LINES-4, COLS-2, 2, 1);
win1 = derwin(win, LINES-6, COLS-4, 1, 1);
idx = emufs_buscar_indice_por_nombre(lst_facturas->fp, "emision");
if (idx==NULL) PERR("INDICE EMISION NO SE ENCUENTRA!!");
if (strlen(desde_fecha) == 0) {
- k = idx->obtener_menor_clave(idx);
- emufs_indice_obtener_valor_desde_clave(idx, k, desde_fecha);
+ k_menor = idx->obtener_menor_clave(idx);
+ emufs_indice_obtener_valor_desde_clave(idx, k_menor, desde_fecha);
PERR("OBTUVE MENOR CLAVE DESDE EL INDICE");
PERR(desde_fecha);
}
if (strlen(hasta_fecha) == 0) {
- k = idx->obtener_mayor_clave(idx);
- emufs_indice_obtener_valor_desde_clave(idx, k, hasta_fecha);
+ k_mayor = idx->obtener_mayor_clave(idx);
+ emufs_indice_obtener_valor_desde_clave(idx, k_mayor, hasta_fecha);
PERR("OBTUVE MAYOR CLAVE DESDE EL INDICE");
PERR(hasta_fecha);
}
lista_agregar_columna(lista, "Forma de Pago", DATO_STR, 40, 19); /* fp */
/* Leo los datos desde el archivo */
- while (k.i_clave != -1) {
+ while (k_menor.i_clave != -1) {
t_Factura fact;
int error, cant, i;
char *leo;
EMUFS_REG_SIZE size;
INDICE_DATO *datos;
CLAVE k1;
- datos = idx->buscar_entradas(idx, k, &cant);
+ datos = idx->buscar_entradas(idx, k_menor, &cant);
for(i=0; i<cant; i++) {
error = 1;
k1.i_clave = datos[i].id;
);
}
if (datos) free(datos);
- k = idx->obtener_sig_clave(idx, k);
+ k_menor = idx->obtener_sig_clave(idx, k_menor);
}
curs_set(0);