]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/registros.c
1d244ee8b6a0068810d4cb88124f1740acf984a7
[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, "Acciones: ");
55         waddstr(padre, "A");
56         wattron(padre, A_BOLD);
57         waddch(padre, 'g');
58         wattroff(padre, A_BOLD);
59         waddstr(padre, "regar ");
60         wattron(padre, A_BOLD);
61         waddstr(padre, "M");
62         wattroff(padre, A_BOLD);
63         waddstr(padre, "ofidicar ");
64         wattron(padre, A_BOLD);
65         waddstr(padre, "E");
66         wattroff(padre, A_BOLD);
67         waddstr(padre, "liminar ");
68         
69         /* Info de leyenda */
70         wattron(padre, A_BOLD);
71         wattron(padre, COLOR_PAIR(COLOR_RED));
72         mvwaddstr(padre, h-5, 35, "Leyenda :");
73         wattroff(padre, A_BOLD);
74         wattroff(padre, COLOR_PAIR(COLOR_RED));
75         mvwaddstr(padre, h-4, 38, "| = Separador de campo");
76         mvwaddstr(padre, h-3, 38, "[XXX] = Campo numerico");
77         mvwaddstr(padre, h-2, 38, "(XXX) = ID de registro");
78         
79         mvwaddnstr(actual[1], 0, 0, data, pos_actual);
80         wattron(actual[1], A_BOLD);
81         waddnstr(actual[1], data+pos_actual, ancho_registro);
82         wattroff(actual[1], A_BOLD);
83         waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
84         
85         wrefresh(actual[1]);
86         wrefresh(actual[0]);
87         wrefresh(padre);
88         scroll = 0;
89         while ((c=getch()) != 13) {
90                 switch (c) {
91                         case 'e':
92                         case 'E':
93                                 fp->borrar_registro(fp, emufs_idx_get_id_at(fp, ant_indice));
94                                 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
95                                 data = procesar_registro_articulo(fp, data, &size, &pos_actual);
96         
97                                 total_indice = emufs_idx_get_count(fp);
98                                 if (ant_indice >= total_indice) {
99                                         ant_indice = total_indice - 1;
100                                 }
101                         break;
102                         case 'g':
103                         case 'G':
104                                 art_agregar(NULL);
105                                 free(data);
106                                 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
107                                 data = procesar_registro_articulo(fp, data, &size, &pos_actual);
108         
109                                 total_indice = emufs_idx_get_count(fp);
110
111                                 /* Tengo que re-pintar algunas cosas */
112                                 wattron(padre, A_BOLD);
113                                 wattron(padre, COLOR_PAIR(COLOR_RED));
114                                 mvwaddstr(padre, h-5, 5, "Teclas :");
115                                 mvwaddstr(padre, h-5, 35, "Leyenda :");
116                                 wattroff(padre, A_BOLD);
117                                 wattroff(padre, COLOR_PAIR(COLOR_RED));
118                                 mvwaddstr(padre, h-4, 38, "| = Separador de campo");
119                                 mvwaddstr(padre, h-4, 8, "Salir = ENTER");
120                                 box(actual[0], 0, 0);
121                                 wrefresh(actual[0]);
122                         break;                  
123                         case 'M':
124                         case 'm': /* Quiero editar !!! */
125                                 sprintf(codigo, "%lu", emufs_idx_get_id_at(fp, ant_indice));
126                                 art_modificar(codigo);  
127                                 /* Vuelvo a cargar el articulo actual */
128                                 
129                                 free(data);
130                                 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
131                                 data = procesar_registro_articulo(fp, data, &size, &pos_actual);
132
133                                 /* Tengo que re-pintar algunas cosas */
134                                 wattron(padre, A_BOLD);
135                                 wattron(padre, COLOR_PAIR(COLOR_RED));
136                                 mvwaddstr(padre, h-5, 5, "Teclas :");
137                                 mvwaddstr(padre, h-5, 35, "Leyenda :");
138                                 wattroff(padre, A_BOLD);
139                                 wattroff(padre, COLOR_PAIR(COLOR_RED));
140                                 mvwaddstr(padre, h-4, 38, "| = Separador de campo");
141                                 mvwaddstr(padre, h-4, 8, "Salir = ENTER");
142                                 box(actual[0], 0, 0);
143                                 wrefresh(actual[0]);
144                         break;
145                         case 'a': /* Scroll */
146                                 scroll--;
147                                 if (scroll < 0) scroll = 0;
148                         break;
149                         case 'z': /* Scroll */
150                                 scroll++;
151                                 if (scroll > max_scroll) scroll = max_scroll;
152                         break;
153                         case 'l':
154                                 if (ant_indice < total_indice) {
155                                         ant_indice++;
156                                         if (ant_indice >= total_indice) ant_indice = total_indice-1;
157                                         if (data) free(data);
158                                         data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
159                                         data = procesar_registro_articulo(fp, data, &size, &pos_actual);
160                                 }
161                         break;
162                         case 'k':
163                                 if (ant_indice != EMUFS_NOT_FOUND) {
164                                         ant_indice--;
165                                         if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0;
166                                         if (data) free(data);
167                                         data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
168                                         data = procesar_registro_articulo(fp, data, &size, &pos_actual);
169                                 }
170
171                 }
172                 /* Borro las ventanas */
173                 werase(actual[1]);
174
175                 /* Imprimo los registros */
176                 if (data) {
177                         offset = scroll*actual_ancho;
178                         pos = pos_actual - offset;
179                         mvwaddnstr(actual[1], 0, 0, data+offset, pos);
180                         offset += pos;
181                         wattron(actual[1], A_BOLD);
182                         waddnstr(actual[1], data+offset, ancho_registro);
183                         wattroff(actual[1], A_BOLD);
184                         offset += ancho_registro;
185                         waddnstr(actual[1], data+offset, size-offset);
186                 }
187
188                 wrefresh(actual[1]);
189                 wrefresh(padre);
190         }
191         delwin(actual[1]);
192         delwin(actual[0]);
193         wrefresh(padre);
194         curs_set(1);
195 }
196
197 static char *procesar_registro_articulo(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual)
198 {
199         char *tmp, *salida, *tmp1, pos_actualizada;
200         int cant_header, i=0, j;
201         if (ptr == NULL) return NULL;
202
203         /* Calculo cuantos headers de registros va a haber en el archivo */
204         cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
205         /* El tamaño del nuevo array lo calculo asi :
206          *   
207          *   tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
208          *               + 10*(cant_headers+cant_registros) +1
209          *
210          *   En tipo3, la cantidad de headers y cant de registros es la misma
211          *   El 10 es por : (XXXXXXXX)
212          *   +1 == Por el \0
213          */
214         salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
215         tmp = ptr;
216         tmp1 = salida;
217         pos_actualizada = 0;
218         while (i<cant_header) {
219                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
220                         (*pos_actual) = tmp1-salida;
221                         pos_actualizada = 1;
222                 }
223                 /* Pongo el ID del registro */
224                 sprintf(tmp1, "(%08d)", *((unsigned int *)tmp));
225                 tmp1 += 10;
226                 tmp += sizeof(unsigned int);
227                 /* Pongo el campo numero del registro */
228                 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
229                 tmp1 += 10;
230                 tmp += sizeof(unsigned int);
231                 j = 0;
232                 while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
233                         if (*tmp == '\0') {
234                                 (*tmp1) = '|';
235                         } else {
236                                 (*tmp1) = (*tmp);
237                         }
238                         tmp++;
239                         tmp1++;
240                         j++;
241                 }
242                 i++;
243         }
244         free(ptr);
245         (*tmp1) = '\0';
246         (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
247         return salida;
248 }
249