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