]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/viewer.c
* Ver Registros/bloques de Facturas y Articulos con tipo1
[z.facultad/75.06/emufs.git] / emufs_gui / viewer.c
1
2 #include "viewer.h"
3 #include "idx.h"
4 #include "articulos.h"
5 #include "facturas.h"
6 #include "gui.h"
7 #include "common.h"
8 #include <ctype.h>
9
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);
14
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);
17
18 static int preguntar_id(WINDOW *win, EMUFS *fp);
19
20 void copy_char(char *dst, char *src)
21 {
22         /* Todos los espacidores los pongo iguales */
23         if (isspace(*src)) *dst = ' ';
24         else if (iscntrl(*src)) *dst = '*';
25         else *dst = *src;
26 }
27
28 void mostrar_info(WINDOW *padre, int h, int offset_alto, int opt)
29 {
30         /* Info de teclas */
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");
39         if (opt) {
40                 mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: ");
41                 waddstr(padre, "A");
42                 wattron(padre, A_BOLD);
43                 waddch(padre, 'g');
44                 wattroff(padre, A_BOLD);
45                 waddstr(padre, "regar ");
46                 wattron(padre, A_BOLD);
47                 waddstr(padre, "M");
48                 wattroff(padre, A_BOLD);
49                 waddstr(padre, "ofidicar ");
50                 wattron(padre, A_BOLD);
51                 waddstr(padre, "E");
52                 wattroff(padre, A_BOLD);
53                 waddstr(padre, "liminar ");
54         }
55         mvwaddstr(padre, h-offset_alto+6, 8, "Buscar ID : B");
56         
57         /* Info de leyenda */
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");
68 }
69
70 char *juntar_memoria(char *s1, char *s2, char *s3, int size1, int size2, int size3)
71 {
72         char *salida;
73         int tam=0;
74         if (s1) tam += size1;
75         if (s2) tam += size2;
76         if (s3) tam += size3;
77         salida = (char *)malloc(tam);
78         if (salida == NULL) {
79                         free(s1);
80                         free(s2);
81                         free(s3);
82                         return NULL;
83         }
84
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);
88         if (s1) free(s1);
89         if (s2) free(s2);
90         if (s3) free(s3);
91         return salida;
92 }
93
94 void ver_bloques(WINDOW *padre, int w, int h, int cual)
95 {
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 */
106         EMUFS *fp;
107         int pos_actual, ancho_registro, offset, pos;
108         EMUFS_Estadisticas stats;
109
110         if (cual == 0)
111                 fp = emufs_abrir("articulos");
112         else if (cual == 1)
113                 fp = emufs_abrir("facturas");
114         else if (cual == 2)
115                 fp = emufs_abrir("notas");
116         
117         stats = fp->leer_estadisticas(fp);
118                                         
119         wattron(padre, COLOR_PAIR(COLOR_BLUE));
120         mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
121         wattroff(padre, COLOR_PAIR(COLOR_BLUE));
122         switch (fp->tipo) {
123                 case T1:
124                         waddstr(padre, "Registro variable con bloque parametrizado.");
125                         if (cual == 0)
126                                 procesar = procesar_registro_articulo_tipo1;
127                         else
128                                 procesar = procesar_registro_factura_tipo1;
129                 break;
130                 case T2:
131                         waddstr(padre, "Registro variable sin bloques.");
132                         actual[0] = msg_box(padre, w, h, "El tipo de archivo no contiene bloques.");
133                         getch();
134                         msg_box_free(padre, actual[0]);
135                         return;
136                 break;
137                 case T3:
138                         if (cual == 0)
139                                 procesar = procesar_registro_articulo_tipo3;
140                         else
141                                 procesar = procesar_registro_factura_tipo3;
142                         waddstr(padre, "Registro fijo con bloque parametrizado.");
143         }
144
145
146         indices_actual = 0;
147         indices_total = stats.cant_bloques; 
148         /* Leo */
149         fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
150         pos_actual = 0;
151         bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
152         pos_actual = 0;
153         bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
154         pos_actual = 0;
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);
159         }
160         if (!bloque_anterior) {
161                 bloque_anterior = (char *)malloc(size_anterior);
162                 memset(bloque_anterior, 0, size_anterior);
163         }
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);
167
168         PERR("HASTA ACA VOY BIEN");
169         offset_alto = 8;
170         max_scroll = (size_actual+size_anterior+size_siguiete) / (w-4) - (h-offset_alto-2);
171         if (max_scroll < 0) max_scroll = 0;
172
173         actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
174         actual_ancho = w-4;
175         actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
176         box(actual[0], 0, 0);
177
178         curs_set(0);
179
180         mostrar_info(padre, h, offset_alto, 0);
181         
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));
187         
188         wrefresh(actual[1]);
189         wrefresh(actual[0]);
190         wrefresh(padre);
191         scroll = 0;
192         while ((c=getch()) != 13) {
193                 switch (c) {
194                         case 'b':
195                         case 'B':
196                                 dlg = newwin(4, 50, h/2-2, w/2-25);
197                                 box(dlg, 0, 0);
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;
201                                 werase(dlg);
202                                 wrefresh(dlg);
203                                 delwin(dlg);
204                                 wrefresh(padre);
205                                 curs_set(0);
206                         break;
207                         case 'a': /* Scroll */
208                                 scroll--;
209                                 if (scroll < 0) scroll = 0;
210                         break;
211                         case 'z': /* Scroll */
212                                 scroll++;
213                                 if (scroll > max_scroll) scroll = max_scroll;
214                         break;
215                         case 'l':
216                                 if (indices_actual < indices_total) {
217                                         indices_actual++;
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);
227                                 }
228                         break;
229                         case 'k':
230                                 if (indices_actual != EMUFS_NOT_FOUND) {
231                                         indices_actual--;
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);
241                                 }
242                 }
243                 /* Borro las ventanas */
244                 werase(actual[1]);
245
246                 /* Imprimo los registros */
247                 if (data) {
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);
251                         if (pos > 0)
252                                 offset += pos;
253                         else
254                                 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);
260                 }
261
262                 wrefresh(actual[1]);
263                 wrefresh(padre);
264         }
265         if (data) free(data);
266
267         emufs_destruir(fp);
268         delwin(actual[0]);
269         wrefresh(padre);
270         curs_set(1);
271 }
272
273 void ver_registros(WINDOW *padre, int w, int h, int cual)
274 {
275         /* Ventanas donde mostrar las cosas */
276         char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
277         WINDOW *actual[2], *dlg;
278         EMUFS_REG_SIZE size;
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 */
285         EMUFS *fp;
286         int pos_actual, ancho_registro, offset, pos;
287
288         if (cual == 0)
289                 fp = emufs_abrir("articulos");
290         else
291                 fp = emufs_abrir("facturas");
292
293         wattron(padre, COLOR_PAIR(COLOR_BLUE));
294         mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
295         wattroff(padre, COLOR_PAIR(COLOR_BLUE));
296         switch (fp->tipo) {
297                 case T1:
298                         waddstr(padre, "Registro variable con bloque parametrizado.");
299                         if (cual == 0)
300                                 procesar = procesar_registro_articulo_tipo1;
301                         else
302                                 procesar = procesar_registro_factura_tipo1;
303                 break;
304                 case T2:
305                         waddstr(padre, "Registro variable con sin bloques.");
306                         if (cual == 0)
307                                 procesar = procesar_registro_articulo_tipo2;
308                         else
309                                 procesar = procesar_registro_factura_tipo1;
310                 break;
311                 case T3:
312                         if (cual == 0)
313                                 procesar = procesar_registro_articulo_tipo3;
314                         else
315                                 procesar = procesar_registro_factura_tipo3;
316                         waddstr(padre, "Registro fijo con bloque parametrizado.");
317         }
318
319         indices = emufs_idx_get(fp, &indices_total);
320
321         indices_actual = 0;
322         if (indices) {
323                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
324                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
325         }
326
327
328         offset_alto = 8;
329         max_scroll = size / (w-4) - (h-offset_alto-2);
330         if (max_scroll < 0) max_scroll = 0;
331
332         actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
333         actual_ancho = w-4;
334         actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
335         box(actual[0], 0, 0);
336
337         curs_set(0);
338
339         mostrar_info(padre, h, offset_alto, 1);
340
341         if (data) {
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));
347         }
348         
349         wrefresh(actual[1]);
350         wrefresh(actual[0]);
351         wrefresh(padre);
352         scroll = 0;
353         while ((c=getch()) != 13) {
354                 switch (c) {
355                         case 'b':
356                         case 'B':
357                                 dlg = newwin(4, 50, h/2-2, w/2-25);
358                                 box(dlg, 0, 0);
359                                 preguntar_id(dlg, fp);
360                                 werase(dlg);
361                                 wrefresh(dlg);
362                                 delwin(dlg);
363                                 wrefresh(padre);
364                                 curs_set(0);
365                         break;
366                         case 'e':
367                         case 'E':
368                                 if (indices_actual != EMUFS_NOT_FOUND)
369                                         fp->borrar_registro(fp, indices[indices_actual]);
370         
371                                 free(indices);
372                                 indices = emufs_idx_get(fp, &indices_total);
373                                 if (indices_actual >= indices_total) {
374                                         indices_actual = indices_total - 1;
375                                 }
376                                 
377                                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
378                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
379                         break;
380                         case 'g':
381                         case 'G':
382                                 if (cual == 0)
383                                         art_agregar(NULL);
384                                 else
385                                         fact_agregar(NULL);
386                                 free(data);
387                                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
388                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
389         
390                                 free(indices);
391                                 indices = emufs_idx_get(fp, &indices_total);
392
393                                 /* Tengo que re-pintar algunas cosas */
394                                 mostrar_info(padre, h, offset_alto, 1);
395                                 box(actual[0], 0, 0);
396                                 wrefresh(actual[0]);
397                         break;                  
398                         case 'M':
399                         case 'm': /* Quiero editar !!! */
400                                 sprintf(codigo, "%lu", indices[indices_actual]);
401                                 if (cual == 0)
402                                         art_modificar(codigo);  
403                                 else
404                                         fact_modificar(codigo);
405                                 /* Vuelvo a cargar el articulo actual */
406                                 
407                                 free(data);
408                                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
409                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
410
411                                 /* Tengo que re-pintar algunas cosas */
412                                 mostrar_info(padre, h, offset_alto, 1);
413                                 box(actual[0], 0, 0);
414                                 wrefresh(actual[0]);
415                         break;
416                         case 'a': /* Scroll */
417                                 scroll--;
418                                 if (scroll < 0) scroll = 0;
419                         break;
420                         case 'z': /* Scroll */
421                                 scroll++;
422                                 if (scroll > max_scroll) scroll = max_scroll;
423                         break;
424                         case 'l':
425                                 if (indices_actual < indices_total) {
426                                         indices_actual++;
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);
431                                 }
432                         break;
433                         case 'k':
434                                 if (indices_actual != EMUFS_NOT_FOUND) {
435                                         indices_actual--;
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);
440                                 }
441
442                 }
443                 /* Borro las ventanas */
444                 werase(actual[1]);
445
446                 /* Imprimo los registros */
447                 if (data) {
448                         offset = scroll*actual_ancho;
449                         pos = pos_actual - offset;
450                         mvwaddnstr(actual[1], 0, 0, data+offset, pos);
451                         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);
457                 }
458
459                 wrefresh(actual[1]);
460                 wrefresh(padre);
461         }
462         if (indices) free(indices);
463         if (data) free(data);
464
465         emufs_destruir(fp);
466         delwin(actual[0]);
467         wrefresh(padre);
468         curs_set(1);
469 }
470
471 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
472 {
473         char *tmp, *salida, *tmp1, pos_actualizada, ant;
474         int cant_header, i=0, j, tam_data;
475         if (ptr == NULL) return NULL;
476
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);
481
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))
485                 (*ancho) = (*size);
486         if ((tam_data) > ((*size)-sizeof(EMUFS_REG_ID))) {
487                 tam_data = (*size) - sizeof(EMUFS_REG_ID);
488         }
489         salida = (char *)malloc(*size);
490         memset(salida, '.', *size);
491         if (salida == NULL) {
492                 return NULL;
493         }
494         tmp = ptr;
495         tmp1 = salida;
496         pos_actualizada = 0;
497         while (i<cant_header) {
498                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
499                  * en el cambio de formato
500                  */
501                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
502                         (*pos_actual) = tmp1-salida;
503                         pos_actualizada = 1;
504                 }
505                 /* Pongo el ID del registro */
506                 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
507                 tmp1 += 10;
508                 tmp += sizeof(EMUFS_REG_ID);
509                 j = 0;
510                 while (j < (tam_data)) {
511                         if (*tmp == '\0') {
512                                 if (ant == (*tmp))
513                                         (*tmp1) = '.';
514                                 else
515                                         (*tmp1) = '|';
516                         } else {
517                                 copy_char(tmp1, tmp);
518                         }
519                         ant = (*tmp);
520                         tmp++;
521                         tmp1++;
522                         j++;
523                 }
524                 i++;
525         }
526         free(ptr);
527         
528         salida[*size-1] = '\0';
529
530         return salida;
531 }
532
533 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
534 {
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;
539         
540         /* Cuento la cantidad de registros en este bloque */
541         cant_header = 0;
542         offset = 0;
543         PERR("Voy a contar la cantidad de headers");
544         do {
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);
550
551                 /* Desplazo el offset */
552 #ifdef DEBUG
553                 fprintf(stderr, "Tamaño Registro = %lu\n", curr_size);
554 #endif
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 */
558                         break;
559                 } else {
560                         cant_header++;
561                         offset += curr_size;
562                 }
563         } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
564
565         /* Proceso */
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);
568         tmp = ptr;
569         tmp1 = salida;
570         pos_actualizada = 0;
571         while (i<cant_header) {
572                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
573                  * en el cambio de formato
574                  */
575                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
576                         (*pos_actual) = tmp1-salida;
577                         pos_actualizada = 1;
578                 }
579                 /* Pongo el ID del registro */
580                 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
581                 tmp1 += 10;
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;
588                         pos_actualizada = 2;
589                 }
590                 tmp1 += 10;
591                 tmp += sizeof(EMUFS_REG_SIZE);
592                 PERR("Voy aca");
593                 j = 0;
594                 while (j < curr_size) {
595                         if (*tmp == '\0') {
596                                 if (ant == (*tmp))
597                                         (*tmp1) = '.';
598                                 else
599                                         (*tmp1) = '|';
600                         } else {
601                                 copy_char(tmp1, tmp);
602                         }
603                         ant = (*tmp);
604                         tmp++;
605                         tmp1++;
606                         j++;
607                 }
608                 PERR("Y hasta todo bien");
609                 i++;
610         }
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;
613         free(ptr);
614         salida[*size-1] = '\0';
615         
616         return salida;
617 }
618
619 int preguntar_id(WINDOW *win, EMUFS *fp)
620 {
621         int n=-1;
622         t_Form *form = form_crear(win);
623         form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
624
625         do {
626                 form_set_valor(form, "ID a buscar", "");
627                 form_ejecutar(form, 1,1);
628
629                 n = form_obtener_valor_int(form, "ID a buscar");
630         } while (n>0);
631
632         form_destruir(form);
633         return n;
634 }
635
636 char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
637 {
638         char *tmp, *salida, *tmp1, pos_actualizada, ant;
639         int cant_header, i=0, j, tam_data;
640         if (ptr == NULL) return NULL;
641
642         PERR("Empieza el baile");
643
644         /* Calculo cuantos headers de registros va a haber en el archivo */
645         cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
646         if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
647         tam_data = emu->tam_reg;
648
649         (*size) = (*size) - cant_header*sizeof(EMUFS_REG_ID)+cant_header*10+1;
650         tmp1 = salida = (char *)malloc(*size);
651         memset(salida, '.', *size);
652         if (salida == NULL) {
653                 PERR("Error de malloc en salida");
654                 return NULL;
655         }
656         tmp = ptr;
657         pos_actualizada = 0;
658         (*ancho) = 0;
659         while (i<cant_header) {
660                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
661                  * en el cambio de formato
662                  */
663                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
664                         (*pos_actual) = tmp1-salida;
665                         pos_actualizada = 1;
666                 }
667                 /* Pongo el ID del registro */
668                 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
669                 tmp1 += 10;
670                 tmp += sizeof(EMUFS_REG_ID);
671
672                 if (pos_actualizada == 1) {
673                         (*ancho) = 10;
674                 }
675                 j = 0;
676                 while (j < (tam_data)) {
677                         if (*tmp == '\0') {
678                                 if (ant == (*tmp)){
679                                         (*tmp1) = '.';
680                                 } else {
681                                         (*tmp1) = '|';
682                                 }
683                         } else {
684                                 copy_char(tmp1, tmp);
685                         }
686                         ant = (*tmp);
687                         tmp++;
688                         tmp1++;
689                         if (pos_actualizada == 1)
690                                 (*ancho)++;
691                         j++;
692                 }
693                 if (pos_actualizada == 1)
694                         pos_actualizada = 2;
695                 i++;
696         }
697         free(ptr);
698
699         PERR("Termine");
700         salida[*size-1] = '\0';
701
702         return salida;
703 }
704
705 char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
706 {
707         char *tmp, *salida, *tmp1, pos_actualizada, ant;
708         EMUFS_REG_SIZE offset, curr_size;
709         int cant_header, i=0, j, tam_data;
710         int cant_items;
711         if (ptr == NULL) return NULL;
712
713         PERR("Empieza el baile");
714         cant_header = 0;
715         offset = 0;
716         do {
717                 /* Me salto el ID, que no me interesa saber su valor */
718                 offset += sizeof(EMUFS_REG_ID);
719                 /* Copio el tamaño del registro de la cabecera. */
720                 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
721                 offset += sizeof(EMUFS_REG_SIZE);
722
723                 /* Desplazo el offset */
724 #ifdef DEBUG
725                 fprintf(stderr, "Tam = %d\n", curr_size);
726 #endif
727                 if (curr_size == 0) {
728                         /* Si el tamaño de registro es 0, quiere decir que llegue a la
729                          * parte que esta vacia */
730                         break;
731                 } else {
732                         cant_header++;
733                         offset += curr_size;
734                 }
735         } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
736
737         /* El tamaño del nuevo array lo calculo asi :
738          *   
739          */
740         (*size) = (*size) - sizeof(EMUFS_REG_ID)*cant_header - sizeof(EMUFS_REG_SIZE)*cant_header + cant_header*20+1;
741         tmp1 = salida = (char *)malloc(*size);
742         if (salida == NULL) {
743                 PERR("Error de malloc en salida");
744                 return NULL;
745         }
746         memset(salida, '.', *size);
747         tmp = ptr;
748         pos_actualizada = 0;
749         (*ancho) = 0;
750         i = 0;
751         while (i<cant_header) {
752                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
753                  * en el cambio de formato
754                  */
755                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
756                         (*pos_actual) = tmp1-salida;
757                         pos_actualizada = 1;
758                 }
759                 /* Pongo el ID del registro */
760                 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
761                 tmp1 += 10;
762                 tmp += sizeof(EMUFS_REG_ID);
763                 /* Cantidad de espacio que ocupa la data */
764                 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
765                 tam_data = *((EMUFS_REG_SIZE *)tmp);
766                 tmp1 += 10;
767                 tmp += sizeof(EMUFS_REG_SIZE);
768
769                 if (pos_actualizada == 1) {
770                         (*ancho) = 20;
771                 }
772                 j = 0;
773                 PERR("Voy por la data");
774                 while (j < tam_data) {
775                         if (*tmp == '\0') {
776                                 if (ant == (*tmp)){
777                                         (*tmp1) = '.';
778                                 } else {
779                                         (*tmp1) = '|';
780                                 }
781                         } else {
782                                 copy_char(tmp1, tmp);
783                         }
784                         ant = (*tmp);
785                         tmp++;
786                         tmp1++;
787                         if (pos_actualizada == 1)
788                                 (*ancho)++;
789                         j++;
790                 }
791                 if (pos_actualizada == 1)
792                         pos_actualizada = 2;
793                 i++;
794         }
795         free(ptr);
796
797         PERR("Termine");
798         salida[*size-1] = '\0';
799
800         return salida;
801 }
802
803 char *procesar_registro_articulo_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
804 {
805         char *salida, *tmp;
806         char *in;
807         int i;
808         EMUFS_REG_SIZE tam_data;
809         if (ptr == NULL) return NULL;
810
811         (*size) = *size - sizeof(EMUFS_REG_SIZE) - sizeof(EMUFS_REG_ID) + 21;
812         (*ancho) = *size-101;
813         salida = (char *)malloc(*size);
814         memset(salida, '.', *size);
815
816         PERR("Voy por el espacio antes");
817         for(i=0; i < *pos_actual; i++) {
818                 /* Los datos que tengo por ahora los pongo enmascarados! */
819                 copy_char(&salida[i], in);
820                 in++;
821         }
822         tmp = salida + *pos_actual;
823         in = ptr + *pos_actual;
824
825         PERR("Voy por el header");
826         /* ID de registro */
827         sprintf(tmp, "(%08lu)", *((EMUFS_REG_ID *)in));
828         tmp += 10;
829         in += sizeof(EMUFS_REG_ID);
830         /* Tamaño de registro */
831         sprintf(tmp, "{%08lu}", *((EMUFS_REG_SIZE *)in));
832         tam_data = *((EMUFS_REG_SIZE *)in);
833         tmp += 10;
834         in += sizeof(EMUFS_REG_SIZE);
835         PERR("Voy por la data");
836         i = 0;
837         while (i < tam_data) {
838                 copy_char(tmp, in);
839                 tmp++;
840                 in++;
841                 i++;
842         }
843         PERR("Voy por el espacio despues");
844         for(i=0; i < 100-*pos_actual; i++) {
845                 copy_char(tmp, in);
846                 tmp++;
847                 in++;
848         }
849
850         free(ptr);
851         PERR("LISTO");
852         salida[*size-1] = '\0';
853         return salida;
854 }
855