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, int opt)
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");
29 mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: ");
31 wattron(padre, A_BOLD);
33 wattroff(padre, A_BOLD);
34 waddstr(padre, "regar ");
35 wattron(padre, A_BOLD);
37 wattroff(padre, A_BOLD);
38 waddstr(padre, "ofidicar ");
39 wattron(padre, A_BOLD);
41 wattroff(padre, A_BOLD);
42 waddstr(padre, "liminar ");
44 mvwaddstr(padre, h-offset_alto+6, 8, "Buscar ID : B");
47 wattron(padre, A_BOLD);
48 wattron(padre, COLOR_PAIR(COLOR_RED));
49 mvwaddstr(padre, h-offset_alto+1, 45, "Leyenda :");
50 wattroff(padre, A_BOLD);
51 wattroff(padre, COLOR_PAIR(COLOR_RED));
52 mvwaddstr(padre, h-offset_alto+2, 48, " | = Separador de campo");
53 mvwaddstr(padre, h-offset_alto+3, 48, "[XXX] = Campo numerico");
54 mvwaddstr(padre, h-offset_alto+4, 48, "(XXX) = ID de registro");
55 mvwaddstr(padre, h-offset_alto+5, 48, "{XXX} = Tam. de registro");
56 mvwaddstr(padre, h-offset_alto+6, 48, " . = Esp. Libre");
59 char *juntar_memoria(char *s1, char *s2, char *s3, int size1, int size2, int size3)
66 salida = (char *)malloc(tam);
74 if (s1) memcpy(salida, s1, size1);
75 if (s2) memcpy(salida+size2, s2, size2);
76 if (s3) memcpy(salida+size2+size3, s3, size3);
83 void ver_bloques(WINDOW *padre, int w, int h, int cual)
85 /* Ventanas donde mostrar las cosas */
86 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
87 WINDOW *actual[2], *dlg;
88 EMUFS_REG_SIZE size, size_actual, size_siguiete, size_anterior;
89 int scroll, actual_ancho;
90 int max_scroll, c, offset_alto;
91 /* Indices que hay validos en IDX */
92 EMUFS_REG_ID indices_total, indices_actual;
93 char *bloque_actual, *bloque_anterior, *bloque_siguiente;
94 char *data; /* Registros a mostrar en pantalla */
96 int pos_actual, ancho_registro, offset, pos;
97 EMUFS_Estadisticas stats;
100 fp = emufs_abrir("articulos");
102 fp = emufs_abrir("facturas");
104 fp = emufs_abrir("notas");
106 stats = fp->leer_estadisticas(fp);
108 wattron(padre, COLOR_PAIR(COLOR_BLUE));
109 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
110 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
113 waddstr(padre, "Registro variable con bloque parametrizado.");
115 procesar = procesar_registro_articulo_tipo1;
117 procesar = procesar_registro_factura_tipo1;
120 waddstr(padre, "Registro variable sin bloques.");
121 actual[0] = msg_box(padre, w, h, "El tipo de archivo no contiene bloques.");
123 msg_box_free(padre, actual[0]);
128 procesar = procesar_registro_articulo_tipo3;
130 procesar = procesar_registro_factura_tipo3;
131 waddstr(padre, "Registro fijo con bloque parametrizado.");
136 indices_total = stats.cant_bloques;
138 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
140 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
142 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
144 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
145 if (!bloque_siguiente) {
146 bloque_siguiente = (char *)malloc(size_siguiete);
147 memset(bloque_siguiente, 0, size_siguiete);
149 if (!bloque_anterior) {
150 bloque_anterior = (char *)malloc(size_anterior);
151 memset(bloque_anterior, 0, size_anterior);
153 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
154 ancho_registro = size_actual;
155 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
157 PERR("HASTA ACA VOY BIEN");
159 max_scroll = (size_actual+size_anterior+size_siguiete) / (w-4) - (h-offset_alto-2);
160 if (max_scroll < 0) max_scroll = 0;
162 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
164 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
165 box(actual[0], 0, 0);
169 mostrar_info(padre, h, offset_alto, 0);
171 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
172 wattron(actual[1], A_BOLD);
173 waddnstr(actual[1], data+pos_actual, ancho_registro);
174 wattroff(actual[1], A_BOLD);
175 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
181 while ((c=getch()) != 13) {
185 dlg = newwin(4, 50, h/2-2, w/2-25);
187 indices_actual = preguntar_id(dlg, fp);
188 if (indices_actual < 0) indices_actual = 0;
189 if (indices_actual > indices_total) indices_actual = indices_total-1;
196 case 'a': /* Scroll */
198 if (scroll < 0) scroll = 0;
200 case 'z': /* Scroll */
202 if (scroll > max_scroll) scroll = max_scroll;
205 if (indices_actual < indices_total) {
207 if (indices_actual >= indices_total) indices_actual = indices_total-1;
208 if (data) free(data);
209 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
210 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
211 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
212 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
213 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
214 ancho_registro = size_actual;
215 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
219 if (indices_actual != EMUFS_NOT_FOUND) {
221 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
222 if (data) free(data);
223 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
224 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
225 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
226 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
227 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
228 ancho_registro = size_actual;
229 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
232 /* Borro las ventanas */
235 /* Imprimo los registros */
237 offset = scroll*actual_ancho; /* Cantidad de caracteres que tengo que saltar */
238 pos = pos_actual - offset; /* Cantidad de caracteres que hay antes de mi a imprimir */
239 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
244 wattron(actual[1], A_BOLD);
245 waddnstr(actual[1], data+offset, ancho_registro+((pos<0)?pos:0));
246 wattroff(actual[1], A_BOLD);
247 offset += ancho_registro+((pos<0)?pos:0);
248 waddnstr(actual[1], data+offset, size-offset);
254 if (data) free(data);
262 void ver_registros(WINDOW *padre, int w, int h, int cual)
264 /* Ventanas donde mostrar las cosas */
265 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
266 WINDOW *actual[2], *dlg;
268 int scroll, actual_ancho;
269 int max_scroll, c, offset_alto;
270 /* Indices que hay validos en IDX */
271 EMUFS_REG_ID *indices, indices_total, indices_actual;
272 char *data; /* Registros a mostrar en pantalla */
273 char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
275 int pos_actual, ancho_registro, offset, pos;
278 fp = emufs_abrir("articulos");
280 fp = emufs_abrir("facturas");
282 wattron(padre, COLOR_PAIR(COLOR_BLUE));
283 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
284 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
288 waddstr(padre, "Registro variable con bloque parametrizado.");
290 procesar = procesar_registro_articulo_tipo1;
292 procesar = procesar_registro_factura_tipo1;
296 procesar = procesar_registro_articulo_tipo3;
298 procesar = procesar_registro_factura_tipo3;
299 waddstr(padre, "Registro fijo con bloque parametrizado.");
302 indices = emufs_idx_get(fp, &indices_total);
306 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
307 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
312 max_scroll = size / (w-4) - (h-offset_alto-2);
313 if (max_scroll < 0) max_scroll = 0;
315 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
317 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
318 box(actual[0], 0, 0);
322 mostrar_info(padre, h, offset_alto, 1);
325 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
326 wattron(actual[1], A_BOLD);
327 waddnstr(actual[1], data+pos_actual, ancho_registro);
328 wattroff(actual[1], A_BOLD);
329 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
336 while ((c=getch()) != 13) {
340 dlg = newwin(4, 50, h/2-2, w/2-25);
342 preguntar_id(dlg, fp);
351 if (indices_actual != EMUFS_NOT_FOUND)
352 fp->borrar_registro(fp, indices[indices_actual]);
355 indices = emufs_idx_get(fp, &indices_total);
356 if (indices_actual >= indices_total) {
357 indices_actual = indices_total - 1;
360 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
361 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
370 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
371 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
374 indices = emufs_idx_get(fp, &indices_total);
376 /* Tengo que re-pintar algunas cosas */
377 mostrar_info(padre, h, offset_alto, 1);
378 box(actual[0], 0, 0);
382 case 'm': /* Quiero editar !!! */
383 sprintf(codigo, "%lu", indices[indices_actual]);
385 art_modificar(codigo);
387 fact_modificar(codigo);
388 /* Vuelvo a cargar el articulo actual */
391 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
392 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
394 /* Tengo que re-pintar algunas cosas */
395 mostrar_info(padre, h, offset_alto, 1);
396 box(actual[0], 0, 0);
399 case 'a': /* Scroll */
401 if (scroll < 0) scroll = 0;
403 case 'z': /* Scroll */
405 if (scroll > max_scroll) scroll = max_scroll;
408 if (indices_actual < indices_total) {
410 if (indices_actual >= indices_total) indices_actual = indices_total-1;
411 if (data) free(data);
412 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
413 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
417 if (indices_actual != EMUFS_NOT_FOUND) {
419 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
420 if (data) free(data);
421 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
422 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
426 /* Borro las ventanas */
429 /* Imprimo los registros */
431 offset = scroll*actual_ancho;
432 pos = pos_actual - offset;
433 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
435 wattron(actual[1], A_BOLD);
436 waddnstr(actual[1], data+offset, ancho_registro);
437 wattroff(actual[1], A_BOLD);
438 offset += ancho_registro;
439 waddnstr(actual[1], data+offset, size-offset);
445 if (indices) free(indices);
446 if (data) free(data);
454 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
456 char *tmp, *salida, *tmp1, pos_actualizada, ant;
457 int cant_header, i=0, j, tam_data;
458 if (ptr == NULL) return NULL;
460 /* Calculo cuantos headers de registros va a haber en el archivo */
461 if (emu->tam_bloque > emu->tam_reg) {
462 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
463 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
464 tam_data = sizeof(t_Articulo)-sizeof(unsigned int);
467 tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
470 /* El tamaño del nuevo array lo calculo asi :
472 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
473 * + 10*(cant_headers+cant_registros) +1
475 * En tipo3, la cantidad de headers y cant de registros es la misma
476 * El 10 es por : (XXXXXXXX)
479 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
480 if (salida == NULL) {
486 while (i<cant_header) {
487 /* Verifico la pos_actual para el resaltado, asi queda coherente
488 * en el cambio de formato
490 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
491 (*pos_actual) = tmp1-salida;
494 /* Pongo el ID del registro */
495 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
497 tmp += sizeof(EMUFS_REG_ID);
498 /* Pongo el campo numero del registro */
499 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
501 tmp += sizeof(unsigned int);
503 while (j < (tam_data)) {
521 if (emu->tam_bloque > emu->tam_reg) {
522 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
523 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
525 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
528 memset(tmp1, '.', (*size)-(tmp1-salida));
529 salida[*size-2] = '\0';
534 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
536 EMUFS_REG_SIZE offset, curr_size;
537 char *tmp, *salida, *tmp1, pos_actualizada, ant;
538 int cant_header, i=0, j;
539 if (ptr == NULL) return NULL;
541 /* Cuento la cantidad de registros en este bloque */
545 /* Me salto el ID, que no me interesa saber su valor */
546 offset += sizeof(EMUFS_REG_ID);
547 /* Copio el tamaño del registro de la cabecera. */
548 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
549 offset += sizeof(EMUFS_REG_SIZE);
551 /* Desplazo el offset */
552 if (curr_size == 0) {
553 /* Si el tamaño de registro es 0, quiere decir que llegue a la
554 * parte que esta vacia */
560 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
563 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
567 while (i<cant_header) {
568 /* Verifico la pos_actual para el resaltado, asi queda coherente
569 * en el cambio de formato
571 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
572 (*pos_actual) = tmp1-salida;
575 /* Pongo el ID del registro */
576 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
578 tmp += sizeof(EMUFS_REG_ID);
579 /* Pongo el tamaño del registro */
580 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
581 curr_size = *((EMUFS_REG_SIZE *)tmp);
582 if (pos_actualizada == 1) {
583 (*ancho) = curr_size-sizeof(unsigned int)+30;
587 tmp += sizeof(EMUFS_REG_SIZE);
588 /* Pongo el campo numero del registro */
589 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
591 tmp += sizeof(unsigned int);
592 j = sizeof(unsigned int);
594 while (j < curr_size) {
608 PERR("Y hasta todo bien");
611 /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
612 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
613 memset(tmp1, '.', (*size)-(tmp1-salida));
615 salida[*size-2] = '\0';
620 int preguntar_id(WINDOW *win, EMUFS *fp)
623 t_Form *form = form_crear(win);
624 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
627 form_set_valor(form, "ID a buscar", "");
628 form_ejecutar(form, 1,1);
630 n = form_obtener_valor_int(form, "ID a buscar");
637 char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
639 char *tmp, *salida, *tmp1, pos_actualizada, ant;
641 int cant_header, i=0, j, tam_data, k;
643 if (ptr == NULL) return NULL;
645 PERR("Empieza el baile");
647 /* Calculo cuantos headers de registros va a haber en el archivo */
648 if (emu->tam_bloque > emu->tam_reg) {
649 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
650 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
651 tam_data = emu->tam_reg-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
654 tam_data = (*size) - sizeof(EMUFS_REG_ID)-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
657 /* El tamaño del nuevo array lo calculo asi :
660 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);*/
661 if (salida == NULL) {
662 PERR("Error de malloc en salida");
668 while (i<cant_header) {
669 /* Verifico la pos_actual para el resaltado, asi queda coherente
670 * en el cambio de formato
672 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
673 (*pos_actual) = tmp1-salida;
676 /* Pongo el ID del registro */
677 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
679 tmp += sizeof(EMUFS_REG_ID);
680 /* Pongo el campo numero */
681 sprintf(tmp1, "[%08d]", *((int *)tmp));
684 /* Pongo campo procdoi */
685 sprintf(flotante, "[%5.2f]", *((float *)tmp));
686 memcpy(tmp1, flotante, strlen(flotante));
687 tmp1 += strlen(flotante);
688 tmp += sizeof(float);
689 /* Pongo campo numero_remito */
690 sprintf(tmp1, "[%08d]", *((int *)tmp));
693 /* Pongo numero de items */
694 sprintf(tmp1, "[%08d]", *((int *)tmp));
695 cant_items = *((int *)tmp);
699 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
701 tmp += sizeof(EMUFS_BLOCK_ID);
703 if (pos_actualizada == 1) {
704 (*ancho) = 50+strlen(flotante);
707 while (j < (tam_data-10*sizeof(t_Item))) {
720 if (pos_actualizada == 1)
724 /* Ahora proceso los items */
727 sprintf(tmp1, "[%08d]", *((int *)tmp));
730 if (pos_actualizada == 1)
733 while (j < (sizeof(t_Item)-sizeof(int))) {
746 if (pos_actualizada == 1)
752 if (pos_actualizada == 1)
759 if (emu->tam_bloque > emu->tam_reg) {
760 (*size) = tmp1-salida;
762 (*size) = tmp1-salida;
763 (*ancho) = tmp1-salida;
765 salida[*size-1] = '\0';
770 char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
772 char *tmp, *salida, *tmp1, pos_actualizada, ant;
773 EMUFS_REG_SIZE offset, curr_size;
775 int cant_header, i=0, j, tam_data, k;
777 if (ptr == NULL) return NULL;
779 PERR("Empieza el baile");
783 /* Me salto el ID, que no me interesa saber su valor */
784 offset += sizeof(EMUFS_REG_ID);
785 /* Copio el tamaño del registro de la cabecera. */
786 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
787 offset += sizeof(EMUFS_REG_SIZE);
789 /* Desplazo el offset */
790 if (curr_size == 0) {
791 /* Si el tamaño de registro es 0, quiere decir que llegue a la
792 * parte que esta vacia */
798 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
800 /* El tamaño del nuevo array lo calculo asi :
803 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);*/
804 if (salida == NULL) {
805 PERR("Error de malloc en salida");
812 while (i<cant_header) {
813 /* Verifico la pos_actual para el resaltado, asi queda coherente
814 * en el cambio de formato
816 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
817 (*pos_actual) = tmp1-salida;
820 /* Pongo el ID del registro */
821 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
823 tmp += sizeof(EMUFS_REG_ID);
824 /* Cantidad de espacio que ocupa la data */
825 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
826 tam_data = *((EMUFS_REG_SIZE *)tmp) - sizeof(int)*3 - sizeof(float) - sizeof(EMUFS_BLOCK_ID);
828 tmp += sizeof(EMUFS_REG_SIZE);
829 /* Pongo el campo numero */
830 sprintf(tmp1, "[%08d]", *((int *)tmp));
833 /* Pongo campo procdoi */
834 sprintf(flotante, "[%5.2f]", *((float *)tmp));
835 memcpy(tmp1, flotante, strlen(flotante));
836 tmp1 += strlen(flotante);
837 tmp += sizeof(float);
838 /* Pongo campo numero_remito */
839 sprintf(tmp1, "[%08d]", *((int *)tmp));
842 /* Pongo numero de items */
843 sprintf(tmp1, "[%08d]", *((int *)tmp));
844 cant_items = *((int *)tmp);
848 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
850 tmp += sizeof(EMUFS_BLOCK_ID);
852 if (pos_actualizada == 1) {
853 (*ancho) = 60+strlen(flotante);
856 PERR("Voy por la data");
857 while (j < (tam_data-cant_items*sizeof(t_Item)-1)) {
870 if (pos_actualizada == 1)
874 /* Ahora proceso los items */
876 while (k < cant_items) {
877 sprintf(tmp1, "[%08d]", *((int *)tmp));
880 if (pos_actualizada == 1)
883 while (j < (sizeof(t_Item)-sizeof(int))) {
896 if (pos_actualizada == 1)
902 if (pos_actualizada == 1)
907 /* llego no . hasta el final */
908 while (tmp < (ptr+(*size))) {
916 if (emu->tam_bloque > emu->tam_reg) {
917 (*size) = tmp1-salida;
919 (*size) = tmp1-salida;
920 (*ancho) = tmp1-salida;
922 salida[*size-1] = '\0';