9 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
10 static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
11 static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
13 static char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
14 static char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
16 static int preguntar_id(WINDOW *win, EMUFS *fp);
18 void mostrar_info(WINDOW *padre, int h, int offset_alto, int opt)
21 wattron(padre, A_BOLD);
22 wattron(padre, COLOR_PAIR(COLOR_RED));
23 mvwaddstr(padre, h-offset_alto+1, 5, "Teclas :");
24 wattroff(padre, A_BOLD);
25 wattroff(padre, COLOR_PAIR(COLOR_RED));
26 mvwaddstr(padre, h-offset_alto+2, 8, "Salir = ENTER");
27 mvwaddstr(padre, h-offset_alto+3, 8, "Scroll = A/Z");
28 mvwaddstr(padre, h-offset_alto+4, 8, "Seleccionar registros = K/L");
30 mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: ");
32 wattron(padre, A_BOLD);
34 wattroff(padre, A_BOLD);
35 waddstr(padre, "regar ");
36 wattron(padre, A_BOLD);
38 wattroff(padre, A_BOLD);
39 waddstr(padre, "ofidicar ");
40 wattron(padre, A_BOLD);
42 wattroff(padre, A_BOLD);
43 waddstr(padre, "liminar ");
45 mvwaddstr(padre, h-offset_alto+6, 8, "Buscar ID : B");
48 wattron(padre, A_BOLD);
49 wattron(padre, COLOR_PAIR(COLOR_RED));
50 mvwaddstr(padre, h-offset_alto+1, 45, "Leyenda :");
51 wattroff(padre, A_BOLD);
52 wattroff(padre, COLOR_PAIR(COLOR_RED));
53 mvwaddstr(padre, h-offset_alto+2, 48, " | = Separador de campo");
54 mvwaddstr(padre, h-offset_alto+3, 48, "[XXX] = Campo numerico");
55 mvwaddstr(padre, h-offset_alto+4, 48, "(XXX) = ID de registro");
56 mvwaddstr(padre, h-offset_alto+5, 48, "{XXX} = Tam. de registro");
57 mvwaddstr(padre, h-offset_alto+6, 48, " . = Esp. Libre");
60 char *juntar_memoria(char *s1, char *s2, char *s3, int size1, int size2, int size3)
67 salida = (char *)malloc(tam);
75 if (s1) memcpy(salida, s1, size1);
76 if (s2) memcpy(salida+size2, s2, size2);
77 if (s3) memcpy(salida+size2+size3, s3, size3);
84 void ver_bloques(WINDOW *padre, int w, int h, int cual)
86 /* Ventanas donde mostrar las cosas */
87 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
88 WINDOW *actual[2], *dlg;
89 EMUFS_REG_SIZE size, size_actual, size_siguiete, size_anterior;
90 int scroll, actual_ancho;
91 int max_scroll, c, offset_alto;
92 /* Indices que hay validos en IDX */
93 EMUFS_REG_ID indices_total, indices_actual;
94 char *bloque_actual, *bloque_anterior, *bloque_siguiente;
95 char *data; /* Registros a mostrar en pantalla */
97 int pos_actual, ancho_registro, offset, pos;
98 EMUFS_Estadisticas stats;
101 fp = emufs_abrir("articulos");
103 fp = emufs_abrir("facturas");
105 fp = emufs_abrir("notas");
107 stats = fp->leer_estadisticas(fp);
109 wattron(padre, COLOR_PAIR(COLOR_BLUE));
110 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
111 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
114 waddstr(padre, "Registro variable con bloque parametrizado.");
116 procesar = procesar_registro_articulo_tipo1;
118 procesar = procesar_registro_factura_tipo1;
121 waddstr(padre, "Registro variable sin bloques.");
122 actual[0] = msg_box(padre, w, h, "El tipo de archivo no contiene bloques.");
124 msg_box_free(padre, actual[0]);
129 procesar = procesar_registro_articulo_tipo3;
131 procesar = procesar_registro_factura_tipo3;
132 waddstr(padre, "Registro fijo con bloque parametrizado.");
137 indices_total = stats.cant_bloques;
139 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
141 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
143 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
145 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
146 if (!bloque_siguiente) {
147 bloque_siguiente = (char *)malloc(size_siguiete);
148 memset(bloque_siguiente, 0, size_siguiete);
150 if (!bloque_anterior) {
151 bloque_anterior = (char *)malloc(size_anterior);
152 memset(bloque_anterior, 0, size_anterior);
154 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
155 ancho_registro = size_actual;
156 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
158 PERR("HASTA ACA VOY BIEN");
160 max_scroll = (size_actual+size_anterior+size_siguiete) / (w-4) - (h-offset_alto-2);
161 if (max_scroll < 0) max_scroll = 0;
163 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
165 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
166 box(actual[0], 0, 0);
170 mostrar_info(padre, h, offset_alto, 0);
172 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
173 wattron(actual[1], A_BOLD);
174 waddnstr(actual[1], data+pos_actual, ancho_registro);
175 wattroff(actual[1], A_BOLD);
176 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
182 while ((c=getch()) != 13) {
186 dlg = newwin(4, 50, h/2-2, w/2-25);
188 indices_actual = preguntar_id(dlg, fp);
189 if (indices_actual < 0) indices_actual = 0;
190 if (indices_actual > indices_total) indices_actual = indices_total-1;
197 case 'a': /* Scroll */
199 if (scroll < 0) scroll = 0;
201 case 'z': /* Scroll */
203 if (scroll > max_scroll) scroll = max_scroll;
206 if (indices_actual < indices_total) {
208 if (indices_actual >= indices_total) indices_actual = indices_total-1;
209 if (data) free(data);
210 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
211 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
212 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
213 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
214 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
215 ancho_registro = size_actual;
216 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
220 if (indices_actual != EMUFS_NOT_FOUND) {
222 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
223 if (data) free(data);
224 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
225 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
226 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
227 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
228 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
229 ancho_registro = size_actual;
230 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
233 /* Borro las ventanas */
236 /* Imprimo los registros */
238 offset = scroll*actual_ancho; /* Cantidad de caracteres que tengo que saltar */
239 pos = pos_actual - offset; /* Cantidad de caracteres que hay antes de mi a imprimir */
240 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
245 wattron(actual[1], A_BOLD);
246 waddnstr(actual[1], data+offset, ancho_registro+((pos<0)?pos:0));
247 wattroff(actual[1], A_BOLD);
248 offset += ancho_registro+((pos<0)?pos:0);
249 waddnstr(actual[1], data+offset, size-offset);
255 if (data) free(data);
263 void ver_registros(WINDOW *padre, int w, int h, int cual)
265 /* Ventanas donde mostrar las cosas */
266 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
267 WINDOW *actual[2], *dlg;
269 int scroll, actual_ancho;
270 int max_scroll, c, offset_alto;
271 /* Indices que hay validos en IDX */
272 EMUFS_REG_ID *indices, indices_total, indices_actual;
273 char *data; /* Registros a mostrar en pantalla */
274 char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
276 int pos_actual, ancho_registro, offset, pos;
279 fp = emufs_abrir("articulos");
281 fp = emufs_abrir("facturas");
283 wattron(padre, COLOR_PAIR(COLOR_BLUE));
284 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
285 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
289 waddstr(padre, "Registro variable con bloque parametrizado.");
291 procesar = procesar_registro_articulo_tipo1;
293 procesar = procesar_registro_factura_tipo1;
297 procesar = procesar_registro_articulo_tipo3;
299 procesar = procesar_registro_factura_tipo3;
300 waddstr(padre, "Registro fijo con bloque parametrizado.");
303 indices = emufs_idx_get(fp, &indices_total);
307 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
308 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
313 max_scroll = size / (w-4) - (h-offset_alto-2);
314 if (max_scroll < 0) max_scroll = 0;
316 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
318 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
319 box(actual[0], 0, 0);
323 mostrar_info(padre, h, offset_alto, 1);
326 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
327 wattron(actual[1], A_BOLD);
328 waddnstr(actual[1], data+pos_actual, ancho_registro);
329 wattroff(actual[1], A_BOLD);
330 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
337 while ((c=getch()) != 13) {
341 dlg = newwin(4, 50, h/2-2, w/2-25);
343 preguntar_id(dlg, fp);
352 if (indices_actual != EMUFS_NOT_FOUND)
353 fp->borrar_registro(fp, indices[indices_actual]);
356 indices = emufs_idx_get(fp, &indices_total);
357 if (indices_actual >= indices_total) {
358 indices_actual = indices_total - 1;
361 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
362 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
371 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
372 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
375 indices = emufs_idx_get(fp, &indices_total);
377 /* Tengo que re-pintar algunas cosas */
378 mostrar_info(padre, h, offset_alto, 1);
379 box(actual[0], 0, 0);
383 case 'm': /* Quiero editar !!! */
384 sprintf(codigo, "%lu", indices[indices_actual]);
386 art_modificar(codigo);
388 fact_modificar(codigo);
389 /* Vuelvo a cargar el articulo actual */
392 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
393 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
395 /* Tengo que re-pintar algunas cosas */
396 mostrar_info(padre, h, offset_alto, 1);
397 box(actual[0], 0, 0);
400 case 'a': /* Scroll */
402 if (scroll < 0) scroll = 0;
404 case 'z': /* Scroll */
406 if (scroll > max_scroll) scroll = max_scroll;
409 if (indices_actual < indices_total) {
411 if (indices_actual >= indices_total) indices_actual = indices_total-1;
412 if (data) free(data);
413 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
414 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
418 if (indices_actual != EMUFS_NOT_FOUND) {
420 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
421 if (data) free(data);
422 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
423 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
427 /* Borro las ventanas */
430 /* Imprimo los registros */
432 offset = scroll*actual_ancho;
433 pos = pos_actual - offset;
434 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
436 wattron(actual[1], A_BOLD);
437 waddnstr(actual[1], data+offset, ancho_registro);
438 wattroff(actual[1], A_BOLD);
439 offset += ancho_registro;
440 waddnstr(actual[1], data+offset, size-offset);
446 if (indices) free(indices);
447 if (data) free(data);
455 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
457 char *tmp, *salida, *tmp1, pos_actualizada, ant;
458 int cant_header, i=0, j, tam_data;
459 if (ptr == NULL) return NULL;
461 /* Calculo cuantos headers de registros va a haber en el archivo */
462 if (emu->tam_bloque > emu->tam_reg) {
463 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
464 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
465 tam_data = sizeof(t_Articulo)-sizeof(unsigned int);
468 tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
471 /* El tamaño del nuevo array lo calculo asi :
473 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
474 * + 10*(cant_headers+cant_registros) +1
476 * En tipo3, la cantidad de headers y cant de registros es la misma
477 * El 10 es por : (XXXXXXXX)
480 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
481 if (salida == NULL) {
487 while (i<cant_header) {
488 /* Verifico la pos_actual para el resaltado, asi queda coherente
489 * en el cambio de formato
491 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
492 (*pos_actual) = tmp1-salida;
495 /* Pongo el ID del registro */
496 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
498 tmp += sizeof(EMUFS_REG_ID);
499 /* Pongo el campo numero del registro */
500 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
502 tmp += sizeof(unsigned int);
504 while (j < (tam_data)) {
522 if (emu->tam_bloque > emu->tam_reg) {
523 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
524 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
526 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
529 memset(tmp1, '.', (*size)-(tmp1-salida));
530 salida[*size-2] = '\0';
535 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
537 EMUFS_REG_SIZE offset, curr_size;
538 char *tmp, *salida, *tmp1, pos_actualizada, ant;
539 int cant_header, i=0, j;
540 if (ptr == NULL) return NULL;
542 /* Cuento la cantidad de registros en este bloque */
546 /* Me salto el ID, que no me interesa saber su valor */
547 offset += sizeof(EMUFS_REG_ID);
548 /* Copio el tamaño del registro de la cabecera. */
549 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
550 offset += sizeof(EMUFS_REG_SIZE);
552 /* Desplazo el offset */
553 if (curr_size == 0) {
554 /* Si el tamaño de registro es 0, quiere decir que llegue a la
555 * parte que esta vacia */
561 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
564 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
568 while (i<cant_header) {
569 /* Verifico la pos_actual para el resaltado, asi queda coherente
570 * en el cambio de formato
572 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
573 (*pos_actual) = tmp1-salida;
576 /* Pongo el ID del registro */
577 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
579 tmp += sizeof(EMUFS_REG_ID);
580 /* Pongo el tamaño del registro */
581 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
582 curr_size = *((EMUFS_REG_SIZE *)tmp);
583 if (pos_actualizada == 1) {
584 (*ancho) = curr_size-sizeof(unsigned int)+30;
588 tmp += sizeof(EMUFS_REG_SIZE);
589 /* Pongo el campo numero del registro */
590 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
592 tmp += sizeof(unsigned int);
593 j = sizeof(unsigned int);
595 while (j < curr_size) {
609 PERR("Y hasta todo bien");
612 /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
613 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
614 memset(tmp1, '.', (*size)-(tmp1-salida));
616 salida[*size-2] = '\0';
621 int preguntar_id(WINDOW *win, EMUFS *fp)
624 t_Form *form = form_crear(win);
625 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
628 form_set_valor(form, "ID a buscar", "");
629 form_ejecutar(form, 1,1);
631 n = form_obtener_valor_int(form, "ID a buscar");
638 char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
640 char *tmp, *salida, *tmp1, pos_actualizada, ant;
642 int cant_header, i=0, j, tam_data, k;
644 if (ptr == NULL) return NULL;
646 PERR("Empieza el baile");
648 /* Calculo cuantos headers de registros va a haber en el archivo */
649 if (emu->tam_bloque > emu->tam_reg) {
650 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
651 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
652 tam_data = emu->tam_reg-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
655 tam_data = (*size) - sizeof(EMUFS_REG_ID)-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
658 /* El tamaño del nuevo array lo calculo asi :
661 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);*/
662 if (salida == NULL) {
663 PERR("Error de malloc en salida");
669 while (i<cant_header) {
670 /* Verifico la pos_actual para el resaltado, asi queda coherente
671 * en el cambio de formato
673 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
674 (*pos_actual) = tmp1-salida;
677 /* Pongo el ID del registro */
678 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
680 tmp += sizeof(EMUFS_REG_ID);
681 /* Pongo el campo numero */
682 sprintf(tmp1, "[%08d]", *((int *)tmp));
685 /* Pongo campo procdoi */
686 sprintf(flotante, "[%5.2f]", *((float *)tmp));
687 memcpy(tmp1, flotante, strlen(flotante));
688 tmp1 += strlen(flotante);
689 tmp += sizeof(float);
690 /* Pongo campo numero_remito */
691 sprintf(tmp1, "[%08d]", *((int *)tmp));
694 /* Pongo numero de items */
695 sprintf(tmp1, "[%08d]", *((int *)tmp));
696 cant_items = *((int *)tmp);
700 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
702 tmp += sizeof(EMUFS_BLOCK_ID);
704 if (pos_actualizada == 1) {
705 (*ancho) = 50+strlen(flotante);
708 while (j < (tam_data-10*sizeof(t_Item))) {
721 if (pos_actualizada == 1)
725 /* Ahora proceso los items */
728 sprintf(tmp1, "[%08d]", *((int *)tmp));
731 if (pos_actualizada == 1)
734 while (j < (sizeof(t_Item)-sizeof(int))) {
747 if (pos_actualizada == 1)
753 if (pos_actualizada == 1)
760 if (emu->tam_bloque > emu->tam_reg) {
761 (*size) = tmp1-salida;
763 (*size) = tmp1-salida;
764 (*ancho) = tmp1-salida;
766 salida[*size-1] = '\0';
771 char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
773 char *tmp, *salida, *tmp1, pos_actualizada, ant;
774 EMUFS_REG_SIZE offset, curr_size;
776 int cant_header, i=0, j, tam_data, k;
778 if (ptr == NULL) return NULL;
780 PERR("Empieza el baile");
784 /* Me salto el ID, que no me interesa saber su valor */
785 offset += sizeof(EMUFS_REG_ID);
786 /* Copio el tamaño del registro de la cabecera. */
787 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
788 offset += sizeof(EMUFS_REG_SIZE);
790 /* Desplazo el offset */
791 if (curr_size == 0) {
792 /* Si el tamaño de registro es 0, quiere decir que llegue a la
793 * parte que esta vacia */
799 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
801 /* El tamaño del nuevo array lo calculo asi :
804 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);*/
805 if (salida == NULL) {
806 PERR("Error de malloc en salida");
813 while (i<cant_header) {
814 /* Verifico la pos_actual para el resaltado, asi queda coherente
815 * en el cambio de formato
817 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
818 (*pos_actual) = tmp1-salida;
821 /* Pongo el ID del registro */
822 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
824 tmp += sizeof(EMUFS_REG_ID);
825 /* Cantidad de espacio que ocupa la data */
826 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
827 tam_data = *((EMUFS_REG_SIZE *)tmp) - sizeof(int)*3 - sizeof(float) - sizeof(EMUFS_BLOCK_ID);
829 tmp += sizeof(EMUFS_REG_SIZE);
830 /* Pongo el campo numero */
831 sprintf(tmp1, "[%08d]", *((int *)tmp));
834 /* Pongo campo procdoi */
835 sprintf(flotante, "[%5.2f]", *((float *)tmp));
836 memcpy(tmp1, flotante, strlen(flotante));
837 tmp1 += strlen(flotante);
838 tmp += sizeof(float);
839 /* Pongo campo numero_remito */
840 sprintf(tmp1, "[%08d]", *((int *)tmp));
843 /* Pongo numero de items */
844 sprintf(tmp1, "[%08d]", *((int *)tmp));
845 cant_items = *((int *)tmp);
849 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
851 tmp += sizeof(EMUFS_BLOCK_ID);
853 if (pos_actualizada == 1) {
854 (*ancho) = 60+strlen(flotante);
857 PERR("Voy por la data");
858 while (j < (tam_data-cant_items*sizeof(t_Item))) {
871 if (pos_actualizada == 1)
875 /* Ahora proceso los items */
877 while (k < cant_items) {
878 sprintf(tmp1, "[%08d]", *((int *)tmp));
881 if (pos_actualizada == 1)
884 while (j < (sizeof(t_Item)-sizeof(int))) {
897 if (pos_actualizada == 1)
903 if (pos_actualizada == 1)
908 /* llego no . hasta el final */
909 while (tmp < (ptr+(*size))) {
917 if (emu->tam_bloque > emu->tam_reg) {
918 (*size) = tmp1-salida;
920 (*size) = tmp1-salida;
921 (*ancho) = tmp1-salida;
923 salida[*size-1] = '\0';