]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/viewer.c
* BUGFIX : Estaba mal la condicion de salida en el while de preguntar_id
[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_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
12 static char *procesar_registro_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
13 static char *procesar_registro_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
14
15 static int preguntar_id(WINDOW *win, EMUFS *fp);
16
17 void copy_char(char *dst, char *src)
18 {
19         /* Todos los espacidores los pongo iguales */
20         if (isspace(*src)) *dst = ' ';
21         else if (iscntrl(*src)) *dst = '*';
22         else *dst = *src;
23 }
24
25 void mostrar_info(WINDOW *padre, int h, int offset_alto, int opt)
26 {
27         /* Info de teclas */
28         wattron(padre, A_BOLD);
29         wattron(padre, COLOR_PAIR(COLOR_RED));
30         mvwaddstr(padre, h-offset_alto+1, 5, "Teclas :");
31         wattroff(padre, A_BOLD);
32         wattroff(padre, COLOR_PAIR(COLOR_RED));
33         mvwaddstr(padre, h-offset_alto+2, 8, "Salir = ENTER");
34         mvwaddstr(padre, h-offset_alto+3, 8, "Scroll = A/Z");
35         mvwaddstr(padre, h-offset_alto+4, 8, "Seleccionar registros = K/L");
36         if (opt) {
37                 mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: ");
38                 waddstr(padre, "A");
39                 wattron(padre, A_BOLD);
40                 waddch(padre, 'g');
41                 wattroff(padre, A_BOLD);
42                 waddstr(padre, "regar ");
43                 wattron(padre, A_BOLD);
44                 waddstr(padre, "M");
45                 wattroff(padre, A_BOLD);
46                 waddstr(padre, "ofidicar ");
47                 wattron(padre, A_BOLD);
48                 waddstr(padre, "E");
49                 wattroff(padre, A_BOLD);
50                 waddstr(padre, "liminar ");
51         }
52         mvwaddstr(padre, h-offset_alto+6, 8, "Buscar ID : B");
53         
54         /* Info de leyenda */
55         wattron(padre, A_BOLD);
56         wattron(padre, COLOR_PAIR(COLOR_RED));
57         mvwaddstr(padre, h-offset_alto+1, 45, "Leyenda :");
58         wattroff(padre, A_BOLD);
59         wattroff(padre, COLOR_PAIR(COLOR_RED));
60         mvwaddstr(padre, h-offset_alto+2, 48, "  |   = Separador de campo");
61         mvwaddstr(padre, h-offset_alto+3, 48, "(XXX) = ID de registro");
62         mvwaddstr(padre, h-offset_alto+4, 48, "{XXX} = Tam. de registro");
63         mvwaddstr(padre, h-offset_alto+5, 48, "  .   = Esp. Libre");
64 }
65
66 char *juntar_memoria(char *s1, char *s2, char *s3, int size1, int size2, int size3)
67 {
68         char *salida;
69         int tam=0;
70         if (s1) tam += size1;
71         if (s2) tam += size2;
72         if (s3) tam += size3;
73         salida = (char *)malloc(tam);
74         if (salida == NULL) {
75                         free(s1);
76                         free(s2);
77                         free(s3);
78                         return NULL;
79         }
80
81         if (s1) memcpy(salida, s1, size1); else size1 = 0;
82         if (s2) memcpy(salida+size1, s2, size2); else size2 = 0;
83         if (s3) memcpy(salida+size1+size2, s3, size3);
84         if (s1) free(s1);
85         if (s2) free(s2);
86         if (s3) free(s3);
87         return salida;
88 }
89
90 void ver_bloques(WINDOW *padre, int w, int h, int cual)
91 {
92         /* Ventanas donde mostrar las cosas */
93         char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
94         WINDOW *actual[2], *dlg;
95         EMUFS_REG_SIZE size, size_actual, size_siguiete, size_anterior;
96         int scroll, actual_ancho;
97         int max_scroll, c, offset_alto;
98         /* Indices que hay validos en IDX */
99         EMUFS_REG_ID indices_total, indices_actual;
100         char *bloque_actual, *bloque_anterior, *bloque_siguiente;
101         char *data; /* Registros a mostrar en pantalla */
102         EMUFS *fp;
103         int pos_actual, ancho_registro, offset, pos;
104         EMUFS_Estadisticas stats;
105
106         if (cual == 0)
107                 fp = emufs_abrir("articulos");
108         else if (cual == 1)
109                 fp = emufs_abrir("facturas");
110         else if (cual == 2)
111                 fp = emufs_abrir("notas");
112         
113         stats = fp->leer_estadisticas(fp);
114                                         
115         wattron(padre, COLOR_PAIR(COLOR_BLUE));
116         mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
117         wattroff(padre, COLOR_PAIR(COLOR_BLUE));
118         switch (fp->tipo) {
119                 case T1:
120                         waddstr(padre, "Registro variable con bloque parametrizado.");
121                         procesar = procesar_registro_tipo1;
122                 break;
123                 case T2:
124                         waddstr(padre, "Registro variable sin bloques.");
125                         actual[0] = msg_box(padre, w, h, "El tipo de archivo no contiene bloques.");
126                         getch();
127                         msg_box_free(padre, actual[0]);
128                         return;
129                 break;
130                 case T3:
131                         procesar = procesar_registro_tipo3;
132                         waddstr(padre, "Registro fijo con bloque parametrizado.");
133         }
134
135
136         indices_actual = 0;
137         indices_total = stats.cant_bloques; 
138         /* Leo */
139         fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
140         pos_actual = 0;
141         bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
142         pos_actual = 0;
143         bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
144         pos_actual = 0;
145         bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
146         if (!bloque_siguiente) {
147                 bloque_siguiente = (char *)malloc(size_siguiete);
148                 memset(bloque_siguiente, 0, size_siguiete);
149         }
150         if (!bloque_anterior) {
151                 bloque_anterior = (char *)malloc(size_anterior);
152                 memset(bloque_anterior, 0, size_anterior);
153         }
154         pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
155         ancho_registro = size_actual;
156         data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
157
158         PERR("HASTA ACA VOY BIEN");
159         offset_alto = 8;
160         max_scroll = (size_actual+size_anterior+size_siguiete) / (w-4) - (h-offset_alto-2);
161         if (max_scroll < 0) max_scroll = 0;
162
163         actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
164         actual_ancho = w-4;
165         actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
166         box(actual[0], 0, 0);
167
168         curs_set(0);
169
170         mostrar_info(padre, h, offset_alto, 0);
171         
172         mvwaddnstr(actual[1], 0, 0, data, pos_actual);
173         wattron(actual[1], A_BOLD);
174         waddnstr(actual[1], data+pos_actual, ancho_registro);
175         wattroff(actual[1], A_BOLD);
176         waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
177         
178         wrefresh(actual[1]);
179         wrefresh(actual[0]);
180         wrefresh(padre);
181         scroll = 0;
182         while ((c=getch()) != 13) {
183                 switch (c) {
184                         case 'b':
185                         case 'B':
186                                 dlg = newwin(4, 50, h/2-2, w/2-25);
187                                 box(dlg, 0, 0);
188                                 indices_actual = preguntar_id(dlg, fp);
189                                 if (indices_actual < 0) indices_actual = 0;
190                                 if (indices_actual >= indices_total) indices_actual = indices_total-1;
191                                 werase(dlg);
192                                 wrefresh(dlg);
193                                 delwin(dlg);
194                                 wrefresh(padre);
195                                 curs_set(0);
196                                 if (data) free(data);
197                                 fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
198                                 bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
199                                 bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
200                                 bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
201                                 pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
202                                 ancho_registro = size_actual;
203                                 data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
204                         break;
205                         case 'a': /* Scroll */
206                                 scroll--;
207                                 if (scroll < 0) scroll = 0;
208                         break;
209                         case 'z': /* Scroll */
210                                 scroll++;
211                                 if (scroll > max_scroll) scroll = max_scroll;
212                         break;
213                         case 'l':
214                                 if (indices_actual < indices_total) {
215                                         indices_actual++;
216                                         if (indices_actual >= indices_total) indices_actual = indices_total-1;
217                                         if (data) free(data);
218                                         fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
219                                         bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
220                                         bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
221                                         bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
222                                         pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
223                                         ancho_registro = size_actual;
224                                         data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
225                                 }
226                         break;
227                         case 'k':
228                                 if (indices_actual != EMUFS_NOT_FOUND) {
229                                         indices_actual--;
230                                         if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
231                                         if (data) free(data);
232                                         fp->leer_bloque_raw(fp, indices_actual, &bloque_actual, &bloque_anterior, &bloque_siguiente, &size_actual, &size_anterior, &size_siguiete);
233                                         bloque_actual = procesar(fp, bloque_actual, &size_actual, &pos_actual, &ancho_registro);
234                                         bloque_siguiente = procesar(fp, bloque_siguiente, &size_siguiete, &pos_actual, &ancho_registro);
235                                         bloque_anterior = procesar(fp, bloque_anterior, &size_anterior, &pos_actual, &ancho_registro);
236                                         pos_actual = size_anterior; /* Resalta desde el fin del bloque anterior */
237                                         ancho_registro = size_actual;
238                                         data = juntar_memoria(bloque_anterior, bloque_actual, bloque_siguiente, size_anterior, size_actual, size_siguiete);
239                                 }
240                 }
241                 /* Borro las ventanas */
242                 werase(actual[1]);
243
244                 /* Imprimo los registros */
245                 if (data) {
246                         offset = scroll*actual_ancho; /* Cantidad de caracteres que tengo que saltar */
247                         pos = pos_actual - offset; /* Cantidad de caracteres que hay antes de mi a imprimir */
248                         mvwaddnstr(actual[1], 0, 0, data+offset, pos);
249                         if (pos > 0)
250                                 offset += pos;
251                         else
252                                 offset -= pos;
253                         wattron(actual[1], A_BOLD);
254                         waddnstr(actual[1], data+offset, ancho_registro+((pos<0)?pos:0));
255                         wattroff(actual[1], A_BOLD);
256                         offset += ancho_registro+((pos<0)?pos:0);
257                         waddnstr(actual[1], data+offset, size-offset);
258                 }
259
260                 wrefresh(actual[1]);
261                 wrefresh(padre);
262         }
263         if (data) free(data);
264
265         emufs_destruir(fp);
266         delwin(actual[0]);
267         wrefresh(padre);
268         curs_set(1);
269 }
270
271 void ver_registros(WINDOW *padre, int w, int h, int cual)
272 {
273         /* Ventanas donde mostrar las cosas */
274         char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
275         WINDOW *actual[2], *dlg;
276         EMUFS_REG_SIZE size;
277         int scroll, actual_ancho;
278         int max_scroll, c, offset_alto;
279         /* Indices que hay validos en IDX */
280         EMUFS_REG_ID *indices, indices_total, indices_actual;
281         char *data; /* Registros a mostrar en pantalla */
282         char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
283         EMUFS *fp;
284         int pos_actual, ancho_registro, offset, pos;
285
286         if (cual == 0)
287                 fp = emufs_abrir("articulos");
288         else
289                 fp = emufs_abrir("facturas");
290
291         wattron(padre, COLOR_PAIR(COLOR_BLUE));
292         mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
293         wattroff(padre, COLOR_PAIR(COLOR_BLUE));
294         switch (fp->tipo) {
295                 case T1:
296                         waddstr(padre, "Registro variable con bloque parametrizado.");
297                         procesar = procesar_registro_tipo1;
298                 break;
299                 case T2:
300                         waddstr(padre, "Registro variable con sin bloques.");
301                         procesar = procesar_registro_tipo2;
302                 break;
303                 case T3:
304                         procesar = procesar_registro_tipo3;
305                         waddstr(padre, "Registro fijo con bloque parametrizado.");
306         }
307
308         indices = emufs_idx_get(fp, &indices_total);
309
310         indices_actual = 0;
311         if (indices) {
312                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
313                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
314         }
315
316
317         offset_alto = 8;
318         max_scroll = size / (w-4) - (h-offset_alto-2);
319         if (max_scroll < 0) max_scroll = 0;
320
321         actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
322         actual_ancho = w-4;
323         actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
324         box(actual[0], 0, 0);
325
326         curs_set(0);
327
328         mostrar_info(padre, h, offset_alto, 1);
329
330         if (data) {
331                 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
332                 wattron(actual[1], A_BOLD);
333                 waddnstr(actual[1], data+pos_actual, ancho_registro);
334                 wattroff(actual[1], A_BOLD);
335                 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
336         }
337         
338         wrefresh(actual[1]);
339         wrefresh(actual[0]);
340         wrefresh(padre);
341         scroll = 0;
342         while ((c=getch()) != 13) {
343                 switch (c) {
344                         case 'b':
345                         case 'B':
346                                 dlg = newwin(4, 50, h/2-2, w/2-25);
347                                 box(dlg, 0, 0);
348                                 indices_actual = preguntar_id(dlg, fp);
349                                 if (indices_actual < 0) indices_actual = 0;
350                                 if (indices_actual >= indices_total) indices_actual = indices_total - 1;
351                                 werase(dlg);
352                                 wrefresh(dlg);
353                                 delwin(dlg);
354                                 wrefresh(padre);
355                                 curs_set(0);
356                         break;
357                         case 'e':
358                         case 'E':
359                                 if (indices_actual != EMUFS_NOT_FOUND)
360                                         fp->borrar_registro(fp, indices[indices_actual]);
361         
362                                 free(indices);
363                                 indices = emufs_idx_get(fp, &indices_total);
364                                 if (indices_actual >= indices_total) {
365                                         indices_actual = indices_total - 1;
366                                 }
367                                 
368                                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
369                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
370                         break;
371                         case 'g':
372                         case 'G':
373                                 if (cual == 0)
374                                         art_agregar(NULL);
375                                 else
376                                         fact_agregar(NULL);
377                                 free(data);
378                                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
379                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
380         
381                                 free(indices);
382                                 indices = emufs_idx_get(fp, &indices_total);
383
384                                 /* Tengo que re-pintar algunas cosas */
385                                 mostrar_info(padre, h, offset_alto, 1);
386                                 box(actual[0], 0, 0);
387                                 wrefresh(actual[0]);
388                         break;                  
389                         case 'M':
390                         case 'm': /* Quiero editar !!! */
391                                 sprintf(codigo, "%lu", indices[indices_actual]);
392                                 if (cual == 0)
393                                         art_modificar(codigo);  
394                                 else
395                                         fact_modificar(codigo);
396                                 /* Vuelvo a cargar el articulo actual */
397                                 
398                                 free(data);
399                                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
400                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
401
402                                 /* Tengo que re-pintar algunas cosas */
403                                 mostrar_info(padre, h, offset_alto, 1);
404                                 box(actual[0], 0, 0);
405                                 wrefresh(actual[0]);
406                         break;
407                         case 'a': /* Scroll */
408                                 scroll--;
409                                 if (scroll < 0) scroll = 0;
410                         break;
411                         case 'z': /* Scroll */
412                                 scroll++;
413                                 if (scroll > max_scroll) scroll = max_scroll;
414                         break;
415                         case 'l':
416                                 if (indices_actual < indices_total) {
417                                         indices_actual++;
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);
422                                 }
423                         break;
424                         case 'k':
425                                 if (indices_actual != EMUFS_NOT_FOUND) {
426                                         indices_actual--;
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);
431                                 }
432
433                 }
434                 /* Borro las ventanas */
435                 werase(actual[1]);
436
437                 /* Imprimo los registros */
438                 if (data) {
439                         offset = scroll*actual_ancho;
440                         pos = pos_actual - offset;
441                         mvwaddnstr(actual[1], 0, 0, data+offset, pos);
442                         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);
448                 }
449
450                 wrefresh(actual[1]);
451                 wrefresh(padre);
452         }
453         if (indices) free(indices);
454         if (data) free(data);
455
456         emufs_destruir(fp);
457         delwin(actual[0]);
458         wrefresh(padre);
459         curs_set(1);
460 }
461
462 int preguntar_id(WINDOW *win, EMUFS *fp)
463 {
464         int n=-1;
465         t_Form *form = form_crear(win);
466         form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
467
468         do {
469                 form_set_valor(form, "ID a buscar", "");
470                 form_ejecutar(form, 1,1);
471
472                 n = form_obtener_valor_int(form, "ID a buscar");
473         } while (n<0);
474
475         form_destruir(form);
476         return n;
477 }
478
479 char *procesar_registro_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
480 {
481         char *tmp, *salida, *tmp1, pos_actualizada, ant;
482         int cant_header, i=0, j, tam_data;
483         if (ptr == NULL) return NULL;
484
485         PERR("Empieza el baile");
486
487         /* Calculo cuantos headers de registros va a haber en el archivo */
488         cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
489         if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
490         tam_data = emu->tam_reg;
491         if (tam_data > (*size -  sizeof(EMUFS_REG_ID)))
492                 tam_data = *size - sizeof(EMUFS_REG_ID);
493
494         (*size) = (*size) - cant_header*sizeof(EMUFS_REG_ID)+cant_header*10+1;
495         tmp1 = salida = (char *)malloc(*size);
496         memset(salida, '.', *size);
497         if (salida == NULL) {
498                 PERR("Error de malloc en salida");
499                 return NULL;
500         }
501         tmp = ptr;
502         pos_actualizada = 0;
503         (*ancho) = 0;
504         while (i<cant_header) {
505                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
506                  * en el cambio de formato
507                  */
508                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
509                         (*pos_actual) = tmp1-salida;
510                         pos_actualizada = 1;
511                 }
512                 /* Pongo el ID del registro */
513                 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
514                 tmp1 += 10;
515                 tmp += sizeof(EMUFS_REG_ID);
516
517                 if (pos_actualizada == 1) {
518                         (*ancho) = 10;
519                 }
520                 j = 0;
521                 while (j < (tam_data)) {
522                         if (*tmp == '\0') {
523                                 if (ant == (*tmp)){
524                                         (*tmp1) = '.';
525                                 } else {
526                                         (*tmp1) = '|';
527                                 }
528                         } else {
529                                 copy_char(tmp1, tmp);
530                         }
531                         ant = (*tmp);
532                         tmp++;
533                         tmp1++;
534                         if (pos_actualizada == 1)
535                                 (*ancho)++;
536                         j++;
537                 }
538                 if (pos_actualizada == 1)
539                         pos_actualizada = 2;
540                 i++;
541         }
542         free(ptr);
543
544         PERR("Termine");
545         salida[*size-1] = '\0';
546
547         return salida;
548 }
549
550 char *procesar_registro_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
551 {
552         char *tmp, *salida, *tmp1, pos_actualizada, ant;
553         EMUFS_REG_SIZE offset, curr_size, size_acumulado, old_size;
554         int cant_header, i=0, j, tam_data;
555         if (ptr == NULL) return NULL;
556
557         PERR("Empieza el baile");
558         cant_header = 0;
559         offset = 0;
560         do {
561                 /* Me salto el ID, que no me interesa saber su valor */
562                 offset += sizeof(EMUFS_REG_ID);
563                 /* Copio el tamaño del registro de la cabecera. */
564                 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
565                 offset += sizeof(EMUFS_REG_SIZE);
566
567                 /* Desplazo el offset */
568 #ifdef DEBUG
569                 fprintf(stderr, "Tam = %lu\n", curr_size);
570 #endif
571                 if (curr_size == 0) {
572                         /* Si el tamaño de registro es 0, quiere decir que llegue a la
573                          * parte que esta vacia */
574                         break;
575                 } else {
576                         cant_header++;
577                         offset += curr_size;
578                 }
579         } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
580
581         if (cant_header == 0) {
582                 PERR("NO TENGO ITEMS");
583                 memset(ptr, '.', *size);
584                 (*ancho) = (*size);
585                 (*pos_actual) = 0;
586                 return ptr;
587         }
588
589         /* El tamaño del nuevo array lo calculo asi :
590          *   
591          */
592         old_size = (*size);
593         (*size) = (*size) - sizeof(EMUFS_REG_ID)*cant_header - sizeof(EMUFS_REG_SIZE)*cant_header + cant_header*20+1;
594         tmp1 = salida = (char *)malloc(*size);
595         if (salida == NULL) {
596                 PERR("Error de malloc en salida");
597                 return NULL;
598         }
599         memset(salida, '.', *size);
600         tmp = ptr;
601         pos_actualizada = 0;
602         (*ancho) = 0;
603         i = 0;
604         size_acumulado = 0;
605         while (i<cant_header) {
606                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
607                  * en el cambio de formato
608                  */
609                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
610                         (*pos_actual) = tmp1-salida;
611                         pos_actualizada = 1;
612                 }
613                 /* Pongo el ID del registro */
614                 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
615                 tmp1 += 10;
616                 tmp += sizeof(EMUFS_REG_ID);
617                 /* Cantidad de espacio que ocupa la data */
618                 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
619                 tam_data = *((EMUFS_REG_SIZE *)tmp);
620                 if ((size_acumulado+tam_data) > old_size) {
621                         tam_data = old_size - size_acumulado;
622                 }
623                 tmp1 += 10;
624                 tmp += sizeof(EMUFS_REG_SIZE);
625
626                 if (pos_actualizada == 1) {
627                         (*ancho) = 20;
628                 }
629                 j = 0;
630                 PERR("Voy por la data");
631                 ant = -1;
632                 while (j < tam_data) {
633                         if (*tmp == '\0') {
634                                 if (ant == (*tmp)){
635                                         (*tmp1) = '.';
636                                 } else {
637                                         (*tmp1) = '|';
638                                 }
639                         } else {
640                                 copy_char(tmp1, tmp);
641                         }
642                         ant = (*tmp);
643                         tmp++;
644                         tmp1++;
645                         if (pos_actualizada == 1)
646                                 (*ancho)++;
647                         j++;
648                 }
649                 size_acumulado += tam_data;
650                 if (pos_actualizada == 1)
651                         pos_actualizada = 2;
652                 i++;
653         }
654         free(ptr);
655
656         PERR("Termine");
657         salida[*size-1] = '\0';
658
659         return salida;
660 }
661
662 char *procesar_registro_tipo2(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
663 {
664         char *salida, *tmp;
665         char *in;
666         int i;
667         EMUFS_REG_SIZE tam_data;
668         if (ptr == NULL) return NULL;
669
670         (*size) = *size - sizeof(EMUFS_REG_SIZE) - sizeof(EMUFS_REG_ID) + 21;
671         (*ancho) = *size-101;
672         salida = (char *)malloc(*size);
673         memset(salida, '.', *size);
674
675         PERR("Voy por el espacio antes");
676         fprintf(stderr, "Pos Inicial %d\n", *pos_actual);
677         for(i=0; i < *pos_actual; i++) {
678                 /* Los datos que tengo por ahora los pongo enmascarados! */
679                 copy_char(&salida[i], in);
680                 in++;
681         }
682         tmp = salida + *pos_actual;
683         in = ptr + *pos_actual;
684
685         PERR("Voy por el header");
686         /* ID de registro */
687         sprintf(tmp, "(%08lu)", *((EMUFS_REG_ID *)in));
688         tmp += 10;
689         in += sizeof(EMUFS_REG_ID);
690         /* Tamaño de registro */
691         sprintf(tmp, "{%08lu}", *((EMUFS_REG_SIZE *)in));
692         tam_data = *((EMUFS_REG_SIZE *)in);
693         tmp += 10;
694         in += sizeof(EMUFS_REG_SIZE);
695         PERR("Voy por la data");
696         i = 0;
697         while (i < tam_data) {
698                 copy_char(tmp, in);
699                 tmp++;
700                 in++;
701                 i++;
702         }
703         PERR("Voy por el espacio despues");
704
705         free(ptr);
706         PERR("LISTO");
707         salida[*size-1] = '\0';
708         return salida;
709 }
710