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);
11 void mostrar_info(WINDOW *padre, int h, int offset_alto)
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: ");
24 wattron(padre, A_BOLD);
26 wattroff(padre, A_BOLD);
27 waddstr(padre, "regar ");
28 wattron(padre, A_BOLD);
30 wattroff(padre, A_BOLD);
31 waddstr(padre, "ofidicar ");
32 wattron(padre, A_BOLD);
34 wattroff(padre, A_BOLD);
35 waddstr(padre, "liminar ");
36 mvwaddstr(padre, h-offset_alto+6, 8, "Buscar ID : B");
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");
52 void ver_registros(WINDOW *padre, int w, int h)
54 /* Ventanas donde mostrar las cosas */
55 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
56 WINDOW *actual[2], *dlg;
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 */
65 int pos_actual, ancho_registro, offset, pos;
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));
73 waddstr(padre, "Registro variable con bloque parametrizado.");
74 procesar = procesar_registro_articulo_tipo1;
77 waddstr(padre, "Registro variable sin bloques.");
80 procesar = procesar_registro_articulo_tipo3;
81 waddstr(padre, "Registro fijo con bloque parametrizado.");
84 indices = emufs_idx_get(fp, &indices_total);
88 fprintf(stderr, "LEO REGISTRO %lu\n", indices[indices_actual]);
89 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
90 fprintf(stderr, "Data leida %p (%s)\n",data, data);
91 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
92 fprintf(stderr, "Tamanio = %lu\n", size);
97 max_scroll = size / (w-4) - (h-offset_alto-2);
98 if (max_scroll < 0) max_scroll = 0;
100 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
102 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
103 box(actual[0], 0, 0);
107 mostrar_info(padre, h, offset_alto);
109 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
110 wattron(actual[1], A_BOLD);
111 waddnstr(actual[1], data+pos_actual, ancho_registro);
112 wattroff(actual[1], A_BOLD);
113 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
119 while ((c=getch()) != 13) {
123 dlg = newwin(4, 50, h/2-2, w/2-25);
125 preguntar_id(dlg, fp);
134 if (indices_actual != EMUFS_NOT_FOUND)
135 fp->borrar_registro(fp, indices[indices_actual]);
138 indices = emufs_idx_get(fp, &indices_total);
139 if (indices_actual >= indices_total) {
140 indices_actual = indices_total - 1;
143 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
144 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
150 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
151 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
154 indices = emufs_idx_get(fp, &indices_total);
156 /* Tengo que re-pintar algunas cosas */
157 mostrar_info(padre, h, offset_alto);
158 box(actual[0], 0, 0);
162 case 'm': /* Quiero editar !!! */
163 sprintf(codigo, "%lu", indices[indices_actual]);
164 art_modificar(codigo);
165 /* Vuelvo a cargar el articulo actual */
168 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
169 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
171 /* Tengo que re-pintar algunas cosas */
172 mostrar_info(padre, h, offset_alto);
173 box(actual[0], 0, 0);
176 case 'a': /* Scroll */
178 if (scroll < 0) scroll = 0;
180 case 'z': /* Scroll */
182 if (scroll > max_scroll) scroll = max_scroll;
185 if (indices_actual < indices_total) {
187 if (indices_actual >= indices_total) indices_actual = indices_total-1;
188 if (data) free(data);
189 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
190 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
194 if (indices_actual != EMUFS_NOT_FOUND) {
196 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
197 if (data) free(data);
198 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
199 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
203 /* Borro las ventanas */
206 /* Imprimo los registros */
208 offset = scroll*actual_ancho;
209 pos = pos_actual - offset;
210 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
212 wattron(actual[1], A_BOLD);
213 waddnstr(actual[1], data+offset, ancho_registro);
214 wattroff(actual[1], A_BOLD);
215 offset += ancho_registro;
216 waddnstr(actual[1], data+offset, size-offset);
222 if (indices) free(indices);
223 if (data) free(data);
230 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
232 char *tmp, *salida, *tmp1, pos_actualizada, ant;
233 int cant_header, i=0, j, tam_data;
234 if (ptr == NULL) return NULL;
236 /* Calculo cuantos headers de registros va a haber en el archivo */
237 if (emu->tam_bloque > emu->tam_reg) {
238 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
239 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
240 tam_data = sizeof(t_Articulo)-sizeof(unsigned int);
243 tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
246 /* El tamaño del nuevo array lo calculo asi :
248 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
249 * + 10*(cant_headers+cant_registros) +1
251 * En tipo3, la cantidad de headers y cant de registros es la misma
252 * El 10 es por : (XXXXXXXX)
255 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
256 if (salida == NULL) {
257 fprintf(stderr, "Error de malloc en salida\n");
263 while (i<cant_header) {
264 fprintf(stderr, "voy a hacer el %d de %d\n", i, cant_header);
265 /* Verifico la pos_actual para el resaltado, asi queda coherente
266 * en el cambio de formato
268 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
269 (*pos_actual) = tmp1-salida;
272 /* Pongo el ID del registro */
273 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
274 fprintf(stderr, "ID=%lu\n",*((EMUFS_REG_ID *)tmp) );
276 tmp += sizeof(EMUFS_REG_ID);
277 /* Pongo el campo numero del registro */
278 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
279 fprintf(stderr, "Numero=%d\n",*((unsigned int *)tmp) );
281 tmp += sizeof(unsigned int);
283 while (j < (tam_data)) {
301 if (emu->tam_bloque > emu->tam_reg) {
302 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
303 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
305 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
308 memset(tmp1, '.', (*size)-(tmp1-salida));
309 salida[*size] = '\0';
314 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
316 EMUFS_REG_SIZE offset, curr_size;
317 char *tmp, *salida, *tmp1, pos_actualizada, ant;
318 int cant_header, i=0, j;
319 if (ptr == NULL) return NULL;
321 /* Cuento la cantidad de registros en este bloque */
325 /* Me salto el ID, que no me interesa saber su valor */
326 offset += sizeof(EMUFS_REG_ID);
327 /* Copio el tamaño del registro de la cabecera. */
328 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
329 offset += sizeof(EMUFS_REG_SIZE);
331 /* Desplazo el offset */
332 if (curr_size == 0) {
333 /* Si el tamaño de registro es 0, quiere decir que llegue a la
334 * parte que esta vacia */
340 } while (offset < (*size));
343 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
347 while (i<cant_header) {
348 /* Verifico la pos_actual para el resaltado, asi queda coherente
349 * en el cambio de formato
351 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
352 (*pos_actual) = tmp1-salida;
355 /* Pongo el ID del registro */
356 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
358 tmp += sizeof(EMUFS_REG_ID);
359 /* Pongo el tamaño del registro */
360 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
361 curr_size = *((EMUFS_REG_SIZE *)tmp);
362 if (pos_actualizada == 1) {
363 (*ancho) = curr_size-sizeof(unsigned int)+30;
367 tmp += sizeof(EMUFS_REG_SIZE);
368 /* Pongo el campo numero del registro */
369 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
371 tmp += sizeof(unsigned int);
372 j = sizeof(unsigned int);;
373 while (j < curr_size) {
389 /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
390 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
391 memset(tmp1, '.', (*size)-(tmp1-salida));
393 salida[*size] = '\0';
398 int preguntar_id(WINDOW *win, EMUFS *fp)
401 t_Form *form = form_crear(win);
402 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
407 wattron(win, COLOR_PAIR(COLOR_YELLOW));
408 wattron(win, A_BOLD);
409 mvwaddstr(win, 2, 1, "Registro no encontrado!!");
410 wattroff(win, A_BOLD);
411 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
417 form_ejecutar(form, 1,1);
419 n = form_obtener_valor_int(form, "ID a buscar");
421 } while (emufs_idx_existe_id(fp, n) != 0);