]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/registros.c
* Otro bugs arreglado :-) .. se va limpiendo el codigo ...
[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+7, 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         if (indices) {
88                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
89                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
90         }
91
92
93         offset_alto = 8;
94         max_scroll = size / (w-4) - (h-offset_alto-2);
95         if (max_scroll < 0) max_scroll = 0;
96
97         actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
98         actual_ancho = w-4;
99         actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
100         box(actual[0], 0, 0);
101
102         curs_set(0);
103
104         mostrar_info(padre, h, offset_alto);
105         
106         mvwaddnstr(actual[1], 0, 0, data, pos_actual);
107         wattron(actual[1], A_BOLD);
108         waddnstr(actual[1], data+pos_actual, ancho_registro);
109         wattroff(actual[1], A_BOLD);
110         waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
111         
112         wrefresh(actual[1]);
113         wrefresh(actual[0]);
114         wrefresh(padre);
115         scroll = 0;
116         while ((c=getch()) != 13) {
117                 switch (c) {
118                         case 'b':
119                         case 'B':
120                                 dlg = newwin(4, 50, h/2-2, w/2-25);
121                                 box(dlg, 0, 0);
122                                 preguntar_id(dlg, fp);
123                                 werase(dlg);
124                                 wrefresh(dlg);
125                                 delwin(dlg);
126                                 wrefresh(padre);
127                                 curs_set(0);
128                         break;
129                         case 'e':
130                         case 'E':
131                                 if (indices_actual != EMUFS_NOT_FOUND)
132                                         fp->borrar_registro(fp, indices[indices_actual]);
133         
134                                 free(indices);
135                                 indices = emufs_idx_get(fp, &indices_total);
136                                 if (indices_actual >= indices_total) {
137                                         indices_actual = indices_total - 1;
138                                 }
139                                 
140                                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
141                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
142                         break;
143                         case 'g':
144                         case 'G':
145                                 art_agregar(NULL);
146                                 free(data);
147                                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
148                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
149         
150                                 free(indices);
151                                 indices = emufs_idx_get(fp, &indices_total);
152
153                                 /* Tengo que re-pintar algunas cosas */
154                                 mostrar_info(padre, h, offset_alto);
155                                 box(actual[0], 0, 0);
156                                 wrefresh(actual[0]);
157                         break;                  
158                         case 'M':
159                         case 'm': /* Quiero editar !!! */
160                                 sprintf(codigo, "%lu", indices[indices_actual]);
161                                 art_modificar(codigo);  
162                                 /* Vuelvo a cargar el articulo actual */
163                                 
164                                 free(data);
165                                 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
166                                 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
167
168                                 /* Tengo que re-pintar algunas cosas */
169                                 mostrar_info(padre, h, offset_alto);
170                                 box(actual[0], 0, 0);
171                                 wrefresh(actual[0]);
172                         break;
173                         case 'a': /* Scroll */
174                                 scroll--;
175                                 if (scroll < 0) scroll = 0;
176                         break;
177                         case 'z': /* Scroll */
178                                 scroll++;
179                                 if (scroll > max_scroll) scroll = max_scroll;
180                         break;
181                         case 'l':
182                                 if (indices_actual < indices_total) {
183                                         indices_actual++;
184                                         if (indices_actual >= indices_total) indices_actual = indices_total-1;
185                                         if (data) free(data);
186                                         data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
187                                         data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
188                                 }
189                         break;
190                         case 'k':
191                                 if (indices_actual != EMUFS_NOT_FOUND) {
192                                         indices_actual--;
193                                         if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
194                                         if (data) free(data);
195                                         data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
196                                         data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
197                                 }
198
199                 }
200                 /* Borro las ventanas */
201                 werase(actual[1]);
202
203                 /* Imprimo los registros */
204                 if (data) {
205                         offset = scroll*actual_ancho;
206                         pos = pos_actual - offset;
207                         mvwaddnstr(actual[1], 0, 0, data+offset, pos);
208                         offset += pos;
209                         wattron(actual[1], A_BOLD);
210                         waddnstr(actual[1], data+offset, ancho_registro);
211                         wattroff(actual[1], A_BOLD);
212                         offset += ancho_registro;
213                         waddnstr(actual[1], data+offset, size-offset);
214                 }
215
216                 wrefresh(actual[1]);
217                 wrefresh(padre);
218         }
219         if (indices) free(indices);
220         if (data) free(data);
221
222         delwin(actual[0]);
223         wrefresh(padre);
224         curs_set(1);
225 }
226
227 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
228 {
229         char *tmp, *salida, *tmp1, pos_actualizada, ant;
230         int cant_header, i=0, j, tam_data;
231         if (ptr == NULL) return NULL;
232
233         /* Calculo cuantos headers de registros va a haber en el archivo */
234         if (emu->tam_bloque > emu->tam_reg) {
235                 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
236                 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
237                 tam_data = sizeof(t_Articulo)-sizeof(unsigned int);
238         } else {
239                 cant_header = 1;
240                 tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
241         }
242
243         /* El tamaño del nuevo array lo calculo asi :
244          *   
245          *   tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
246          *               + 10*(cant_headers+cant_registros) +1
247          *
248          *   En tipo3, la cantidad de headers y cant de registros es la misma
249          *   El 10 es por : (XXXXXXXX)
250          *   +1 == Por el \0
251          */
252         salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
253         if (salida == NULL) {
254                 fprintf(stderr, "Error de malloc en salida\n");
255                 return NULL;
256         }
257         tmp = ptr;
258         tmp1 = salida;
259         pos_actualizada = 0;
260         while (i<cant_header) {
261                 fprintf(stderr, "voy a hacer el %d de %d\n", i, cant_header);
262                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
263                  * en el cambio de formato
264                  */
265                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
266                         (*pos_actual) = tmp1-salida;
267                         pos_actualizada = 1;
268                 }
269                 /* Pongo el ID del registro */
270                 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
271                 fprintf(stderr, "ID=%lu\n",*((EMUFS_REG_ID *)tmp) );
272                 tmp1 += 10;
273                 tmp += sizeof(EMUFS_REG_ID);
274                 /* Pongo el campo numero del registro */
275                 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
276                 fprintf(stderr, "Numero=%d\n",*((unsigned int *)tmp) );
277                 tmp1 += 10;
278                 tmp += sizeof(unsigned int);
279                 j = 0;
280                 while (j < (tam_data)) {
281                         if (*tmp == '\0') {
282                                 if (ant == (*tmp))
283                                         (*tmp1) = '.';
284                                 else
285                                         (*tmp1) = '|';
286                         } else {
287                                 (*tmp1) = (*tmp);
288                         }
289                         ant = (*tmp);
290                         tmp++;
291                         tmp1++;
292                         j++;
293                 }
294                 i++;
295         }
296         free(ptr);
297         
298         if (emu->tam_bloque > emu->tam_reg) {
299                 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
300                 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
301         } else {
302                 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
303                 (*ancho) = (*size);
304         }
305         memset(tmp1, '.', (*size)-(tmp1-salida)); 
306         salida[*size-1] = '\0';
307
308         return salida;
309 }
310
311 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
312 {
313         EMUFS_REG_SIZE offset, curr_size;
314         char *tmp, *salida, *tmp1, pos_actualizada, ant;
315         int cant_header, i=0, j;
316         if (ptr == NULL) return NULL;
317         
318         /* Cuento la cantidad de registros en este bloque */
319         cant_header = 0;
320         offset = 0;
321         fprintf(stderr, "Tam = %lu\n", *size);
322         do {
323                 /* Me salto el ID, que no me interesa saber su valor */
324                 offset += sizeof(EMUFS_REG_ID);
325                 /* Copio el tamaño del registro de la cabecera. */
326                 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
327                 offset += sizeof(EMUFS_REG_SIZE);
328
329                 /* Desplazo el offset */
330                 if (curr_size == 0) {
331                         /* Si el tamaño de registro es 0, quiere decir que llegue a la
332                          * parte que esta vacia */
333                         break;
334                 } else {
335                         cant_header++;
336                         offset += curr_size;
337                 }
338         } while (offset < (*size));
339
340         /* Proceso */
341         salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
342         tmp = ptr;
343         tmp1 = salida;
344         pos_actualizada = 0;
345         while (i<cant_header) {
346                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
347                  * en el cambio de formato
348                  */
349                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
350                         (*pos_actual) = tmp1-salida;
351                         pos_actualizada = 1;
352                 }
353                 /* Pongo el ID del registro */
354                 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
355                 tmp1 += 10;
356                 tmp += sizeof(EMUFS_REG_ID);
357                 /* Pongo el tamaño del registro */
358                 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
359                 curr_size = *((EMUFS_REG_SIZE *)tmp);
360                 if (pos_actualizada == 1) {
361                         (*ancho) = curr_size-sizeof(unsigned int)+30;
362                         pos_actualizada = 2;
363                 }
364                 tmp1 += 10;
365                 tmp += sizeof(EMUFS_REG_SIZE);
366                 /* Pongo el campo numero del registro */
367                 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
368                 tmp1 += 10;
369                 tmp += sizeof(unsigned int);
370                 j = sizeof(unsigned int);;
371                 while (j < curr_size) {
372                         if (*tmp == '\0') {
373                                 if (ant == (*tmp))
374                                         (*tmp1) = '.';
375                                 else
376                                         (*tmp1) = '|';
377                         } else {
378                                 (*tmp1) = (*tmp);
379                         }
380                         ant = (*tmp);
381                         tmp++;
382                         tmp1++;
383                         j++;
384                 }
385                 i++;
386         }
387         /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
388         (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
389         memset(tmp1, '.', (*size)-(tmp1-salida)); 
390         free(ptr);
391         salida[*size] = '\0';
392         
393         return salida;
394 }
395
396 int preguntar_id(WINDOW *win, EMUFS *fp)
397 {
398         int n=-1, j=0;
399         t_Form *form = form_crear(win);
400         form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
401
402         do {
403                 if (j != 0) {
404                         curs_set(0);
405                         wattron(win, COLOR_PAIR(COLOR_YELLOW));
406                         wattron(win, A_BOLD);
407                         mvwaddstr(win, 2, 1, "Registro no encontrado!!");
408                         wattroff(win, A_BOLD);
409                         wattroff(win, COLOR_PAIR(COLOR_YELLOW));
410                         wrefresh(win);
411                         getch();
412                         werase(win);
413                         box(win, 0, 0);
414                 }
415                 form_ejecutar(form, 1,1);
416
417                 n = form_obtener_valor_int(form, "ID a buscar");
418                 j = 1;
419         } while (emufs_idx_existe_id(fp, n) != 0);
420
421         form_destruir(form);
422         return n;
423 }
424