]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs_gui/registros.c
bb29f841a5b29d5824d9fcf5a7d3b232d376048f
[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         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                 return NULL;
255         }
256         tmp = ptr;
257         tmp1 = salida;
258         pos_actualizada = 0;
259         while (i<cant_header) {
260                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
261                  * en el cambio de formato
262                  */
263                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
264                         (*pos_actual) = tmp1-salida;
265                         pos_actualizada = 1;
266                 }
267                 /* Pongo el ID del registro */
268                 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
269                 fprintf(stderr, "ID=%lu\n",*((EMUFS_REG_ID *)tmp) );
270                 tmp1 += 10;
271                 tmp += sizeof(EMUFS_REG_ID);
272                 /* Pongo el campo numero del registro */
273                 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
274                 fprintf(stderr, "Numero=%d\n",*((unsigned int *)tmp) );
275                 tmp1 += 10;
276                 tmp += sizeof(unsigned int);
277                 j = 0;
278                 while (j < (tam_data)) {
279                         if (*tmp == '\0') {
280                                 if (ant == (*tmp))
281                                         (*tmp1) = '.';
282                                 else
283                                         (*tmp1) = '|';
284                         } else {
285                                 (*tmp1) = (*tmp);
286                         }
287                         ant = (*tmp);
288                         tmp++;
289                         tmp1++;
290                         j++;
291                 }
292                 i++;
293         }
294         free(ptr);
295         (*tmp1) = '\0';
296         
297         if (emu->tam_bloque > emu->tam_reg) {
298                 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
299                 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
300         } else {
301                 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
302                 (*ancho) = (*size);
303         }
304
305         return salida;
306 }
307
308 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
309 {
310         EMUFS_REG_SIZE offset, curr_size;
311         char *tmp, *salida, *tmp1, pos_actualizada, ant;
312         int cant_header, i=0, j;
313         if (ptr == NULL) return NULL;
314         
315         /* Cuento la cantidad de registros en este bloque */
316         cant_header = 0;
317         offset = 0;
318         do {
319                 /* Me salto el ID, que no me interesa saber su valor */
320                 offset += sizeof(EMUFS_REG_ID);
321                 /* Copio el tamaño del registro de la cabecera. */
322                 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
323                 offset += sizeof(EMUFS_REG_SIZE);
324
325                 /* Desplazo el offset */
326                 if (curr_size == 0) {
327                         /* Si el tamaño de registro es 0, quiere decir que llegue a la
328                          * parte que esta vacia */
329                         break;
330                 } else {
331                         cant_header++;
332                         offset += curr_size;
333                 }
334         } while (offset < (*size));
335
336         /* Proceso */
337         salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
338         tmp = ptr;
339         tmp1 = salida;
340         pos_actualizada = 0;
341         while (i<cant_header) {
342                 /* Verifico la pos_actual para el resaltado, asi queda coherente 
343                  * en el cambio de formato
344                  */
345                 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
346                         (*pos_actual) = tmp1-salida;
347                         pos_actualizada = 1;
348                 }
349                 /* Pongo el ID del registro */
350                 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
351                 tmp1 += 10;
352                 tmp += sizeof(EMUFS_REG_ID);
353                 /* Pongo el tamaño del registro */
354                 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
355                 curr_size = *((EMUFS_REG_SIZE *)tmp);
356                 if (pos_actualizada == 1) {
357                         (*ancho) = curr_size-sizeof(unsigned int)+30;
358                         pos_actualizada = 2;
359                 }
360                 tmp1 += 10;
361                 tmp += sizeof(EMUFS_REG_SIZE);
362                 /* Pongo el campo numero del registro */
363                 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
364                 tmp1 += 10;
365                 tmp += sizeof(unsigned int);
366                 j = sizeof(unsigned int);;
367                 while (j < curr_size) {
368                         if (*tmp == '\0') {
369                                 if (ant == (*tmp))
370                                         (*tmp1) = '.';
371                                 else
372                                         (*tmp1) = '|';
373                         } else {
374                                 (*tmp1) = (*tmp);
375                         }
376                         ant = (*tmp);
377                         tmp++;
378                         tmp1++;
379                         j++;
380                 }
381                 i++;
382         }
383         free(ptr);
384         (*tmp1) = '\0';
385         (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
386         
387         return salida;
388 }
389
390 int preguntar_id(WINDOW *win, EMUFS *fp)
391 {
392         int n=-1, j=0;
393         t_Form *form = form_crear(win);
394         form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
395
396         do {
397                 if (j != 0) {
398                         curs_set(0);
399                         wattron(win, COLOR_PAIR(COLOR_YELLOW));
400                         wattron(win, A_BOLD);
401                         mvwaddstr(win, 2, 1, "Registro no encontrado!!");
402                         wattroff(win, A_BOLD);
403                         wattroff(win, COLOR_PAIR(COLOR_YELLOW));
404                         wrefresh(win);
405                         getch();
406                         werase(win);
407                         box(win, 0, 0);
408                 }
409                 form_ejecutar(form, 1,1);
410
411                 n = form_obtener_valor_int(form, "ID a buscar");
412                 j = 1;
413         } while (emufs_idx_existe_id(fp, n) != 0);
414
415         form_destruir(form);
416         return n;
417 }
418