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 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
89 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
94 max_scroll = size / (w-4) - (h-offset_alto-2);
95 if (max_scroll < 0) max_scroll = 0;
97 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
99 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
100 box(actual[0], 0, 0);
104 mostrar_info(padre, h, offset_alto);
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));
116 while ((c=getch()) != 13) {
120 dlg = newwin(4, 50, h/2-2, w/2-25);
122 preguntar_id(dlg, fp);
131 if (indices_actual != EMUFS_NOT_FOUND)
132 fp->borrar_registro(fp, indices[indices_actual]);
135 indices = emufs_idx_get(fp, &indices_total);
136 if (indices_actual >= indices_total) {
137 indices_actual = indices_total - 1;
140 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
141 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
147 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
148 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
151 indices = emufs_idx_get(fp, &indices_total);
153 /* Tengo que re-pintar algunas cosas */
154 mostrar_info(padre, h, offset_alto);
155 box(actual[0], 0, 0);
159 case 'm': /* Quiero editar !!! */
160 sprintf(codigo, "%lu", indices[indices_actual]);
161 art_modificar(codigo);
162 /* Vuelvo a cargar el articulo actual */
165 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
166 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
168 /* Tengo que re-pintar algunas cosas */
169 mostrar_info(padre, h, offset_alto);
170 box(actual[0], 0, 0);
173 case 'a': /* Scroll */
175 if (scroll < 0) scroll = 0;
177 case 'z': /* Scroll */
179 if (scroll > max_scroll) scroll = max_scroll;
182 if (indices_actual < indices_total) {
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);
191 if (indices_actual != EMUFS_NOT_FOUND) {
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);
200 /* Borro las ventanas */
203 /* Imprimo los registros */
205 offset = scroll*actual_ancho;
206 pos = pos_actual - offset;
207 mvwaddnstr(actual[1], 0, 0, data+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);
219 if (indices) free(indices);
220 if (data) free(data);
227 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
229 char *tmp, *salida, *tmp1, pos_actualizada, ant;
230 int cant_header, i=0, j, tam_data;
231 if (ptr == NULL) return NULL;
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);
240 tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
243 /* El tamaño del nuevo array lo calculo asi :
245 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
246 * + 10*(cant_headers+cant_registros) +1
248 * En tipo3, la cantidad de headers y cant de registros es la misma
249 * El 10 es por : (XXXXXXXX)
252 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
253 if (salida == NULL) {
254 fprintf(stderr, "Error de malloc en salida\n");
260 while (i<cant_header) {
261 fprintf(stderr, "voy a hacer el %d de %d\n", i, cant_header);
262 /* Verifico la pos_actual para el resaltado, asi queda coherente
263 * en el cambio de formato
265 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
266 (*pos_actual) = tmp1-salida;
269 /* Pongo el ID del registro */
270 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
271 fprintf(stderr, "ID=%lu\n",*((EMUFS_REG_ID *)tmp) );
273 tmp += sizeof(EMUFS_REG_ID);
274 /* Pongo el campo numero del registro */
275 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
276 fprintf(stderr, "Numero=%d\n",*((unsigned int *)tmp) );
278 tmp += sizeof(unsigned int);
280 while (j < (tam_data)) {
298 if (emu->tam_bloque > emu->tam_reg) {
299 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
300 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
302 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
305 memset(tmp1, '.', (*size)-(tmp1-salida));
306 salida[*size-1] = '\0';
311 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
313 EMUFS_REG_SIZE offset, curr_size;
314 char *tmp, *salida, *tmp1, pos_actualizada, ant;
315 int cant_header, i=0, j;
316 if (ptr == NULL) return NULL;
318 /* Cuento la cantidad de registros en este bloque */
321 fprintf(stderr, "Tam = %lu\n", *size);
323 /* Me salto el ID, que no me interesa saber su valor */
324 offset += sizeof(EMUFS_REG_ID);
325 /* Copio el tamaño del registro de la cabecera. */
326 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
327 offset += sizeof(EMUFS_REG_SIZE);
329 /* Desplazo el offset */
330 if (curr_size == 0) {
331 /* Si el tamaño de registro es 0, quiere decir que llegue a la
332 * parte que esta vacia */
338 } while (offset < (*size));
341 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
345 while (i<cant_header) {
346 /* Verifico la pos_actual para el resaltado, asi queda coherente
347 * en el cambio de formato
349 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
350 (*pos_actual) = tmp1-salida;
353 /* Pongo el ID del registro */
354 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
356 tmp += sizeof(EMUFS_REG_ID);
357 /* Pongo el tamaño del registro */
358 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
359 curr_size = *((EMUFS_REG_SIZE *)tmp);
360 if (pos_actualizada == 1) {
361 (*ancho) = curr_size-sizeof(unsigned int)+30;
365 tmp += sizeof(EMUFS_REG_SIZE);
366 /* Pongo el campo numero del registro */
367 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
369 tmp += sizeof(unsigned int);
370 j = sizeof(unsigned int);;
371 while (j < curr_size) {
387 /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
388 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
389 memset(tmp1, '.', (*size)-(tmp1-salida));
391 salida[*size] = '\0';
396 int preguntar_id(WINDOW *win, EMUFS *fp)
399 t_Form *form = form_crear(win);
400 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
405 wattron(win, COLOR_PAIR(COLOR_YELLOW));
406 wattron(win, A_BOLD);
407 mvwaddstr(win, 2, 1, "Registro no encontrado!!");
408 wattroff(win, A_BOLD);
409 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
415 form_ejecutar(form, 1,1);
417 n = form_obtener_valor_int(form, "ID a buscar");
419 } while (emufs_idx_existe_id(fp, n) != 0);