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);
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) {
259 while (i<cant_header) {
260 /* Verifico la pos_actual para el resaltado, asi queda coherente
261 * en el cambio de formato
263 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
264 (*pos_actual) = tmp1-salida;
267 /* Pongo el ID del registro */
268 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
269 fprintf(stderr, "ID=%lu\n",*((EMUFS_REG_ID *)tmp) );
271 tmp += sizeof(EMUFS_REG_ID);
272 /* Pongo el campo numero del registro */
273 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
274 fprintf(stderr, "Numero=%d\n",*((unsigned int *)tmp) );
276 tmp += sizeof(unsigned int);
278 while (j < (tam_data)) {
297 if (emu->tam_bloque > emu->tam_reg) {
298 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
299 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
301 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
308 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
310 EMUFS_REG_SIZE offset, curr_size;
311 char *tmp, *salida, *tmp1, pos_actualizada, ant;
312 int cant_header, i=0, j;
313 if (ptr == NULL) return NULL;
315 /* Cuento la cantidad de registros en este bloque */
319 /* Me salto el ID, que no me interesa saber su valor */
320 offset += sizeof(EMUFS_REG_ID);
321 /* Copio el tamaño del registro de la cabecera. */
322 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
323 offset += sizeof(EMUFS_REG_SIZE);
325 /* Desplazo el offset */
326 if (curr_size == 0) {
327 /* Si el tamaño de registro es 0, quiere decir que llegue a la
328 * parte que esta vacia */
334 } while (offset < (*size));
337 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
341 while (i<cant_header) {
342 /* Verifico la pos_actual para el resaltado, asi queda coherente
343 * en el cambio de formato
345 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
346 (*pos_actual) = tmp1-salida;
349 /* Pongo el ID del registro */
350 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
352 tmp += sizeof(EMUFS_REG_ID);
353 /* Pongo el tamaño del registro */
354 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
355 curr_size = *((EMUFS_REG_SIZE *)tmp);
356 if (pos_actualizada == 1) {
357 (*ancho) = curr_size-sizeof(unsigned int)+30;
361 tmp += sizeof(EMUFS_REG_SIZE);
362 /* Pongo el campo numero del registro */
363 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
365 tmp += sizeof(unsigned int);
366 j = sizeof(unsigned int);;
367 while (j < curr_size) {
385 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
390 int preguntar_id(WINDOW *win, EMUFS *fp)
393 t_Form *form = form_crear(win);
394 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
399 wattron(win, COLOR_PAIR(COLOR_YELLOW));
400 wattron(win, A_BOLD);
401 mvwaddstr(win, 2, 1, "Registro no encontrado!!");
402 wattroff(win, A_BOLD);
403 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
409 form_ejecutar(form, 1,1);
411 n = form_obtener_valor_int(form, "ID a buscar");
413 } while (emufs_idx_existe_id(fp, n) != 0);