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