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