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