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_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
12 static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
14 static char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
15 static char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
17 static int preguntar_id(WINDOW *win, EMUFS *fp);
19 void mostrar_info(WINDOW *padre, int h, int offset_alto, int opt)
22 wattron(padre, A_BOLD);
23 wattron(padre, COLOR_PAIR(COLOR_RED));
24 mvwaddstr(padre, h-offset_alto+1, 5, "Teclas :");
25 wattroff(padre, A_BOLD);
26 wattroff(padre, COLOR_PAIR(COLOR_RED));
27 mvwaddstr(padre, h-offset_alto+2, 8, "Salir = ENTER");
28 mvwaddstr(padre, h-offset_alto+3, 8, "Scroll = A/Z");
29 mvwaddstr(padre, h-offset_alto+4, 8, "Seleccionar registros = K/L");
31 mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: ");
33 wattron(padre, A_BOLD);
35 wattroff(padre, A_BOLD);
36 waddstr(padre, "regar ");
37 wattron(padre, A_BOLD);
39 wattroff(padre, A_BOLD);
40 waddstr(padre, "ofidicar ");
41 wattron(padre, A_BOLD);
43 wattroff(padre, A_BOLD);
44 waddstr(padre, "liminar ");
46 mvwaddstr(padre, h-offset_alto+6, 8, "Buscar ID : B");
49 wattron(padre, A_BOLD);
50 wattron(padre, COLOR_PAIR(COLOR_RED));
51 mvwaddstr(padre, h-offset_alto+1, 45, "Leyenda :");
52 wattroff(padre, A_BOLD);
53 wattroff(padre, COLOR_PAIR(COLOR_RED));
54 mvwaddstr(padre, h-offset_alto+2, 48, " | = Separador de campo");
55 mvwaddstr(padre, h-offset_alto+3, 48, "[XXX] = Campo numerico");
56 mvwaddstr(padre, h-offset_alto+4, 48, "(XXX) = ID de registro");
57 mvwaddstr(padre, h-offset_alto+5, 48, "{XXX} = Tam. de registro");
58 mvwaddstr(padre, h-offset_alto+6, 48, " . = Esp. Libre");
61 char *juntar_memoria(char *s1, char *s2, char *s3, int size1, int size2, int size3)
68 salida = (char *)malloc(tam);
76 if (s1) memcpy(salida, s1, size1); else size1 = 0;
77 if (s2) memcpy(salida+size1, s2, size2); else size2 = 0;
78 if (s3) memcpy(salida+size1+size2, s3, size3);
85 void ver_bloques(WINDOW *padre, int w, int h, int cual)
87 /* Ventanas donde mostrar las cosas */
88 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
89 WINDOW *actual[2], *dlg;
90 EMUFS_REG_SIZE size, size_actual, size_siguiete, size_anterior;
91 int scroll, actual_ancho;
92 int max_scroll, c, offset_alto;
93 /* Indices que hay validos en IDX */
94 EMUFS_REG_ID indices_total, indices_actual;
95 char *bloque_actual, *bloque_anterior, *bloque_siguiente;
96 char *data; /* Registros a mostrar en pantalla */
98 int pos_actual, ancho_registro, offset, pos;
99 EMUFS_Estadisticas stats;
102 fp = emufs_abrir("articulos");
104 fp = emufs_abrir("facturas");
106 fp = emufs_abrir("notas");
108 stats = fp->leer_estadisticas(fp);
110 wattron(padre, COLOR_PAIR(COLOR_BLUE));
111 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
112 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
115 waddstr(padre, "Registro variable con bloque parametrizado.");
117 procesar = procesar_registro_articulo_tipo1;
119 procesar = procesar_registro_factura_tipo1;
122 waddstr(padre, "Registro variable sin bloques.");
123 actual[0] = msg_box(padre, w, h, "El tipo de archivo no contiene bloques.");
125 msg_box_free(padre, actual[0]);
130 procesar = procesar_registro_articulo_tipo3;
132 procesar = procesar_registro_factura_tipo3;
133 waddstr(padre, "Registro fijo con bloque parametrizado.");
138 indices_total = stats.cant_bloques;
140 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
142 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
144 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
146 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
147 if (!bloque_siguiente) {
148 bloque_siguiente = (char *)malloc(size_siguiete);
149 memset(bloque_siguiente, 0, size_siguiete);
151 if (!bloque_anterior) {
152 bloque_anterior = (char *)malloc(size_anterior);
153 memset(bloque_anterior, 0, size_anterior);
155 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
156 ancho_registro = size_actual;
157 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
159 PERR("HASTA ACA VOY BIEN");
161 max_scroll = (size_actual+size_anterior+size_siguiete) / (w-4) - (h-offset_alto-2);
162 if (max_scroll < 0) max_scroll = 0;
164 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
166 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
167 box(actual[0], 0, 0);
171 mostrar_info(padre, h, offset_alto, 0);
173 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
174 wattron(actual[1], A_BOLD);
175 waddnstr(actual[1], data+pos_actual, ancho_registro);
176 wattroff(actual[1], A_BOLD);
177 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
183 while ((c=getch()) != 13) {
187 dlg = newwin(4, 50, h/2-2, w/2-25);
189 indices_actual = preguntar_id(dlg, fp);
190 if (indices_actual < 0) indices_actual = 0;
191 if (indices_actual > indices_total) indices_actual = indices_total-1;
198 case 'a': /* Scroll */
200 if (scroll < 0) scroll = 0;
202 case 'z': /* Scroll */
204 if (scroll > max_scroll) scroll = max_scroll;
207 if (indices_actual < indices_total) {
209 if (indices_actual >= indices_total) indices_actual = indices_total-1;
210 if (data) free(data);
211 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
212 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
213 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
214 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
215 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
216 ancho_registro = size_actual;
217 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
221 if (indices_actual != EMUFS_NOT_FOUND) {
223 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
224 if (data) free(data);
225 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
226 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
227 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
228 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
229 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
230 ancho_registro = size_actual;
231 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
234 /* Borro las ventanas */
237 /* Imprimo los registros */
239 offset = scroll*actual_ancho; /* Cantidad de caracteres que tengo que saltar */
240 pos = pos_actual - offset; /* Cantidad de caracteres que hay antes de mi a imprimir */
241 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
246 wattron(actual[1], A_BOLD);
247 waddnstr(actual[1], data+offset, ancho_registro+((pos<0)?pos:0));
248 wattroff(actual[1], A_BOLD);
249 offset += ancho_registro+((pos<0)?pos:0);
250 waddnstr(actual[1], data+offset, size-offset);
256 if (data) free(data);
264 void ver_registros(WINDOW *padre, int w, int h, int cual)
266 /* Ventanas donde mostrar las cosas */
267 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
268 WINDOW *actual[2], *dlg;
270 int scroll, actual_ancho;
271 int max_scroll, c, offset_alto;
272 /* Indices que hay validos en IDX */
273 EMUFS_REG_ID *indices, indices_total, indices_actual;
274 char *data; /* Registros a mostrar en pantalla */
275 char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
277 int pos_actual, ancho_registro, offset, pos;
280 fp = emufs_abrir("articulos");
282 fp = emufs_abrir("facturas");
284 wattron(padre, COLOR_PAIR(COLOR_BLUE));
285 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
286 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;
296 waddstr(padre, "Registro variable con sin bloques.");
298 procesar = procesar_registro_articulo_tipo2;
300 procesar = procesar_registro_factura_tipo1;
304 procesar = procesar_registro_articulo_tipo3;
306 procesar = procesar_registro_factura_tipo3;
307 waddstr(padre, "Registro fijo con bloque parametrizado.");
310 indices = emufs_idx_get(fp, &indices_total);
314 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
315 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
320 max_scroll = size / (w-4) - (h-offset_alto-2);
321 if (max_scroll < 0) max_scroll = 0;
323 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
325 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
326 box(actual[0], 0, 0);
330 mostrar_info(padre, h, offset_alto, 1);
333 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
334 wattron(actual[1], A_BOLD);
335 waddnstr(actual[1], data+pos_actual, ancho_registro);
336 wattroff(actual[1], A_BOLD);
337 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
344 while ((c=getch()) != 13) {
348 dlg = newwin(4, 50, h/2-2, w/2-25);
350 preguntar_id(dlg, fp);
359 if (indices_actual != EMUFS_NOT_FOUND)
360 fp->borrar_registro(fp, indices[indices_actual]);
363 indices = emufs_idx_get(fp, &indices_total);
364 if (indices_actual >= indices_total) {
365 indices_actual = indices_total - 1;
368 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
369 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
378 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
379 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
382 indices = emufs_idx_get(fp, &indices_total);
384 /* Tengo que re-pintar algunas cosas */
385 mostrar_info(padre, h, offset_alto, 1);
386 box(actual[0], 0, 0);
390 case 'm': /* Quiero editar !!! */
391 sprintf(codigo, "%lu", indices[indices_actual]);
393 art_modificar(codigo);
395 fact_modificar(codigo);
396 /* Vuelvo a cargar el articulo actual */
399 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
400 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
402 /* Tengo que re-pintar algunas cosas */
403 mostrar_info(padre, h, offset_alto, 1);
404 box(actual[0], 0, 0);
407 case 'a': /* Scroll */
409 if (scroll < 0) scroll = 0;
411 case 'z': /* Scroll */
413 if (scroll > max_scroll) scroll = max_scroll;
416 if (indices_actual < indices_total) {
418 if (indices_actual >= indices_total) indices_actual = indices_total-1;
419 if (data) free(data);
420 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
421 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
425 if (indices_actual != EMUFS_NOT_FOUND) {
427 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
428 if (data) free(data);
429 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
430 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
434 /* Borro las ventanas */
437 /* Imprimo los registros */
439 offset = scroll*actual_ancho;
440 pos = pos_actual - offset;
441 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
443 wattron(actual[1], A_BOLD);
444 waddnstr(actual[1], data+offset, ancho_registro);
445 wattroff(actual[1], A_BOLD);
446 offset += ancho_registro;
447 waddnstr(actual[1], data+offset, size-offset);
453 if (indices) free(indices);
454 if (data) free(data);
462 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
464 char *tmp, *salida, *tmp1, pos_actualizada, ant;
465 int cant_header, i=0, j, tam_data;
466 if (ptr == NULL) return NULL;
468 /* Calculo cuantos headers de registros va a haber en el archivo */
469 if (emu->tam_bloque > emu->tam_reg) {
470 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
471 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
472 tam_data = sizeof(t_Articulo)-sizeof(unsigned int);
475 tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
478 /* El tamaño del nuevo array lo calculo asi :
480 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
481 * + 10*(cant_headers+cant_registros) +1
483 * En tipo3, la cantidad de headers y cant de registros es la misma
484 * El 10 es por : (XXXXXXXX)
487 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
488 if (salida == NULL) {
494 while (i<cant_header) {
495 /* Verifico la pos_actual para el resaltado, asi queda coherente
496 * en el cambio de formato
498 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
499 (*pos_actual) = tmp1-salida;
502 /* Pongo el ID del registro */
503 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
505 tmp += sizeof(EMUFS_REG_ID);
506 /* Pongo el campo numero del registro */
507 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
509 tmp += sizeof(unsigned int);
511 while (j < (tam_data)) {
529 if (emu->tam_bloque > emu->tam_reg) {
530 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
531 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
533 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
536 memset(tmp1, '.', (*size)-(tmp1-salida));
537 salida[*size-2] = '\0';
542 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
544 EMUFS_REG_SIZE offset, curr_size;
545 char *tmp, *salida, *tmp1, pos_actualizada, ant;
546 int cant_header, i=0, j;
547 if (ptr == NULL) return NULL;
549 /* Cuento la cantidad de registros en este bloque */
553 /* Me salto el ID, que no me interesa saber su valor */
554 offset += sizeof(EMUFS_REG_ID);
555 /* Copio el tamaño del registro de la cabecera. */
556 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
557 offset += sizeof(EMUFS_REG_SIZE);
559 /* Desplazo el offset */
560 if (curr_size == 0) {
561 /* Si el tamaño de registro es 0, quiere decir que llegue a la
562 * parte que esta vacia */
568 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
571 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
575 while (i<cant_header) {
576 /* Verifico la pos_actual para el resaltado, asi queda coherente
577 * en el cambio de formato
579 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
580 (*pos_actual) = tmp1-salida;
583 /* Pongo el ID del registro */
584 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
586 tmp += sizeof(EMUFS_REG_ID);
587 /* Pongo el tamaño del registro */
588 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
589 curr_size = *((EMUFS_REG_SIZE *)tmp);
590 if (pos_actualizada == 1) {
591 (*ancho) = curr_size-sizeof(unsigned int)+30;
595 tmp += sizeof(EMUFS_REG_SIZE);
596 /* Pongo el campo numero del registro */
597 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
599 tmp += sizeof(unsigned int);
600 j = sizeof(unsigned int);
602 while (j < curr_size) {
616 PERR("Y hasta todo bien");
619 /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
620 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
621 memset(tmp1, '.', (*size)-(tmp1-salida));
623 salida[*size-2] = '\0';
628 int preguntar_id(WINDOW *win, EMUFS *fp)
631 t_Form *form = form_crear(win);
632 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
635 form_set_valor(form, "ID a buscar", "");
636 form_ejecutar(form, 1,1);
638 n = form_obtener_valor_int(form, "ID a buscar");
645 char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
647 char *tmp, *salida, *tmp1, pos_actualizada, ant;
649 int cant_header, i=0, j, tam_data, k;
651 if (ptr == NULL) return NULL;
653 PERR("Empieza el baile");
655 /* Calculo cuantos headers de registros va a haber en el archivo */
656 if (emu->tam_bloque > emu->tam_reg) {
657 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
658 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
659 tam_data = emu->tam_reg-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
662 tam_data = (*size) - sizeof(EMUFS_REG_ID)-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
665 /* El tamaño del nuevo array lo calculo asi :
668 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);*/
669 if (salida == NULL) {
670 PERR("Error de malloc en salida");
676 while (i<cant_header) {
677 /* Verifico la pos_actual para el resaltado, asi queda coherente
678 * en el cambio de formato
680 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
681 (*pos_actual) = tmp1-salida;
684 /* Pongo el ID del registro */
685 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
687 tmp += sizeof(EMUFS_REG_ID);
688 /* Pongo el campo numero */
689 sprintf(tmp1, "[%08d]", *((int *)tmp));
692 /* Pongo campo procdoi */
693 sprintf(flotante, "[%5.2f]", *((float *)tmp));
694 memcpy(tmp1, flotante, strlen(flotante));
695 tmp1 += strlen(flotante);
696 tmp += sizeof(float);
697 /* Pongo campo numero_remito */
698 sprintf(tmp1, "[%08d]", *((int *)tmp));
701 /* Pongo numero de items */
702 sprintf(tmp1, "[%08d]", *((int *)tmp));
703 cant_items = *((int *)tmp);
707 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
709 tmp += sizeof(EMUFS_BLOCK_ID);
711 if (pos_actualizada == 1) {
712 (*ancho) = 50+strlen(flotante);
715 while (j < (tam_data-10*sizeof(t_Item))) {
728 if (pos_actualizada == 1)
732 /* Ahora proceso los items */
735 sprintf(tmp1, "[%08d]", *((int *)tmp));
738 if (pos_actualizada == 1)
741 while (j < (sizeof(t_Item)-sizeof(int))) {
754 if (pos_actualizada == 1)
760 if (pos_actualizada == 1)
767 if (emu->tam_bloque > emu->tam_reg) {
768 (*size) = tmp1-salida;
770 (*size) = tmp1-salida;
771 (*ancho) = tmp1-salida;
773 salida[*size-1] = '\0';
778 char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
780 char *tmp, *salida, *tmp1, pos_actualizada, ant;
781 EMUFS_REG_SIZE offset, curr_size;
783 int cant_header, i=0, j, tam_data, k;
785 if (ptr == NULL) return NULL;
787 PERR("Empieza el baile");
791 /* Me salto el ID, que no me interesa saber su valor */
792 offset += sizeof(EMUFS_REG_ID);
793 /* Copio el tamaño del registro de la cabecera. */
794 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
795 offset += sizeof(EMUFS_REG_SIZE);
797 /* Desplazo el offset */
798 if (curr_size == 0) {
799 /* Si el tamaño de registro es 0, quiere decir que llegue a la
800 * parte que esta vacia */
806 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
808 /* El tamaño del nuevo array lo calculo asi :
811 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);*/
812 if (salida == NULL) {
813 PERR("Error de malloc en salida");
820 while (i<cant_header) {
821 /* Verifico la pos_actual para el resaltado, asi queda coherente
822 * en el cambio de formato
824 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
825 (*pos_actual) = tmp1-salida;
828 /* Pongo el ID del registro */
829 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
831 tmp += sizeof(EMUFS_REG_ID);
832 /* Cantidad de espacio que ocupa la data */
833 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
834 tam_data = *((EMUFS_REG_SIZE *)tmp) - sizeof(int)*3 - sizeof(float) - sizeof(EMUFS_BLOCK_ID);
836 tmp += sizeof(EMUFS_REG_SIZE);
837 /* Pongo el campo numero */
838 sprintf(tmp1, "[%08d]", *((int *)tmp));
841 /* Pongo campo procdoi */
842 sprintf(flotante, "[%5.2f]", *((float *)tmp));
843 memcpy(tmp1, flotante, strlen(flotante));
844 tmp1 += strlen(flotante);
845 tmp += sizeof(float);
846 /* Pongo campo numero_remito */
847 sprintf(tmp1, "[%08d]", *((int *)tmp));
850 /* Pongo numero de items */
851 sprintf(tmp1, "[%08d]", *((int *)tmp));
852 cant_items = *((int *)tmp);
856 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
858 tmp += sizeof(EMUFS_BLOCK_ID);
860 if (pos_actualizada == 1) {
861 (*ancho) = 60+strlen(flotante);
864 PERR("Voy por la data");
865 while (j < (tam_data-cant_items*sizeof(t_Item))) {
878 if (pos_actualizada == 1)
882 /* Ahora proceso los items */
884 while (k < cant_items) {
885 sprintf(tmp1, "[%08d]", *((int *)tmp));
888 if (pos_actualizada == 1)
891 while (j < (sizeof(t_Item)-sizeof(int))) {
904 if (pos_actualizada == 1)
910 if (pos_actualizada == 1)
915 /* llego no . hasta el final */
916 while (tmp < (ptr+(*size))) {
924 if (emu->tam_bloque > emu->tam_reg) {
925 (*size) = tmp1-salida;
927 (*size) = tmp1-salida;
928 (*ancho) = tmp1-salida;
930 salida[*size-1] = '\0';
935 char *procesar_registro_articulo_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
940 EMUFS_REG_SIZE tam_data;
941 if (ptr == NULL) return NULL;
943 (*size) = *size - sizeof(EMUFS_REG_SIZE) - sizeof(EMUFS_REG_ID) + 21;
944 (*ancho) = *size-101;
945 salida = (char *)malloc(*size);
946 memset(salida, '.', *size);
948 PERR("Voy por el espacio antes");
949 for(i=0; i < *pos_actual; i++) {
950 /* Los datos que tengo por ahora los pongo enmascarados! */
951 salida[i] = ((*in)=='\0')?'*':(*in);
954 tmp = salida + *pos_actual;
955 in = ptr + *pos_actual;
957 PERR("Voy por el header");
959 sprintf(tmp, "(%08lu)", *((EMUFS_REG_ID *)in));
961 in += sizeof(EMUFS_REG_ID);
962 /* Tamaño de registro */
963 sprintf(tmp, "{%08lu}", *((EMUFS_REG_SIZE *)in));
964 tam_data = *((EMUFS_REG_SIZE *)in);
966 in += sizeof(EMUFS_REG_SIZE);
967 PERR("Voy por la data");
969 while (i < tam_data) {
970 (*tmp) = ((*in)=='\0')?'*':(*in);
975 PERR("Voy por el espacio despues");
976 for(i=0; i < 100-*pos_actual; i++) {
977 (*tmp) = ((*in)=='\0')?'*':(*in);
984 salida[*size-1] = '\0';