8 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
9 static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
10 static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
12 static char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
13 static char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
15 static int preguntar_id(WINDOW *win, EMUFS *fp);
17 void mostrar_info(WINDOW *padre, int h, int offset_alto)
20 wattron(padre, A_BOLD);
21 wattron(padre, COLOR_PAIR(COLOR_RED));
22 mvwaddstr(padre, h-offset_alto+1, 5, "Teclas :");
23 wattroff(padre, A_BOLD);
24 wattroff(padre, COLOR_PAIR(COLOR_RED));
25 mvwaddstr(padre, h-offset_alto+2, 8, "Salir = ENTER");
26 mvwaddstr(padre, h-offset_alto+3, 8, "Scroll = A/Z");
27 mvwaddstr(padre, h-offset_alto+4, 8, "Seleccionar registros = K/L");
28 mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: ");
30 wattron(padre, A_BOLD);
32 wattroff(padre, A_BOLD);
33 waddstr(padre, "regar ");
34 wattron(padre, A_BOLD);
36 wattroff(padre, A_BOLD);
37 waddstr(padre, "ofidicar ");
38 wattron(padre, A_BOLD);
40 wattroff(padre, A_BOLD);
41 waddstr(padre, "liminar ");
42 mvwaddstr(padre, h-offset_alto+6, 8, "Buscar ID : B");
45 wattron(padre, A_BOLD);
46 wattron(padre, COLOR_PAIR(COLOR_RED));
47 mvwaddstr(padre, h-offset_alto+1, 45, "Leyenda :");
48 wattroff(padre, A_BOLD);
49 wattroff(padre, COLOR_PAIR(COLOR_RED));
50 mvwaddstr(padre, h-offset_alto+2, 48, " | = Separador de campo");
51 mvwaddstr(padre, h-offset_alto+3, 48, "[XXX] = Campo numerico");
52 mvwaddstr(padre, h-offset_alto+4, 48, "(XXX) = ID de registro");
53 mvwaddstr(padre, h-offset_alto+5, 48, "{XXX} = Tam. de registro");
54 mvwaddstr(padre, h-offset_alto+6, 48, " . = Esp. Libre");
55 mvwaddstr(padre, h-offset_alto+7, 48, " < > = Separador Bloques");
58 char *juntar_memoria(char *s1, char *s2, char *s3, int size1, int size2, int size3)
65 salida = (char *)malloc(tam);
73 if (s1) memcpy(salida, s1, size1);
74 if (s2) memcpy(salida+size2, s2, size2);
75 if (s3) memcpy(salida+size2+size3, s3, size3);
82 void ver_bloques(WINDOW *padre, int w, int h, int cual)
84 /* Ventanas donde mostrar las cosas */
85 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
86 WINDOW *actual[2], *dlg;
87 EMUFS_REG_SIZE size, size_actual, size_siguiete, size_anterior;
88 int scroll, actual_ancho;
89 int max_scroll, c, offset_alto;
90 /* Indices que hay validos en IDX */
91 EMUFS_REG_ID indices_total, indices_actual;
92 char *bloque_actual, *bloque_anterior, *bloque_siguiente;
93 char *data; /* Registros a mostrar en pantalla */
95 int pos_actual, ancho_registro, offset, pos;
96 EMUFS_Estadisticas stats;
99 fp = emufs_abrir("articulos");
101 fp = emufs_abrir("facturas");
103 fp = emufs_abrir("notas");
105 stats = fp->leer_estadisticas(fp);
107 wattron(padre, COLOR_PAIR(COLOR_BLUE));
108 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
109 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
112 waddstr(padre, "Registro variable con bloque parametrizado.");
114 procesar = procesar_registro_articulo_tipo1;
116 procesar = procesar_registro_factura_tipo1;
119 waddstr(padre, "Registro variable sin bloques.");
120 actual[0] = msg_box(padre, w, h, "El tipo de archivo no contiene bloques.");
122 msg_box_free(padre, actual[0]);
127 procesar = procesar_registro_articulo_tipo3;
129 procesar = procesar_registro_factura_tipo3;
130 waddstr(padre, "Registro fijo con bloque parametrizado.");
135 indices_total = stats.cant_bloques;
137 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
139 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
141 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
143 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
144 if (!bloque_siguiente) {
145 bloque_siguiente = (char *)malloc(size_siguiete);
146 memset(bloque_siguiente, 0, size_siguiete);
148 if (!bloque_anterior) {
149 bloque_anterior = (char *)malloc(size_anterior);
150 memset(bloque_anterior, 0, size_anterior);
152 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
153 ancho_registro = size_actual;
154 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
156 PERR("HASTA ACA VOY BIEN");
158 max_scroll = (size_actual+size_anterior+size_siguiete) / (w-4) - (h-offset_alto-2);
159 if (max_scroll < 0) max_scroll = 0;
161 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
163 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
164 box(actual[0], 0, 0);
168 mostrar_info(padre, h, offset_alto);
170 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
171 wattron(actual[1], A_BOLD);
172 waddnstr(actual[1], data+pos_actual, ancho_registro);
173 wattroff(actual[1], A_BOLD);
174 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
180 while ((c=getch()) != 13) {
184 dlg = newwin(4, 50, h/2-2, w/2-25);
186 preguntar_id(dlg, fp);
193 case 'a': /* Scroll */
195 if (scroll < 0) scroll = 0;
197 case 'z': /* Scroll */
199 if (scroll > max_scroll) scroll = max_scroll;
202 if (indices_actual < indices_total) {
204 if (indices_actual >= indices_total) indices_actual = indices_total-1;
205 if (data) free(data);
206 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
207 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
208 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
209 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
210 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
211 ancho_registro = size_actual;
212 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
216 if (indices_actual != EMUFS_NOT_FOUND) {
218 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
219 if (data) free(data);
220 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
221 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
222 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
223 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
224 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
225 ancho_registro = size_actual;
226 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
229 /* Borro las ventanas */
232 /* Imprimo los registros */
234 offset = scroll*actual_ancho; /* Cantidad de caracteres que tengo que saltar */
235 pos = pos_actual - offset; /* Cantidad de caracteres que hay antes de mi a imprimir */
236 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
241 wattron(actual[1], A_BOLD);
242 waddnstr(actual[1], data+offset, ancho_registro+((pos<0)?pos:0));
243 wattroff(actual[1], A_BOLD);
244 offset += ancho_registro+((pos<0)?pos:0);
245 waddnstr(actual[1], data+offset, size-offset);
251 if (data) free(data);
259 void ver_registros(WINDOW *padre, int w, int h, int cual)
261 /* Ventanas donde mostrar las cosas */
262 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
263 WINDOW *actual[2], *dlg;
265 int scroll, actual_ancho;
266 int max_scroll, c, offset_alto;
267 /* Indices que hay validos en IDX */
268 EMUFS_REG_ID *indices, indices_total, indices_actual;
269 char *data; /* Registros a mostrar en pantalla */
270 char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
272 int pos_actual, ancho_registro, offset, pos;
275 fp = emufs_abrir("articulos");
277 fp = emufs_abrir("facturas");
279 wattron(padre, COLOR_PAIR(COLOR_BLUE));
280 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
281 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
284 waddstr(padre, "Registro variable con bloque parametrizado.");
286 procesar = procesar_registro_articulo_tipo1;
288 procesar = procesar_registro_factura_tipo1;
291 waddstr(padre, "Registro variable sin bloques.");
295 procesar = procesar_registro_articulo_tipo3;
297 procesar = procesar_registro_factura_tipo3;
298 waddstr(padre, "Registro fijo con bloque parametrizado.");
301 indices = emufs_idx_get(fp, &indices_total);
305 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
306 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
311 max_scroll = size / (w-4) - (h-offset_alto-2);
312 if (max_scroll < 0) max_scroll = 0;
314 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
316 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
317 box(actual[0], 0, 0);
321 mostrar_info(padre, h, offset_alto);
323 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
324 wattron(actual[1], A_BOLD);
325 waddnstr(actual[1], data+pos_actual, ancho_registro);
326 wattroff(actual[1], A_BOLD);
327 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
333 while ((c=getch()) != 13) {
337 dlg = newwin(4, 50, h/2-2, w/2-25);
339 preguntar_id(dlg, fp);
348 if (indices_actual != EMUFS_NOT_FOUND)
349 fp->borrar_registro(fp, indices[indices_actual]);
352 indices = emufs_idx_get(fp, &indices_total);
353 if (indices_actual >= indices_total) {
354 indices_actual = indices_total - 1;
357 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
358 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
367 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
368 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
371 indices = emufs_idx_get(fp, &indices_total);
373 /* Tengo que re-pintar algunas cosas */
374 mostrar_info(padre, h, offset_alto);
375 box(actual[0], 0, 0);
379 case 'm': /* Quiero editar !!! */
380 sprintf(codigo, "%lu", indices[indices_actual]);
382 art_modificar(codigo);
384 fact_modificar(codigo);
385 /* Vuelvo a cargar el articulo actual */
388 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
389 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
391 /* Tengo que re-pintar algunas cosas */
392 mostrar_info(padre, h, offset_alto);
393 box(actual[0], 0, 0);
396 case 'a': /* Scroll */
398 if (scroll < 0) scroll = 0;
400 case 'z': /* Scroll */
402 if (scroll > max_scroll) scroll = max_scroll;
405 if (indices_actual < indices_total) {
407 if (indices_actual >= indices_total) indices_actual = indices_total-1;
408 if (data) free(data);
409 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
410 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
414 if (indices_actual != EMUFS_NOT_FOUND) {
416 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
417 if (data) free(data);
418 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
419 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
423 /* Borro las ventanas */
426 /* Imprimo los registros */
428 offset = scroll*actual_ancho;
429 pos = pos_actual - offset;
430 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
432 wattron(actual[1], A_BOLD);
433 waddnstr(actual[1], data+offset, ancho_registro);
434 wattroff(actual[1], A_BOLD);
435 offset += ancho_registro;
436 waddnstr(actual[1], data+offset, size-offset);
442 if (indices) free(indices);
443 if (data) free(data);
451 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
453 char *tmp, *salida, *tmp1, pos_actualizada, ant;
454 int cant_header, i=0, j, tam_data;
455 if (ptr == NULL) return NULL;
457 /* Calculo cuantos headers de registros va a haber en el archivo */
458 if (emu->tam_bloque > emu->tam_reg) {
459 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
460 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
461 tam_data = sizeof(t_Articulo)-sizeof(unsigned int);
464 tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
467 /* El tamaño del nuevo array lo calculo asi :
469 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
470 * + 10*(cant_headers+cant_registros) +1
472 * En tipo3, la cantidad de headers y cant de registros es la misma
473 * El 10 es por : (XXXXXXXX)
476 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
477 if (salida == NULL) {
483 while (i<cant_header) {
484 /* Verifico la pos_actual para el resaltado, asi queda coherente
485 * en el cambio de formato
487 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
488 (*pos_actual) = tmp1-salida;
491 /* Pongo el ID del registro */
492 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
494 tmp += sizeof(EMUFS_REG_ID);
495 /* Pongo el campo numero del registro */
496 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
498 tmp += sizeof(unsigned int);
500 while (j < (tam_data)) {
518 if (emu->tam_bloque > emu->tam_reg) {
519 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
520 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
522 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
525 memset(tmp1, '.', (*size)-(tmp1-salida));
526 salida[*size-1] = '\0';
531 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
533 EMUFS_REG_SIZE offset, curr_size;
534 char *tmp, *salida, *tmp1, pos_actualizada, ant;
535 int cant_header, i=0, j;
536 if (ptr == NULL) return NULL;
538 /* Cuento la cantidad de registros en este bloque */
542 /* Me salto el ID, que no me interesa saber su valor */
543 offset += sizeof(EMUFS_REG_ID);
544 /* Copio el tamaño del registro de la cabecera. */
545 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
546 offset += sizeof(EMUFS_REG_SIZE);
548 /* Desplazo el offset */
549 if (curr_size == 0) {
550 /* Si el tamaño de registro es 0, quiere decir que llegue a la
551 * parte que esta vacia */
557 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
560 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
564 while (i<cant_header) {
565 /* Verifico la pos_actual para el resaltado, asi queda coherente
566 * en el cambio de formato
568 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
569 (*pos_actual) = tmp1-salida;
572 /* Pongo el ID del registro */
573 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
575 tmp += sizeof(EMUFS_REG_ID);
576 /* Pongo el tamaño del registro */
577 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
578 curr_size = *((EMUFS_REG_SIZE *)tmp);
579 if (pos_actualizada == 1) {
580 (*ancho) = curr_size-sizeof(unsigned int)+30;
584 tmp += sizeof(EMUFS_REG_SIZE);
585 /* Pongo el campo numero del registro */
586 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
588 tmp += sizeof(unsigned int);
589 j = sizeof(unsigned int);
591 while (j < curr_size) {
605 PERR("Y hasta todo bien");
608 /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
609 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
610 memset(tmp1, '.', (*size)-(tmp1-salida));
612 salida[*size-1] = '\0';
617 int preguntar_id(WINDOW *win, EMUFS *fp)
620 t_Form *form = form_crear(win);
621 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
626 wattron(win, COLOR_PAIR(COLOR_YELLOW));
627 wattron(win, A_BOLD);
628 mvwaddstr(win, 2, 1, "Registro no encontrado!!");
629 wattroff(win, A_BOLD);
630 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
636 form_ejecutar(form, 1,1);
638 n = form_obtener_valor_int(form, "ID a buscar");
640 } while (emufs_idx_existe_id(fp, n) != 0);
646 char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
648 char *tmp, *salida, *tmp1, pos_actualizada, ant;
650 int cant_header, i=0, j, tam_data, k;
652 if (ptr == NULL) return NULL;
654 PERR("Empieza el baile");
656 /* Calculo cuantos headers de registros va a haber en el archivo */
657 if (emu->tam_bloque > emu->tam_reg) {
658 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
659 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
660 tam_data = emu->tam_reg-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
663 tam_data = (*size) - sizeof(EMUFS_REG_ID)-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
666 /* El tamaño del nuevo array lo calculo asi :
669 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);*/
670 if (salida == NULL) {
671 PERR("Error de malloc en salida");
677 while (i<cant_header) {
678 /* Verifico la pos_actual para el resaltado, asi queda coherente
679 * en el cambio de formato
681 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
682 (*pos_actual) = tmp1-salida;
685 /* Pongo el ID del registro */
686 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
688 tmp += sizeof(EMUFS_REG_ID);
689 /* Pongo el campo numero */
690 sprintf(tmp1, "[%08d]", *((int *)tmp));
693 /* Pongo campo procdoi */
694 sprintf(flotante, "[%5.2f]", *((float *)tmp));
695 memcpy(tmp1, flotante, strlen(flotante));
696 tmp1 += strlen(flotante);
697 tmp += sizeof(float);
698 /* Pongo campo numero_remito */
699 sprintf(tmp1, "[%08d]", *((int *)tmp));
702 /* Pongo numero de items */
703 sprintf(tmp1, "[%08d]", *((int *)tmp));
704 cant_items = *((int *)tmp);
708 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
710 tmp += sizeof(EMUFS_BLOCK_ID);
712 if (pos_actualizada == 1) {
713 (*ancho) = 50+strlen(flotante);
716 while (j < (tam_data-10*sizeof(t_Item))) {
729 if (pos_actualizada == 1)
733 /* Ahora proceso los items */
736 sprintf(tmp1, "[%08d]", *((int *)tmp));
739 if (pos_actualizada == 1)
742 while (j < (sizeof(t_Item)-sizeof(int))) {
755 if (pos_actualizada == 1)
761 if (pos_actualizada == 1)
768 if (emu->tam_bloque > emu->tam_reg) {
769 (*size) = tmp1-salida;
771 (*size) = tmp1-salida;
772 (*ancho) = tmp1-salida;
774 salida[*size-1] = '\0';
779 char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
781 char *tmp, *salida, *tmp1, pos_actualizada, ant;
782 EMUFS_REG_SIZE offset, curr_size;
784 int cant_header, i=0, j, tam_data, k;
786 if (ptr == NULL) return NULL;
788 PERR("Empieza el baile");
792 /* Me salto el ID, que no me interesa saber su valor */
793 offset += sizeof(EMUFS_REG_ID);
794 /* Copio el tamaño del registro de la cabecera. */
795 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
796 offset += sizeof(EMUFS_REG_SIZE);
798 /* Desplazo el offset */
799 if (curr_size == 0) {
800 /* Si el tamaño de registro es 0, quiere decir que llegue a la
801 * parte que esta vacia */
807 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
809 /* El tamaño del nuevo array lo calculo asi :
812 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);*/
813 if (salida == NULL) {
814 PERR("Error de malloc en salida");
821 while (i<cant_header) {
822 /* Verifico la pos_actual para el resaltado, asi queda coherente
823 * en el cambio de formato
825 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
826 (*pos_actual) = tmp1-salida;
829 /* Pongo el ID del registro */
830 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
832 tmp += sizeof(EMUFS_REG_ID);
833 /* Cantidad de espacio que ocupa la data */
834 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
835 tam_data = *((EMUFS_REG_SIZE *)tmp) - sizeof(int)*3 - sizeof(float) - sizeof(EMUFS_BLOCK_ID);
837 tmp += sizeof(EMUFS_REG_SIZE);
838 /* Pongo el campo numero */
839 sprintf(tmp1, "[%08d]", *((int *)tmp));
842 /* Pongo campo procdoi */
843 sprintf(flotante, "[%5.2f]", *((float *)tmp));
844 memcpy(tmp1, flotante, strlen(flotante));
845 tmp1 += strlen(flotante);
846 tmp += sizeof(float);
847 /* Pongo campo numero_remito */
848 sprintf(tmp1, "[%08d]", *((int *)tmp));
851 /* Pongo numero de items */
852 sprintf(tmp1, "[%08d]", *((int *)tmp));
853 cant_items = *((int *)tmp);
857 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
859 tmp += sizeof(EMUFS_BLOCK_ID);
861 if (pos_actualizada == 1) {
862 (*ancho) = 60+strlen(flotante);
865 PERR("Voy por la data");
866 while (j < (tam_data-cant_items*sizeof(t_Item))) {
879 if (pos_actualizada == 1)
883 /* Ahora proceso los items */
885 while (k < cant_items) {
886 sprintf(tmp1, "[%08d]", *((int *)tmp));
889 if (pos_actualizada == 1)
892 while (j < (sizeof(t_Item)-sizeof(int))) {
905 if (pos_actualizada == 1)
911 if (pos_actualizada == 1)
916 /* llego no . hasta el final */
917 while (tmp < (ptr+(*size))) {
925 if (emu->tam_bloque > emu->tam_reg) {
926 (*size) = tmp1-salida;
928 (*size) = tmp1-salida;
929 (*ancho) = tmp1-salida;
931 salida[*size-1] = '\0';