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");
51 void ver_registros(WINDOW *padre, int w, int h)
53 /* Ventanas donde mostrar las cosas */
54 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
55 WINDOW *actual[2], *dlg;
57 int scroll, actual_ancho;
58 int max_scroll, c, offset_alto;
59 /* Indices que hay validos en IDX */
60 EMUFS_REG_ID *indices, indices_total, indices_actual;
61 char *data; /* Registros a mostrar en pantalla */
62 char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
64 int pos_actual, ancho_registro, offset, pos;
66 fp = emufs_abrir("articulos");
67 wattron(padre, COLOR_PAIR(COLOR_BLUE));
68 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
69 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
72 waddstr(padre, "Registro variable con bloque parametrizado.");
73 procesar = procesar_registro_articulo_tipo1;
76 waddstr(padre, "Registro variable sin bloques.");
79 procesar = procesar_registro_articulo_tipo3;
80 waddstr(padre, "Registro fijo con bloque parametrizado.");
83 indices = emufs_idx_get(fp, &indices_total);
86 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
87 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
91 max_scroll = size / (w-4) - (h-offset_alto-2);
92 if (max_scroll < 0) max_scroll = 0;
94 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
96 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
101 mostrar_info(padre, h, offset_alto);
103 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
104 wattron(actual[1], A_BOLD);
105 waddnstr(actual[1], data+pos_actual, ancho_registro);
106 wattroff(actual[1], A_BOLD);
107 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
113 while ((c=getch()) != 13) {
117 dlg = newwin(4, 50, h/2-2, w/2-25);
119 preguntar_id(dlg, fp);
128 if (indices_actual != EMUFS_NOT_FOUND)
129 fp->borrar_registro(fp, indices[indices_actual]);
132 indices = emufs_idx_get(fp, &indices_total);
133 if (indices_actual >= indices_total) {
134 indices_actual = indices_total - 1;
137 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
138 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
144 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
145 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
148 indices = emufs_idx_get(fp, &indices_total);
150 /* Tengo que re-pintar algunas cosas */
151 mostrar_info(padre, h, offset_alto);
152 box(actual[0], 0, 0);
156 case 'm': /* Quiero editar !!! */
157 sprintf(codigo, "%lu", indices[indices_actual]);
158 art_modificar(codigo);
159 /* Vuelvo a cargar el articulo actual */
162 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
163 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
165 /* Tengo que re-pintar algunas cosas */
166 mostrar_info(padre, h, offset_alto);
167 box(actual[0], 0, 0);
170 case 'a': /* Scroll */
172 if (scroll < 0) scroll = 0;
174 case 'z': /* Scroll */
176 if (scroll > max_scroll) scroll = max_scroll;
179 if (indices_actual < indices_total) {
181 if (indices_actual >= indices_total) indices_actual = indices_total-1;
182 if (data) free(data);
183 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
184 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
188 if (indices_actual != EMUFS_NOT_FOUND) {
190 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
191 if (data) free(data);
192 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
193 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
197 /* Borro las ventanas */
200 /* Imprimo los registros */
202 offset = scroll*actual_ancho;
203 pos = pos_actual - offset;
204 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
206 wattron(actual[1], A_BOLD);
207 waddnstr(actual[1], data+offset, ancho_registro);
208 wattroff(actual[1], A_BOLD);
209 offset += ancho_registro;
210 waddnstr(actual[1], data+offset, size-offset);
223 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
225 char *tmp, *salida, *tmp1, pos_actualizada, ant;
226 int cant_header, i=0, j;
227 if (ptr == NULL) return NULL;
229 /* Calculo cuantos headers de registros va a haber en el archivo */
230 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
231 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
233 /* El tamaño del nuevo array lo calculo asi :
235 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
236 * + 10*(cant_headers+cant_registros) +1
238 * En tipo3, la cantidad de headers y cant de registros es la misma
239 * El 10 es por : (XXXXXXXX)
242 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
246 while (i<cant_header) {
247 /* Verifico la pos_actual para el resaltado, asi queda coherente
248 * en el cambio de formato
250 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
251 (*pos_actual) = tmp1-salida;
254 /* Pongo el ID del registro */
255 sprintf(tmp1, "(%08d)", *((unsigned int *)tmp));
257 tmp += sizeof(unsigned int);
258 /* Pongo el campo numero del registro */
259 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
261 tmp += sizeof(unsigned int);
263 while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
281 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
282 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
286 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
288 EMUFS_REG_SIZE offset, curr_size;
289 char *tmp, *salida, *tmp1, pos_actualizada, ant;
290 int cant_header, i=0, j;
291 if (ptr == NULL) return NULL;
293 /* Cuento la cantidad de registros en este bloque */
297 /* Me salto el ID, que no me interesa saber su valor */
298 offset += sizeof(EMUFS_REG_ID);
299 /* Copio el tamaño del registro de la cabecera. */
300 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
301 offset += sizeof(EMUFS_REG_SIZE);
303 /* Desplazo el offset */
304 if (curr_size == 0) {
305 /* Si el tamaño de registro es 0, quiere decir que llegue a la
306 * parte que esta vacia */
312 } while (offset < (*size));
315 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
319 while (i<cant_header) {
320 /* Verifico la pos_actual para el resaltado, asi queda coherente
321 * en el cambio de formato
323 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
324 (*pos_actual) = tmp1-salida;
327 /* Pongo el ID del registro */
328 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
330 tmp += sizeof(EMUFS_REG_ID);
331 /* Pongo el tamaño del registro */
332 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
333 curr_size = *((EMUFS_REG_SIZE *)tmp);
334 if (pos_actualizada == 1) {
335 (*ancho) = curr_size-sizeof(unsigned int)+30;
339 tmp += sizeof(EMUFS_REG_SIZE);
340 /* Pongo el campo numero del registro */
341 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
343 tmp += sizeof(unsigned int);
344 j = sizeof(unsigned int);;
345 while (j < curr_size) {
363 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
368 int preguntar_id(WINDOW *win, EMUFS *fp)
371 t_Form *form = form_crear(win);
372 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
377 wattron(win, COLOR_PAIR(COLOR_YELLOW));
378 wattron(win, A_BOLD);
379 mvwaddstr(win, 2, 1, "Registro no encontrado!!");
380 wattroff(win, A_BOLD);
381 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
387 form_ejecutar(form, 1,1);
389 n = form_obtener_valor_int(form, "ID a buscar");
391 } while (emufs_idx_existe_id(fp, n) != 0);