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