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+6, 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);
87 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
88 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
92 max_scroll = size / (w-4) - (h-offset_alto-2);
93 if (max_scroll < 0) max_scroll = 0;
95 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
97 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
102 mostrar_info(padre, h, offset_alto);
104 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
105 wattron(actual[1], A_BOLD);
106 waddnstr(actual[1], data+pos_actual, ancho_registro);
107 wattroff(actual[1], A_BOLD);
108 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
114 while ((c=getch()) != 13) {
118 dlg = newwin(4, 50, h/2-2, w/2-25);
120 preguntar_id(dlg, fp);
129 if (indices_actual != EMUFS_NOT_FOUND)
130 fp->borrar_registro(fp, indices[indices_actual]);
133 indices = emufs_idx_get(fp, &indices_total);
134 if (indices_actual >= indices_total) {
135 indices_actual = indices_total - 1;
138 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
139 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
145 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
146 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
149 indices = emufs_idx_get(fp, &indices_total);
151 /* Tengo que re-pintar algunas cosas */
152 mostrar_info(padre, h, offset_alto);
153 box(actual[0], 0, 0);
157 case 'm': /* Quiero editar !!! */
158 sprintf(codigo, "%lu", indices[indices_actual]);
159 art_modificar(codigo);
160 /* Vuelvo a cargar el articulo actual */
163 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
164 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
166 /* Tengo que re-pintar algunas cosas */
167 mostrar_info(padre, h, offset_alto);
168 box(actual[0], 0, 0);
171 case 'a': /* Scroll */
173 if (scroll < 0) scroll = 0;
175 case 'z': /* Scroll */
177 if (scroll > max_scroll) scroll = max_scroll;
180 if (indices_actual < indices_total) {
182 if (indices_actual >= indices_total) indices_actual = indices_total-1;
183 if (data) free(data);
184 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
185 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
189 if (indices_actual != EMUFS_NOT_FOUND) {
191 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
192 if (data) free(data);
193 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
194 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
198 /* Borro las ventanas */
201 /* Imprimo los registros */
203 offset = scroll*actual_ancho;
204 pos = pos_actual - offset;
205 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
207 wattron(actual[1], A_BOLD);
208 waddnstr(actual[1], data+offset, ancho_registro);
209 wattroff(actual[1], A_BOLD);
210 offset += ancho_registro;
211 waddnstr(actual[1], data+offset, size-offset);
224 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
226 char *tmp, *salida, *tmp1, pos_actualizada, ant;
227 int cant_header, i=0, j, tam_data;
228 if (ptr == NULL) return NULL;
230 /* Calculo cuantos headers de registros va a haber en el archivo */
231 if (emu->tam_bloque > emu->tam_reg) {
232 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
233 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
234 tam_data = sizeof(t_Articulo)-sizeof(unsigned int);
237 tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
240 /* El tamaño del nuevo array lo calculo asi :
242 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
243 * + 10*(cant_headers+cant_registros) +1
245 * En tipo3, la cantidad de headers y cant de registros es la misma
246 * El 10 es por : (XXXXXXXX)
249 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
250 if (salida == NULL) {
256 while (i<cant_header) {
257 /* Verifico la pos_actual para el resaltado, asi queda coherente
258 * en el cambio de formato
260 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
261 (*pos_actual) = tmp1-salida;
264 /* Pongo el ID del registro */
265 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
266 fprintf(stderr, "ID=%lu\n",*((EMUFS_REG_ID *)tmp) );
268 tmp += sizeof(EMUFS_REG_ID);
269 /* Pongo el campo numero del registro */
270 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
271 fprintf(stderr, "Numero=%d\n",*((unsigned int *)tmp) );
273 tmp += sizeof(unsigned int);
275 while (j < (tam_data)) {
294 if (emu->tam_bloque > emu->tam_reg) {
295 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
296 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
298 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
302 fprintf(stderr, "SALI OK\n");
306 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
308 EMUFS_REG_SIZE offset, curr_size;
309 char *tmp, *salida, *tmp1, pos_actualizada, ant;
310 int cant_header, i=0, j;
311 if (ptr == NULL) return NULL;
313 /* Cuento la cantidad de registros en este bloque */
317 /* Me salto el ID, que no me interesa saber su valor */
318 offset += sizeof(EMUFS_REG_ID);
319 /* Copio el tamaño del registro de la cabecera. */
320 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
321 offset += sizeof(EMUFS_REG_SIZE);
323 /* Desplazo el offset */
324 if (curr_size == 0) {
325 /* Si el tamaño de registro es 0, quiere decir que llegue a la
326 * parte que esta vacia */
332 } while (offset < (*size));
335 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
339 while (i<cant_header) {
340 /* Verifico la pos_actual para el resaltado, asi queda coherente
341 * en el cambio de formato
343 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
344 (*pos_actual) = tmp1-salida;
347 /* Pongo el ID del registro */
348 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
350 tmp += sizeof(EMUFS_REG_ID);
351 /* Pongo el tamaño del registro */
352 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
353 curr_size = *((EMUFS_REG_SIZE *)tmp);
354 if (pos_actualizada == 1) {
355 (*ancho) = curr_size-sizeof(unsigned int)+30;
359 tmp += sizeof(EMUFS_REG_SIZE);
360 /* Pongo el campo numero del registro */
361 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
363 tmp += sizeof(unsigned int);
364 j = sizeof(unsigned int);;
365 while (j < curr_size) {
383 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
388 int preguntar_id(WINDOW *win, EMUFS *fp)
391 t_Form *form = form_crear(win);
392 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
397 wattron(win, COLOR_PAIR(COLOR_YELLOW));
398 wattron(win, A_BOLD);
399 mvwaddstr(win, 2, 1, "Registro no encontrado!!");
400 wattroff(win, A_BOLD);
401 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
407 form_ejecutar(form, 1,1);
409 n = form_obtener_valor_int(form, "ID a buscar");
411 } while (emufs_idx_existe_id(fp, n) != 0);