+char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
+{
+ char *tmp, *salida, *tmp1, pos_actualizada, ant;
+ int cant_header, i=0, j, tam_data;
+ if (ptr == NULL) return NULL;
+
+ /* Calculo cuantos headers de registros va a haber en el archivo */
+ if (emu->tam_bloque > emu->tam_reg) {
+ cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
+ if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
+ tam_data = sizeof(t_Articulo)-sizeof(unsigned int);
+ } else {
+ cant_header = 1;
+ tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
+ }
+
+ /* El tamaño del nuevo array lo calculo asi :
+ *
+ * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
+ * + 10*(cant_headers+cant_registros) +1
+ *
+ * En tipo3, la cantidad de headers y cant de registros es la misma
+ * El 10 es por : (XXXXXXXX)
+ * +1 == Por el \0
+ */
+ salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
+ if (salida == NULL) {
+ fprintf(stderr, "Error de malloc en salida\n");
+ return NULL;
+ }
+ tmp = ptr;
+ tmp1 = salida;
+ pos_actualizada = 0;
+ while (i<cant_header) {
+ fprintf(stderr, "voy a hacer el %d de %d\n", i, cant_header);
+ /* Verifico la pos_actual para el resaltado, asi queda coherente
+ * en el cambio de formato
+ */
+ if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
+ (*pos_actual) = tmp1-salida;
+ pos_actualizada = 1;
+ }
+ /* Pongo el ID del registro */
+ sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
+ fprintf(stderr, "ID=%lu\n",*((EMUFS_REG_ID *)tmp) );
+ tmp1 += 10;
+ tmp += sizeof(EMUFS_REG_ID);
+ /* Pongo el campo numero del registro */
+ sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
+ fprintf(stderr, "Numero=%d\n",*((unsigned int *)tmp) );
+ tmp1 += 10;
+ tmp += sizeof(unsigned int);
+ j = 0;
+ while (j < (tam_data)) {
+ if (*tmp == '\0') {
+ if (ant == (*tmp))
+ (*tmp1) = '.';
+ else
+ (*tmp1) = '|';
+ } else {
+ (*tmp1) = (*tmp);
+ }
+ ant = (*tmp);
+ tmp++;
+ tmp1++;
+ j++;
+ }
+ i++;
+ }
+ free(ptr);
+
+ if (emu->tam_bloque > emu->tam_reg) {
+ (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
+ (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
+ } else {
+ (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
+ (*ancho) = (*size);
+ }
+ memset(tmp1, '.', (*size)-(tmp1-salida));
+ salida[*size-1] = '\0';
+
+ return salida;
+}
+
+char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
+{
+ EMUFS_REG_SIZE offset, curr_size;
+ char *tmp, *salida, *tmp1, pos_actualizada, ant;
+ int cant_header, i=0, j;
+ if (ptr == NULL) return NULL;
+
+ /* Cuento la cantidad de registros en este bloque */
+ cant_header = 0;
+ offset = 0;
+ fprintf(stderr, "Tam = %lu\n", *size);
+ do {
+ /* Me salto el ID, que no me interesa saber su valor */
+ offset += sizeof(EMUFS_REG_ID);
+ /* Copio el tamaño del registro de la cabecera. */
+ memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
+ offset += sizeof(EMUFS_REG_SIZE);
+
+ /* Desplazo el offset */
+ if (curr_size == 0) {
+ /* Si el tamaño de registro es 0, quiere decir que llegue a la
+ * parte que esta vacia */
+ break;
+ } else {
+ cant_header++;
+ offset += curr_size;
+ fprintf(stderr, "Sume %lu\n", curr_size);
+ }
+ } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
+
+ /* Proceso */
+ fprintf(stderr, "Cantidad de headers = %d\n", cant_header);
+ salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
+ tmp = ptr;
+ tmp1 = salida;
+ pos_actualizada = 0;
+ while (i<cant_header) {
+ /* Verifico la pos_actual para el resaltado, asi queda coherente
+ * en el cambio de formato
+ */
+ if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
+ (*pos_actual) = tmp1-salida;
+ pos_actualizada = 1;
+ }
+ /* Pongo el ID del registro */
+ sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
+ tmp1 += 10;
+ tmp += sizeof(EMUFS_REG_ID);
+ /* Pongo el tamaño del registro */
+ sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
+ curr_size = *((EMUFS_REG_SIZE *)tmp);
+ if (pos_actualizada == 1) {
+ (*ancho) = curr_size-sizeof(unsigned int)+30;
+ pos_actualizada = 2;
+ }
+ tmp1 += 10;
+ tmp += sizeof(EMUFS_REG_SIZE);
+ /* Pongo el campo numero del registro */
+ sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
+ tmp1 += 10;
+ tmp += sizeof(unsigned int);
+ j = sizeof(unsigned int);
+ PERR("Voy aca");
+ fprintf(stderr, "son %lu\n", curr_size);
+ while (j < curr_size) {
+ if (*tmp == '\0') {
+ if (ant == (*tmp))
+ (*tmp1) = '.';
+ else
+ (*tmp1) = '|';
+ } else {
+ (*tmp1) = (*tmp);
+ }
+ ant = (*tmp);
+ tmp++;
+ tmp1++;
+ j++;
+ }
+ PERR("Y hasta todo bien");
+ i++;
+ }
+ /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
+ (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
+ memset(tmp1, '.', (*size)-(tmp1-salida));
+ free(ptr);
+ salida[*size-1] = '\0';
+
+ return salida;
+}
+
+int preguntar_id(WINDOW *win, EMUFS *fp)
+{
+ int n=-1, j=0;
+ t_Form *form = form_crear(win);
+ form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
+
+ do {
+ if (j != 0) {
+ curs_set(0);
+ wattron(win, COLOR_PAIR(COLOR_YELLOW));
+ wattron(win, A_BOLD);
+ mvwaddstr(win, 2, 1, "Registro no encontrado!!");
+ wattroff(win, A_BOLD);
+ wattroff(win, COLOR_PAIR(COLOR_YELLOW));
+ wrefresh(win);
+ getch();
+ werase(win);
+ box(win, 0, 0);
+ }
+ form_ejecutar(form, 1,1);
+
+ n = form_obtener_valor_int(form, "ID a buscar");
+ j = 1;
+ } while (emufs_idx_existe_id(fp, n) != 0);
+
+ form_destruir(form);
+ return n;
+}
+
+char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
+{
+ char *tmp, *salida, *tmp1, pos_actualizada, ant;
+ char flotante[10];
+ int cant_header, i=0, j, tam_data, k;
+ int cant_items;
+ if (ptr == NULL) return NULL;
+
+ PERR("Empieza el baile");
+
+ /* Calculo cuantos headers de registros va a haber en el archivo */
+ if (emu->tam_bloque > emu->tam_reg) {
+ cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
+ if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
+ tam_data = emu->tam_reg-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
+ } else {
+ cant_header = 1;
+ tam_data = (*size) - sizeof(EMUFS_REG_ID)-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
+ }
+
+ fprintf(stderr, "Tengo %d headers\n", cant_header);
+ /* El tamaño del nuevo array lo calculo asi :
+ *
+ */
+ tmp1 = salida = (char *)malloc(1000000); /*(*size)-(sizeof(char *)+sizeof(t_Item *)+sizeof(EMUFS_REG_ID)+sizeof(int)*3+sizeof(float)+sizeof(EMUFS_BLOCK_ID))*cant_header + 5*cant_header*10+1);*/
+ if (salida == NULL) {
+ PERR("Error de malloc en salida");
+ return NULL;
+ }
+ tmp = ptr;
+ pos_actualizada = 0;
+ (*ancho) = 0;
+ while (i<cant_header) {
+ /* Verifico la pos_actual para el resaltado, asi queda coherente
+ * en el cambio de formato
+ */
+ fprintf(stderr, "%d == %d\n", tmp-ptr, *pos_actual);
+ if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
+ (*pos_actual) = tmp1-salida;
+ pos_actualizada = 1;
+ }
+ /* Pongo el ID del registro */
+ sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
+ tmp1 += 10;
+ tmp += sizeof(EMUFS_REG_ID);
+ /* Pongo el campo numero */
+ sprintf(tmp1, "[%08d]", *((int *)tmp));
+ tmp1 += 10;
+ tmp += sizeof(int);
+ /* Pongo campo procdoi */
+ sprintf(flotante, "[%5.2f]", *((float *)tmp));
+ memcpy(tmp1, flotante, strlen(flotante));
+ tmp1 += strlen(flotante);
+ tmp += sizeof(float);
+ /* Pongo campo numero_remito */
+ sprintf(tmp1, "[%08d]", *((int *)tmp));
+ tmp1 += 10;
+ tmp += sizeof(int);
+ /* Pongo numero de items */
+ sprintf(tmp1, "[%08d]", *((int *)tmp));
+ cant_items = *((int *)tmp);
+ tmp1 += 10;
+ tmp += sizeof(int);
+ /* Pongo reg_nota */
+ sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
+ tmp1 += 10;
+ tmp += sizeof(EMUFS_BLOCK_ID);
+
+ if (pos_actualizada == 1) {
+ (*ancho) = 50+strlen(flotante);
+ }
+ j = 0;
+ while (j < (tam_data-10*sizeof(t_Item))) {
+ if (*tmp == '\0') {
+ if (ant == (*tmp)){
+ (*tmp1) = '.';
+ } else {
+ (*tmp1) = '|';
+ }
+ } else {
+ (*tmp1) = (*tmp);
+ }
+ ant = (*tmp);
+ tmp++;
+ tmp1++;
+ if (pos_actualizada == 1)
+ (*ancho)++;
+ j++;
+ }
+ /* Ahora proceso los items */
+ k = 0;
+ while (k < 10) {
+ sprintf(tmp1, "[%08d]", *((int *)tmp));
+ tmp1 += 10;
+ tmp += sizeof(int);
+ if (pos_actualizada == 1)
+ (*ancho)+=10;
+ j = 0;
+ while (j < (sizeof(t_Item)-sizeof(int))) {
+ if (*tmp == '\0') {
+ if (ant == (*tmp)){
+ (*tmp1) = '.';
+ } else {
+ (*tmp1) = '|';
+ }
+ } else {
+ (*tmp1) = (*tmp);
+ }
+ ant = (*tmp);
+ tmp++;
+ tmp1++;
+ if (pos_actualizada == 1)
+ (*ancho)++;
+ j++;
+ }
+ k++;
+ }
+ if (pos_actualizada == 1)
+ pos_actualizada = 2;
+ i++;
+ }
+ free(ptr);
+
+ PERR("Termine");
+ if (emu->tam_bloque > emu->tam_reg) {
+ (*size) = tmp1-salida;
+ } else {
+ (*size) = tmp1-salida;
+ (*ancho) = tmp1-salida;
+ }
+ salida[*size-1] = '\0';
+
+ return salida;
+}
+
+char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)