]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/registros.c
4877b884a1c77c1be576a3a331bb9b53583fe471
[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, offset, pos;
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-4) - (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                         break;
105                         case 'l':
106                                 if (ant_indice < total_indice) {
107                                         ant_indice++;
108                                         if (ant_indice >= total_indice) ant_indice = total_indice-1;
109                                         if (data) free(data);
110                                         data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
111                                         data = procesar_registro_articulo(fp, data, &size, &pos_actual);
112                                 }
113                         break;
114                         case 'k':
115                                 if (ant_indice != EMUFS_NOT_FOUND) {
116                                         ant_indice--;
117                                         if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0;
118                                         if (data) free(data);
119                                         data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
120                                         data = procesar_registro_articulo(fp, data, &size, &pos_actual);
121                                 }
122
123                 }
124                 /* Borro las ventanas */
125                 werase(actual[1]);
126
127                 /* Imprimo los registros */
128                 if (data) {
129                         offset = scroll*actual_ancho;
130                         pos = pos_actual - offset;
131                         mvwaddnstr(actual[1], 0, 0, data+offset, pos);
132                         offset += pos;
133                         wattron(actual[1], A_BOLD);
134                         waddnstr(actual[1], data+offset, ancho_registro);
135                         wattroff(actual[1], A_BOLD);
136                         offset += ancho_registro;
137                         waddnstr(actual[1], data+offset, size-offset);
138                 }
139
140                 wrefresh(actual[1]);
141                 wrefresh(padre);
142         }
143         delwin(actual[1]);
144         delwin(actual[0]);
145         wrefresh(padre);
146         curs_set(1);
147 }
148
149 static char *procesar_registro_articulo(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual)
150 {
151         char *tmp, *salida, *tmp1, pos_actualizada;
152         int cant_header, i=0, j;
153         if (ptr == NULL) return NULL;
154
155         /* Calculo cuantos headers de registros va a haber en el archivo */
156         cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
157         /* El tamaño del nuevo array lo calculo asi :
158          *   
159          *   tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
160          *               + 10*(cant_headers+cant_registros) +1
161          *
162          *   En tipo3, la cantidad de headers y cant de registros es la misma
163          *   El 10 es por : (XXXXXXXX)
164          *   +1 == Por el \0
165          */
166         salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
167         tmp = ptr;
168         tmp1 = salida;
169         pos_actualizada = 0;
170         while (i<cant_header) {
171                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
172                         (*pos_actual) = tmp1-salida;
173                         pos_actualizada = 1;
174                 }
175                 /* Pongo el ID del registro */
176                 sprintf(tmp1, "(%08d)", *((unsigned int *)tmp));
177                 tmp1 += 10;
178                 tmp += sizeof(unsigned int);
179                 /* Pongo el campo numero del registro */
180                 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
181                 tmp1 += 10;
182                 tmp += sizeof(unsigned int);
183                 j = 0;
184                 while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
185                         if (*tmp == '\0') {
186                                 (*tmp1) = '|';
187                         } else {
188                                 (*tmp1) = (*tmp);
189                         }
190                         tmp++;
191                         tmp1++;
192                         j++;
193                 }
194                 i++;
195         }
196         free(ptr);
197         (*tmp1) = '\0';
198         (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
199         return salida;
200 }
201