]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/registros.c
ab6b5bccf20ebfd3570511061b547b0c2b83ce90
[z.facultad/75.06/emufs.git] / emufs_gui / registros.c
1
2 #include "registros.h"
3 #include "idx.h"
4 #include "articulos.h"
5
6 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
7 static char *procesar_registro_articulo(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual);
8
9 #define ACT 0
10 #define ANT 1
11 #define SIG 2
12
13 void ver_registros(WINDOW *padre, int w, int h)
14 {
15         /* Ventanas donde mostrar las cosas */
16         WINDOW *actual[2];
17         EMUFS_REG_SIZE size;
18         int scroll, actual_ancho;
19         int max_scroll, c;
20         EMUFS_REG_ID ant_indice, total_indice; /* Indice de registro que tengo en ANT */
21         char *data; /* Registros a mostrar en pantalla */
22         char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
23         EMUFS *fp;
24         int pos_actual, ancho_registro;
25         fp = emufs_abrir("articulos");
26
27         total_indice = emufs_idx_get_count(fp);
28
29         ant_indice = 1;
30         data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
31         data = procesar_registro_articulo(fp, data, &size, &pos_actual);
32
33         ancho_registro = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
34
35         max_scroll = size / (w/3-2) - (h-8);
36         if (max_scroll < 0) max_scroll = 0;
37
38         actual[0] = derwin(padre, h-6, w-2, 1, 1);
39         actual_ancho = w-4;
40         actual[1] = derwin(actual[0], h-8, w-4, 1, 1);
41         box(actual[0], 0, 0);
42
43         curs_set(0);
44
45         /* Info de teclas */
46         wattron(padre, A_BOLD);
47         wattron(padre, COLOR_PAIR(COLOR_RED));
48         mvwaddstr(padre, h-5, 5, "Teclas :");
49         wattroff(padre, A_BOLD);
50         wattroff(padre, COLOR_PAIR(COLOR_RED));
51         mvwaddstr(padre, h-4, 8, "Salir = ENTER");
52         mvwaddstr(padre, h-3, 8, "Scroll = A/Z");
53         mvwaddstr(padre, h-2, 8, "Seleccionar registros = K/L");
54         mvwaddstr(padre, h-1, 8, "Editar Actual = e");
55         
56         /* Info de leyenda */
57         wattron(padre, A_BOLD);
58         wattron(padre, COLOR_PAIR(COLOR_RED));
59         mvwaddstr(padre, h-5, 35, "Leyenda :");
60         wattroff(padre, A_BOLD);
61         wattroff(padre, COLOR_PAIR(COLOR_RED));
62         mvwaddstr(padre, h-4, 38, "| = Separador de campo");
63         mvwaddstr(padre, h-3, 38, "[XXX] = Campo numerico");
64         mvwaddstr(padre, h-2, 38, "(XXX) = ID de registro");
65         
66         mvwaddnstr(actual[1], 0, 0, data, pos_actual);
67         wattron(actual[1], A_BOLD);
68         waddnstr(actual[1], data+pos_actual, ancho_registro);
69         wattroff(actual[1], A_BOLD);
70         waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
71         
72         wrefresh(actual[1]);
73         wrefresh(actual[0]);
74         wrefresh(padre);
75         scroll = 0;
76         while ((c=getch()) != 13) {
77                 switch (c) {
78                         case 'e': /* Quiero editar !!! */
79                                 sprintf(codigo, "%lu", emufs_idx_get_id_at(fp, ant_indice));
80                                 art_modificar(codigo);  
81                                 /* Vuelvo a cargar el articulo actual */
82                                 
83                                 free(data);
84                                 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
85                                 data = procesar_registro_articulo(fp, data, &size, &pos_actual);
86
87                                 /* Tengo que re-pintar algunas cosas */
88                                 wattron(padre, A_BOLD);
89                                 wattron(padre, COLOR_PAIR(COLOR_RED));
90                                 mvwaddstr(padre, h-5, 5, "Teclas :");
91                                 mvwaddstr(padre, h-5, 35, "Leyenda :");
92                                 wattroff(padre, A_BOLD);
93                                 wattroff(padre, COLOR_PAIR(COLOR_RED));
94                                 box(actual[0], 0, 0);
95                                 wrefresh(actual[0]);
96                         break;
97                         case 'a': /* Scroll */
98                                 scroll--;
99                                 if (scroll < 0) scroll = 0;
100                         break;
101                         case 'z': /* Scroll */
102                                 scroll++;
103                                 if (scroll > max_scroll) scroll = max_scroll;
104                         case 'l':
105                                 if (ant_indice < total_indice) {
106                                         ant_indice++;
107                                         if (ant_indice >= total_indice) ant_indice = total_indice-1;
108                                         if (data) free(data);
109                                         data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
110                                         data = procesar_registro_articulo(fp, data, &size, &pos_actual);
111                                 }
112                         break;
113                         case 'k':
114                                 if (ant_indice != EMUFS_NOT_FOUND) {
115                                         ant_indice--;
116                                         if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0;
117                                         if (data) free(data);
118                                         data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
119                                         data = procesar_registro_articulo(fp, data, &size, &pos_actual);
120                                 }
121
122                 }
123                 /* Borro las ventanas */
124                 werase(actual[1]);
125
126                 /* Imprimo los registros */
127                 if (data) {
128                         mvwaddnstr(actual[1], 0, 0, data, pos_actual);
129                         wattron(actual[1], A_BOLD);
130                         waddnstr(actual[1], data+pos_actual, ancho_registro);
131                         wattroff(actual[1], A_BOLD);
132                         waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
133                 }
134
135                 wrefresh(actual[1]);
136                 wrefresh(padre);
137         }
138         delwin(actual[1]);
139         delwin(actual[0]);
140         wrefresh(padre);
141         curs_set(1);
142 }
143
144 static char *procesar_registro_articulo(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual)
145 {
146         char *tmp, *salida, *tmp1, pos_actualizada;
147         int cant_header, i=0, j;
148         if (ptr == NULL) return NULL;
149
150         /* Calculo cuantos headers de registros va a haber en el archivo */
151         cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
152         /* El tamaño del nuevo array lo calculo asi :
153          *   
154          *   tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
155          *               + 10*(cant_headers+cant_registros) +1
156          *
157          *   En tipo3, la cantidad de headers y cant de registros es la misma
158          *   El 10 es por : (XXXXXXXX)
159          *   +1 == Por el \0
160          */
161         salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
162         tmp = ptr;
163         tmp1 = salida;
164         pos_actualizada = 0;
165         while (i<cant_header) {
166                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
167                         (*pos_actual) = tmp1-salida;
168                         pos_actualizada = 1;
169                 }
170                 /* Pongo el ID del registro */
171                 sprintf(tmp1, "(%08d)", *((unsigned int *)tmp));
172                 tmp1 += 10;
173                 tmp += sizeof(unsigned int);
174                 /* Pongo el campo numero del registro */
175                 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
176                 tmp1 += 10;
177                 tmp += sizeof(unsigned int);
178                 j = 0;
179                 while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
180                         if (*tmp == '\0') {
181                                 (*tmp1) = '|';
182                         } else {
183                                 (*tmp1) = (*tmp);
184                         }
185                         tmp++;
186                         tmp1++;
187                         j++;
188                 }
189                 i++;
190         }
191         free(ptr);
192         (*tmp1) = '\0';
193         (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
194         return salida;
195 }
196