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