]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/registros.c
09cd7f909f612e270ef72cde1a514f72e6fa4066
[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_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
8 static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
9
10 #define ACT 0
11 #define ANT 1
12 #define SIG 2
13
14 void ver_registros(WINDOW *padre, int w, int h)
15 {
16         /* Ventanas donde mostrar las cosas */
17         char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
18         WINDOW *actual[2];
19         EMUFS_REG_SIZE size;
20         int scroll, actual_ancho;
21         int max_scroll, c;
22         EMUFS_REG_ID ant_indice, total_indice; /* Indice de registro que tengo en ANT */
23         char *data; /* Registros a mostrar en pantalla */
24         char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
25         EMUFS *fp;
26         int pos_actual, ancho_registro, offset, pos;
27         fp = emufs_abrir("articulos");
28         switch (fp->tipo) {
29                 case T1:
30                 case T2:
31                         procesar = procesar_registro_articulo_tipo1;
32                 break;
33                 case T3:
34                         procesar = procesar_registro_articulo_tipo3;
35         }
36
37         total_indice = emufs_idx_get_count(fp);
38
39         ant_indice = 1;
40         data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
41         data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
42
43
44         max_scroll = size / (w-4) - (h-8);
45         if (max_scroll < 0) max_scroll = 0;
46
47         actual[0] = derwin(padre, h-6, w-2, 1, 1);
48         actual_ancho = w-4;
49         actual[1] = derwin(actual[0], h-8, w-4, 1, 1);
50         box(actual[0], 0, 0);
51
52         curs_set(0);
53
54         /* Info de teclas */
55         wattron(padre, A_BOLD);
56         wattron(padre, COLOR_PAIR(COLOR_RED));
57         mvwaddstr(padre, h-5, 5, "Teclas :");
58         wattroff(padre, A_BOLD);
59         wattroff(padre, COLOR_PAIR(COLOR_RED));
60         mvwaddstr(padre, h-4, 8, "Salir = ENTER");
61         mvwaddstr(padre, h-3, 8, "Scroll = A/Z");
62         mvwaddstr(padre, h-2, 8, "Seleccionar registros = K/L");
63         mvwaddstr(padre, h-1, 8, "Acciones: ");
64         waddstr(padre, "A");
65         wattron(padre, A_BOLD);
66         waddch(padre, 'g');
67         wattroff(padre, A_BOLD);
68         waddstr(padre, "regar ");
69         wattron(padre, A_BOLD);
70         waddstr(padre, "M");
71         wattroff(padre, A_BOLD);
72         waddstr(padre, "ofidicar ");
73         wattron(padre, A_BOLD);
74         waddstr(padre, "E");
75         wattroff(padre, A_BOLD);
76         waddstr(padre, "liminar ");
77         
78         /* Info de leyenda */
79         wattron(padre, A_BOLD);
80         wattron(padre, COLOR_PAIR(COLOR_RED));
81         mvwaddstr(padre, h-5, 35, "Leyenda :");
82         wattroff(padre, A_BOLD);
83         wattroff(padre, COLOR_PAIR(COLOR_RED));
84         mvwaddstr(padre, h-4, 38, "| = Separador de campo   . = Libre");
85         mvwaddstr(padre, h-3, 38, "[XXX] = Campo numerico");
86         mvwaddstr(padre, h-2, 38, "(XXX) = ID de registro");
87         
88         mvwaddnstr(actual[1], 0, 0, data, pos_actual);
89         wattron(actual[1], A_BOLD);
90         waddnstr(actual[1], data+pos_actual, ancho_registro);
91         wattroff(actual[1], A_BOLD);
92         waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
93         
94         wrefresh(actual[1]);
95         wrefresh(actual[0]);
96         wrefresh(padre);
97         scroll = 0;
98         while ((c=getch()) != 13) {
99                 switch (c) {
100                         case 'e':
101                         case 'E':
102                                 fp->borrar_registro(fp, emufs_idx_get_id_at(fp, ant_indice));
103         
104                                 total_indice = emufs_idx_get_count(fp);
105                                 if (ant_indice >= total_indice) {
106                                         ant_indice = total_indice - 1;
107                                 }
108                                 
109                                 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
110                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
111                         break;
112                         case 'g':
113                         case 'G':
114                                 art_agregar(NULL);
115                                 free(data);
116                                 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
117                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
118         
119                                 total_indice = emufs_idx_get_count(fp);
120
121                                 /* Tengo que re-pintar algunas cosas */
122                                 wattron(padre, A_BOLD);
123                                 wattron(padre, COLOR_PAIR(COLOR_RED));
124                                 mvwaddstr(padre, h-5, 5, "Teclas :");
125                                 mvwaddstr(padre, h-5, 35, "Leyenda :");
126                                 wattroff(padre, A_BOLD);
127                                 wattroff(padre, COLOR_PAIR(COLOR_RED));
128                                 mvwaddstr(padre, h-4, 38, "| = Separador de campo   . = Libre");
129                                 mvwaddstr(padre, h-4, 8, "Salir = ENTER");
130                                 box(actual[0], 0, 0);
131                                 wrefresh(actual[0]);
132                         break;                  
133                         case 'M':
134                         case 'm': /* Quiero editar !!! */
135                                 sprintf(codigo, "%lu", emufs_idx_get_id_at(fp, ant_indice));
136                                 art_modificar(codigo);  
137                                 /* Vuelvo a cargar el articulo actual */
138                                 
139                                 free(data);
140                                 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
141                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
142
143                                 /* Tengo que re-pintar algunas cosas */
144                                 wattron(padre, A_BOLD);
145                                 wattron(padre, COLOR_PAIR(COLOR_RED));
146                                 mvwaddstr(padre, h-5, 5, "Teclas :");
147                                 mvwaddstr(padre, h-5, 35, "Leyenda :");
148                                 wattroff(padre, A_BOLD);
149                                 wattroff(padre, COLOR_PAIR(COLOR_RED));
150                                 mvwaddstr(padre, h-4, 38, "| = Separador de campo   . = Libre");
151                                 mvwaddstr(padre, h-4, 8, "Salir = ENTER");
152                                 box(actual[0], 0, 0);
153                                 wrefresh(actual[0]);
154                         break;
155                         case 'a': /* Scroll */
156                                 scroll--;
157                                 if (scroll < 0) scroll = 0;
158                         break;
159                         case 'z': /* Scroll */
160                                 scroll++;
161                                 if (scroll > max_scroll) scroll = max_scroll;
162                         break;
163                         case 'l':
164                                 if (ant_indice < total_indice) {
165                                         ant_indice++;
166                                         if (ant_indice >= total_indice) ant_indice = total_indice-1;
167                                         if (data) free(data);
168                                         data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
169                                         data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
170                                 }
171                         break;
172                         case 'k':
173                                 if (ant_indice != EMUFS_NOT_FOUND) {
174                                         ant_indice--;
175                                         if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0;
176                                         if (data) free(data);
177                                         data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
178                                         data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
179                                 }
180
181                 }
182                 /* Borro las ventanas */
183                 werase(actual[1]);
184
185                 /* Imprimo los registros */
186                 if (data) {
187                         offset = scroll*actual_ancho;
188                         pos = pos_actual - offset;
189                         mvwaddnstr(actual[1], 0, 0, data+offset, pos);
190                         offset += pos;
191                         wattron(actual[1], A_BOLD);
192                         waddnstr(actual[1], data+offset, ancho_registro);
193                         wattroff(actual[1], A_BOLD);
194                         offset += ancho_registro;
195                         waddnstr(actual[1], data+offset, size-offset);
196                 }
197
198                 wrefresh(actual[1]);
199                 wrefresh(padre);
200         }
201         delwin(actual[1]);
202         delwin(actual[0]);
203         wrefresh(padre);
204         curs_set(1);
205 }
206
207 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
208 {
209         char *tmp, *salida, *tmp1, pos_actualizada, ant;
210         int cant_header, i=0, j;
211         if (ptr == NULL) return NULL;
212
213         /* Calculo cuantos headers de registros va a haber en el archivo */
214         cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
215         if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
216
217         /* El tamaño del nuevo array lo calculo asi :
218          *   
219          *   tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
220          *               + 10*(cant_headers+cant_registros) +1
221          *
222          *   En tipo3, la cantidad de headers y cant de registros es la misma
223          *   El 10 es por : (XXXXXXXX)
224          *   +1 == Por el \0
225          */
226         salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
227         tmp = ptr;
228         tmp1 = salida;
229         pos_actualizada = 0;
230         while (i<cant_header) {
231                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
232                  * en el cambio de formato
233                  */
234                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
235                         (*pos_actual) = tmp1-salida;
236                         pos_actualizada = 1;
237                 }
238                 /* Pongo el ID del registro */
239                 sprintf(tmp1, "(%08d)", *((unsigned int *)tmp));
240                 tmp1 += 10;
241                 tmp += sizeof(unsigned int);
242                 /* Pongo el campo numero del registro */
243                 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
244                 tmp1 += 10;
245                 tmp += sizeof(unsigned int);
246                 j = 0;
247                 while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
248                         if (*tmp == '\0') {
249                                 if (ant == (*tmp))
250                                         (*tmp1) = '.';
251                                 else
252                                         (*tmp1) = '|';
253                         } else {
254                                 (*tmp1) = (*tmp);
255                         }
256                         ant = (*tmp);
257                         tmp++;
258                         tmp1++;
259                         j++;
260                 }
261                 i++;
262         }
263         free(ptr);
264         (*tmp1) = '\0';
265         (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
266         (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+10;
267         return salida;
268 }
269
270 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
271 {
272         EMUFS_REG_SIZE offset, curr_size;
273         char *tmp, *salida, *tmp1, pos_actualizada, ant;
274         int cant_header, i=0, j;
275         if (ptr == NULL) return NULL;
276         
277         /* Cuento la cantidad de registros en este bloque */
278         cant_header = 0;
279         offset = 0;
280         do {
281                 /* Me salto el ID, que no me interesa saber su valor */
282                 offset += sizeof(EMUFS_REG_ID);
283                 /* Copio el tamaño del registro de la cabecera. */
284                 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
285                 offset += sizeof(EMUFS_REG_SIZE);
286
287                 /* Desplazo el offset */
288                 if (curr_size == 0) {
289                         /* Si el tamaño de registro es 0, quiere decir que llegue a la
290                          * parte que esta vacia */
291                         break;
292                 } else {
293                         cant_header++;
294                         offset += curr_size;
295                 }
296         } while (offset < (*size));
297
298         /* Proceso */
299         salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
300         tmp = ptr;
301         tmp1 = salida;
302         pos_actualizada = 0;
303         while (i<cant_header) {
304                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
305                  * en el cambio de formato
306                  */
307                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
308                         (*pos_actual) = tmp1-salida;
309                         pos_actualizada = 1;
310                 }
311                 /* Pongo el ID del registro */
312                 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
313                 tmp1 += 10;
314                 tmp += sizeof(EMUFS_REG_ID);
315                 /* Pongo el tamaño del registro */
316                 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
317                 curr_size = *((EMUFS_REG_SIZE *)tmp);
318                 if (pos_actualizada == 1) {
319                         (*ancho) = curr_size-sizeof(unsigned int)+30;
320                         pos_actualizada = 2;
321                 }
322                 tmp1 += 10;
323                 tmp += sizeof(EMUFS_REG_SIZE);
324                 /* Pongo el campo numero del registro */
325                 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
326                 tmp1 += 10;
327                 tmp += sizeof(unsigned int);
328                 j = sizeof(unsigned int);;
329                 while (j < curr_size) {
330                         if (*tmp == '\0') {
331                                 if (ant == (*tmp))
332                                         (*tmp1) = '.';
333                                 else
334                                         (*tmp1) = '|';
335                         } else {
336                                 (*tmp1) = (*tmp);
337                         }
338                         ant = (*tmp);
339                         tmp++;
340                         tmp1++;
341                         j++;
342                 }
343                 i++;
344         }
345         free(ptr);
346         (*tmp1) = '\0';
347         (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
348         
349         return salida;
350 }
351
352