10 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
11 static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
12 static char *procesar_registro_articulo_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
13 static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
15 static char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
16 static char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
18 static int preguntar_id(WINDOW *win, EMUFS *fp);
20 void copy_char(char *dst, char *src)
22 /* Todos los espacidores los pongo iguales */
23 if (isspace(*src)) *dst = ' ';
24 else if (iscntrl(*src)) *dst = '*';
28 void mostrar_info(WINDOW *padre, int h, int offset_alto, int opt)
31 wattron(padre, A_BOLD);
32 wattron(padre, COLOR_PAIR(COLOR_RED));
33 mvwaddstr(padre, h-offset_alto+1, 5, "Teclas :");
34 wattroff(padre, A_BOLD);
35 wattroff(padre, COLOR_PAIR(COLOR_RED));
36 mvwaddstr(padre, h-offset_alto+2, 8, "Salir = ENTER");
37 mvwaddstr(padre, h-offset_alto+3, 8, "Scroll = A/Z");
38 mvwaddstr(padre, h-offset_alto+4, 8, "Seleccionar registros = K/L");
40 mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: ");
42 wattron(padre, A_BOLD);
44 wattroff(padre, A_BOLD);
45 waddstr(padre, "regar ");
46 wattron(padre, A_BOLD);
48 wattroff(padre, A_BOLD);
49 waddstr(padre, "ofidicar ");
50 wattron(padre, A_BOLD);
52 wattroff(padre, A_BOLD);
53 waddstr(padre, "liminar ");
55 mvwaddstr(padre, h-offset_alto+6, 8, "Buscar ID : B");
58 wattron(padre, A_BOLD);
59 wattron(padre, COLOR_PAIR(COLOR_RED));
60 mvwaddstr(padre, h-offset_alto+1, 45, "Leyenda :");
61 wattroff(padre, A_BOLD);
62 wattroff(padre, COLOR_PAIR(COLOR_RED));
63 mvwaddstr(padre, h-offset_alto+2, 48, " | = Separador de campo");
64 mvwaddstr(padre, h-offset_alto+3, 48, "[XXX] = Campo numerico");
65 mvwaddstr(padre, h-offset_alto+4, 48, "(XXX) = ID de registro");
66 mvwaddstr(padre, h-offset_alto+5, 48, "{XXX} = Tam. de registro");
67 mvwaddstr(padre, h-offset_alto+6, 48, " . = Esp. Libre");
70 char *juntar_memoria(char *s1, char *s2, char *s3, int size1, int size2, int size3)
77 salida = (char *)malloc(tam);
85 if (s1) memcpy(salida, s1, size1); else size1 = 0;
86 if (s2) memcpy(salida+size1, s2, size2); else size2 = 0;
87 if (s3) memcpy(salida+size1+size2, s3, size3);
94 void ver_bloques(WINDOW *padre, int w, int h, int cual)
96 /* Ventanas donde mostrar las cosas */
97 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
98 WINDOW *actual[2], *dlg;
99 EMUFS_REG_SIZE size, size_actual, size_siguiete, size_anterior;
100 int scroll, actual_ancho;
101 int max_scroll, c, offset_alto;
102 /* Indices que hay validos en IDX */
103 EMUFS_REG_ID indices_total, indices_actual;
104 char *bloque_actual, *bloque_anterior, *bloque_siguiente;
105 char *data; /* Registros a mostrar en pantalla */
107 int pos_actual, ancho_registro, offset, pos;
108 EMUFS_Estadisticas stats;
111 fp = emufs_abrir("articulos");
113 fp = emufs_abrir("facturas");
115 fp = emufs_abrir("notas");
117 stats = fp->leer_estadisticas(fp);
119 wattron(padre, COLOR_PAIR(COLOR_BLUE));
120 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
121 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
124 waddstr(padre, "Registro variable con bloque parametrizado.");
126 procesar = procesar_registro_articulo_tipo1;
128 procesar = procesar_registro_factura_tipo1;
131 waddstr(padre, "Registro variable sin bloques.");
132 actual[0] = msg_box(padre, w, h, "El tipo de archivo no contiene bloques.");
134 msg_box_free(padre, actual[0]);
139 procesar = procesar_registro_articulo_tipo3;
141 procesar = procesar_registro_factura_tipo3;
142 waddstr(padre, "Registro fijo con bloque parametrizado.");
147 indices_total = stats.cant_bloques;
149 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
151 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
153 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
155 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
156 if (!bloque_siguiente) {
157 bloque_siguiente = (char *)malloc(size_siguiete);
158 memset(bloque_siguiente, 0, size_siguiete);
160 if (!bloque_anterior) {
161 bloque_anterior = (char *)malloc(size_anterior);
162 memset(bloque_anterior, 0, size_anterior);
164 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
165 ancho_registro = size_actual;
166 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
168 PERR("HASTA ACA VOY BIEN");
170 max_scroll = (size_actual+size_anterior+size_siguiete) / (w-4) - (h-offset_alto-2);
171 if (max_scroll < 0) max_scroll = 0;
173 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
175 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
176 box(actual[0], 0, 0);
180 mostrar_info(padre, h, offset_alto, 0);
182 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
183 wattron(actual[1], A_BOLD);
184 waddnstr(actual[1], data+pos_actual, ancho_registro);
185 wattroff(actual[1], A_BOLD);
186 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
192 while ((c=getch()) != 13) {
196 dlg = newwin(4, 50, h/2-2, w/2-25);
198 indices_actual = preguntar_id(dlg, fp);
199 if (indices_actual < 0) indices_actual = 0;
200 if (indices_actual > indices_total) indices_actual = indices_total-1;
207 case 'a': /* Scroll */
209 if (scroll < 0) scroll = 0;
211 case 'z': /* Scroll */
213 if (scroll > max_scroll) scroll = max_scroll;
216 if (indices_actual < indices_total) {
218 if (indices_actual >= indices_total) indices_actual = indices_total-1;
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);
230 if (indices_actual != EMUFS_NOT_FOUND) {
232 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
233 if (data) free(data);
234 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
235 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
236 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
237 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
238 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
239 ancho_registro = size_actual;
240 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
243 /* Borro las ventanas */
246 /* Imprimo los registros */
248 offset = scroll*actual_ancho; /* Cantidad de caracteres que tengo que saltar */
249 pos = pos_actual - offset; /* Cantidad de caracteres que hay antes de mi a imprimir */
250 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
255 wattron(actual[1], A_BOLD);
256 waddnstr(actual[1], data+offset, ancho_registro+((pos<0)?pos:0));
257 wattroff(actual[1], A_BOLD);
258 offset += ancho_registro+((pos<0)?pos:0);
259 waddnstr(actual[1], data+offset, size-offset);
265 if (data) free(data);
273 void ver_registros(WINDOW *padre, int w, int h, int cual)
275 /* Ventanas donde mostrar las cosas */
276 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
277 WINDOW *actual[2], *dlg;
279 int scroll, actual_ancho;
280 int max_scroll, c, offset_alto;
281 /* Indices que hay validos en IDX */
282 EMUFS_REG_ID *indices, indices_total, indices_actual;
283 char *data; /* Registros a mostrar en pantalla */
284 char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
286 int pos_actual, ancho_registro, offset, pos;
289 fp = emufs_abrir("articulos");
291 fp = emufs_abrir("facturas");
293 wattron(padre, COLOR_PAIR(COLOR_BLUE));
294 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
295 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
298 waddstr(padre, "Registro variable con bloque parametrizado.");
300 procesar = procesar_registro_articulo_tipo1;
302 procesar = procesar_registro_factura_tipo1;
305 waddstr(padre, "Registro variable con sin bloques.");
307 procesar = procesar_registro_articulo_tipo2;
309 procesar = procesar_registro_factura_tipo1;
313 procesar = procesar_registro_articulo_tipo3;
315 procesar = procesar_registro_factura_tipo3;
316 waddstr(padre, "Registro fijo con bloque parametrizado.");
319 indices = emufs_idx_get(fp, &indices_total);
323 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
324 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
329 max_scroll = size / (w-4) - (h-offset_alto-2);
330 if (max_scroll < 0) max_scroll = 0;
332 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
334 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
335 box(actual[0], 0, 0);
339 mostrar_info(padre, h, offset_alto, 1);
342 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
343 wattron(actual[1], A_BOLD);
344 waddnstr(actual[1], data+pos_actual, ancho_registro);
345 wattroff(actual[1], A_BOLD);
346 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
353 while ((c=getch()) != 13) {
357 dlg = newwin(4, 50, h/2-2, w/2-25);
359 preguntar_id(dlg, fp);
368 if (indices_actual != EMUFS_NOT_FOUND)
369 fp->borrar_registro(fp, indices[indices_actual]);
372 indices = emufs_idx_get(fp, &indices_total);
373 if (indices_actual >= indices_total) {
374 indices_actual = indices_total - 1;
377 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
378 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
387 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
388 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
391 indices = emufs_idx_get(fp, &indices_total);
393 /* Tengo que re-pintar algunas cosas */
394 mostrar_info(padre, h, offset_alto, 1);
395 box(actual[0], 0, 0);
399 case 'm': /* Quiero editar !!! */
400 sprintf(codigo, "%lu", indices[indices_actual]);
402 art_modificar(codigo);
404 fact_modificar(codigo);
405 /* Vuelvo a cargar el articulo actual */
408 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
409 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
411 /* Tengo que re-pintar algunas cosas */
412 mostrar_info(padre, h, offset_alto, 1);
413 box(actual[0], 0, 0);
416 case 'a': /* Scroll */
418 if (scroll < 0) scroll = 0;
420 case 'z': /* Scroll */
422 if (scroll > max_scroll) scroll = max_scroll;
425 if (indices_actual < indices_total) {
427 if (indices_actual >= indices_total) indices_actual = indices_total-1;
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 if (indices_actual != EMUFS_NOT_FOUND) {
436 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
437 if (data) free(data);
438 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
439 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
443 /* Borro las ventanas */
446 /* Imprimo los registros */
448 offset = scroll*actual_ancho;
449 pos = pos_actual - offset;
450 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
452 wattron(actual[1], A_BOLD);
453 waddnstr(actual[1], data+offset, ancho_registro);
454 wattroff(actual[1], A_BOLD);
455 offset += ancho_registro;
456 waddnstr(actual[1], data+offset, size-offset);
462 if (indices) free(indices);
463 if (data) free(data);
471 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
473 char *tmp, *salida, *tmp1, pos_actualizada, ant;
474 int cant_header, i=0, j, tam_data;
475 if (ptr == NULL) return NULL;
477 /* Calculo cuantos headers de registros va a haber en el archivo */
478 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
479 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
480 tam_data = sizeof(t_Articulo);
482 (*size) = (*size)-sizeof(EMUFS_REG_ID)*cant_header*2 + 2*cant_header*10+1;
483 (*ancho) = sizeof(t_Articulo)-sizeof(EMUFS_REG_ID)+10;
484 if ((*ancho) > (*size))
486 if ((tam_data) > ((*size)-sizeof(EMUFS_REG_ID))) {
487 tam_data = (*size) - sizeof(EMUFS_REG_ID);
489 salida = (char *)malloc(*size);
490 memset(salida, '.', *size);
491 if (salida == NULL) {
497 while (i<cant_header) {
498 /* Verifico la pos_actual para el resaltado, asi queda coherente
499 * en el cambio de formato
501 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
502 (*pos_actual) = tmp1-salida;
505 /* Pongo el ID del registro */
506 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
508 tmp += sizeof(EMUFS_REG_ID);
510 while (j < (tam_data)) {
517 copy_char(tmp1, tmp);
528 salida[*size-1] = '\0';
533 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
535 EMUFS_REG_SIZE offset, curr_size;
536 char *tmp, *salida, *tmp1, pos_actualizada, ant;
537 int cant_header, i=0, j;
538 if (ptr == NULL) return NULL;
540 /* Cuento la cantidad de registros en este bloque */
543 PERR("Voy a contar la cantidad de headers");
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 */
553 fprintf(stderr, "Tamaño Registro = %lu\n", curr_size);
555 if (curr_size == 0) {
556 /* Si el tamaño de registro es 0, quiere decir que llegue a la
557 * parte que esta vacia */
563 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
566 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
567 memset(salida, '.',(*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
571 while (i<cant_header) {
572 /* Verifico la pos_actual para el resaltado, asi queda coherente
573 * en el cambio de formato
575 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
576 (*pos_actual) = tmp1-salida;
579 /* Pongo el ID del registro */
580 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
582 tmp += sizeof(EMUFS_REG_ID);
583 /* Pongo el tamaño del registro */
584 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
585 curr_size = *((EMUFS_REG_SIZE *)tmp);
586 if (pos_actualizada == 1) {
587 (*ancho) = curr_size+20;
591 tmp += sizeof(EMUFS_REG_SIZE);
594 while (j < curr_size) {
601 copy_char(tmp1, tmp);
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*2+2*cant_header*10+1;
614 salida[*size-1] = '\0';
619 int preguntar_id(WINDOW *win, EMUFS *fp)
622 t_Form *form = form_crear(win);
623 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
626 form_set_valor(form, "ID a buscar", "");
627 form_ejecutar(form, 1,1);
629 n = form_obtener_valor_int(form, "ID a buscar");
636 char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
638 char *tmp, *salida, *tmp1, pos_actualizada, ant;
640 int cant_header, i=0, j, tam_data;
641 if (ptr == NULL) return NULL;
643 PERR("Empieza el baile");
645 /* Calculo cuantos headers de registros va a haber en el archivo */
646 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
647 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
648 tam_data = emu->tam_reg;
650 (*size) = (*size) - cant_header*sizeof(EMUFS_REG_ID)+cant_header*10+1;
651 tmp1 = salida = (char *)malloc(*size);
652 memset(salida, '.', *size);
653 if (salida == NULL) {
654 PERR("Error de malloc en salida");
660 while (i<cant_header) {
661 /* Verifico la pos_actual para el resaltado, asi queda coherente
662 * en el cambio de formato
664 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
665 (*pos_actual) = tmp1-salida;
668 /* Pongo el ID del registro */
669 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
671 tmp += sizeof(EMUFS_REG_ID);
673 if (pos_actualizada == 1) {
677 while (j < (tam_data)) {
685 copy_char(tmp1, tmp);
690 if (pos_actualizada == 1)
694 if (pos_actualizada == 1)
701 salida[*size-1] = '\0';
706 char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
708 char *tmp, *salida, *tmp1, pos_actualizada, ant;
709 EMUFS_REG_SIZE offset, curr_size;
711 int cant_header, i=0, j, tam_data, k;
713 if (ptr == NULL) return NULL;
715 PERR("Empieza el baile");
719 /* Me salto el ID, que no me interesa saber su valor */
720 offset += sizeof(EMUFS_REG_ID);
721 /* Copio el tamaño del registro de la cabecera. */
722 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
723 offset += sizeof(EMUFS_REG_SIZE);
725 /* Desplazo el offset */
726 if (curr_size == 0) {
727 /* Si el tamaño de registro es 0, quiere decir que llegue a la
728 * parte que esta vacia */
734 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
736 /* El tamaño del nuevo array lo calculo asi :
739 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);*/
740 if (salida == NULL) {
741 PERR("Error de malloc en salida");
748 while (i<cant_header) {
749 /* Verifico la pos_actual para el resaltado, asi queda coherente
750 * en el cambio de formato
752 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
753 (*pos_actual) = tmp1-salida;
756 /* Pongo el ID del registro */
757 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
759 tmp += sizeof(EMUFS_REG_ID);
760 /* Cantidad de espacio que ocupa la data */
761 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
762 tam_data = *((EMUFS_REG_SIZE *)tmp) - sizeof(int)*3 - sizeof(float) - sizeof(EMUFS_BLOCK_ID);
764 tmp += sizeof(EMUFS_REG_SIZE);
765 /* Pongo el campo numero */
766 sprintf(tmp1, "[%08d]", *((int *)tmp));
769 /* Pongo campo procdoi */
770 sprintf(flotante, "[%5.2f]", *((float *)tmp));
771 memcpy(tmp1, flotante, strlen(flotante));
772 tmp1 += strlen(flotante);
773 tmp += sizeof(float);
774 /* Pongo campo numero_remito */
775 sprintf(tmp1, "[%08d]", *((int *)tmp));
778 /* Pongo numero de items */
779 sprintf(tmp1, "[%08d]", *((int *)tmp));
780 cant_items = *((int *)tmp);
784 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
786 tmp += sizeof(EMUFS_BLOCK_ID);
788 if (pos_actualizada == 1) {
789 (*ancho) = 60+strlen(flotante);
792 PERR("Voy por la data");
793 while (j < (tam_data-cant_items*sizeof(t_Item))) {
806 if (pos_actualizada == 1)
810 /* Ahora proceso los items */
812 while (k < cant_items) {
813 sprintf(tmp1, "[%08d]", *((int *)tmp));
816 if (pos_actualizada == 1)
819 while (j < (sizeof(t_Item)-sizeof(int))) {
832 if (pos_actualizada == 1)
838 if (pos_actualizada == 1)
843 /* llego no . hasta el final */
844 while (tmp < (ptr+(*size))) {
852 if (emu->tam_bloque > emu->tam_reg) {
853 (*size) = tmp1-salida;
855 (*size) = tmp1-salida;
856 (*ancho) = tmp1-salida;
858 salida[*size-1] = '\0';
863 char *procesar_registro_articulo_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
868 EMUFS_REG_SIZE tam_data;
869 if (ptr == NULL) return NULL;
871 (*size) = *size - sizeof(EMUFS_REG_SIZE) - sizeof(EMUFS_REG_ID) + 21;
872 (*ancho) = *size-101;
873 salida = (char *)malloc(*size);
874 memset(salida, '.', *size);
876 PERR("Voy por el espacio antes");
877 for(i=0; i < *pos_actual; i++) {
878 /* Los datos que tengo por ahora los pongo enmascarados! */
879 copy_char(&salida[i], in);
882 tmp = salida + *pos_actual;
883 in = ptr + *pos_actual;
885 PERR("Voy por el header");
887 sprintf(tmp, "(%08lu)", *((EMUFS_REG_ID *)in));
889 in += sizeof(EMUFS_REG_ID);
890 /* Tamaño de registro */
891 sprintf(tmp, "{%08lu}", *((EMUFS_REG_SIZE *)in));
892 tam_data = *((EMUFS_REG_SIZE *)in);
894 in += sizeof(EMUFS_REG_SIZE);
895 PERR("Voy por la data");
897 while (i < tam_data) {
903 PERR("Voy por el espacio despues");
904 for(i=0; i < 100-*pos_actual; i++) {
912 salida[*size-1] = '\0';