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);
10 void mostrar_info(WINDOW *padre, int h, int offset_alto)
13 wattron(padre, A_BOLD);
14 wattron(padre, COLOR_PAIR(COLOR_RED));
15 mvwaddstr(padre, h-offset_alto+1, 5, "Teclas :");
16 wattroff(padre, A_BOLD);
17 wattroff(padre, COLOR_PAIR(COLOR_RED));
18 mvwaddstr(padre, h-offset_alto+2, 8, "Salir = ENTER");
19 mvwaddstr(padre, h-offset_alto+3, 8, "Scroll = A/Z");
20 mvwaddstr(padre, h-offset_alto+4, 8, "Seleccionar registros = K/L");
21 mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: ");
23 wattron(padre, A_BOLD);
25 wattroff(padre, A_BOLD);
26 waddstr(padre, "regar ");
27 wattron(padre, A_BOLD);
29 wattroff(padre, A_BOLD);
30 waddstr(padre, "ofidicar ");
31 wattron(padre, A_BOLD);
33 wattroff(padre, A_BOLD);
34 waddstr(padre, "liminar ");
37 wattron(padre, A_BOLD);
38 wattron(padre, COLOR_PAIR(COLOR_RED));
39 mvwaddstr(padre, h-offset_alto+1, 45, "Leyenda :");
40 wattroff(padre, A_BOLD);
41 wattroff(padre, COLOR_PAIR(COLOR_RED));
42 mvwaddstr(padre, h-offset_alto+2, 48, " | = Separador de campo");
43 mvwaddstr(padre, h-offset_alto+3, 48, "[XXX] = Campo numerico");
44 mvwaddstr(padre, h-offset_alto+4, 48, "(XXX) = ID de registro");
45 mvwaddstr(padre, h-offset_alto+5, 48, "{XXX} = Tam. de registro");
46 mvwaddstr(padre, h-offset_alto+6, 48, " . = Esp. Libre");
49 void ver_registros(WINDOW *padre, int w, int h)
51 /* Ventanas donde mostrar las cosas */
52 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
55 int scroll, actual_ancho;
56 int max_scroll, c, offset_alto;
57 EMUFS_REG_ID ant_indice, total_indice; /* Indice de registro que tengo en ANT */
58 char *data; /* Registros a mostrar en pantalla */
59 char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
61 int pos_actual, ancho_registro, offset, pos;
62 fp = emufs_abrir("articulos");
66 procesar = procesar_registro_articulo_tipo1;
69 procesar = procesar_registro_articulo_tipo3;
72 total_indice = emufs_idx_get_count(fp);
75 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
76 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
80 max_scroll = size / (w-4) - (h-offset_alto-2);
81 if (max_scroll < 0) max_scroll = 0;
83 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
85 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
90 mostrar_info(padre, h, actual_ancho);
92 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
93 wattron(actual[1], A_BOLD);
94 waddnstr(actual[1], data+pos_actual, ancho_registro);
95 wattroff(actual[1], A_BOLD);
96 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
102 while ((c=getch()) != 13) {
106 if (ant_indice != EMUFS_NOT_FOUND)
107 fp->borrar_registro(fp, emufs_idx_get_id_at(fp, ant_indice));
109 total_indice = emufs_idx_get_count(fp);
110 if (ant_indice >= total_indice) {
111 ant_indice = total_indice - 1;
114 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
115 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
121 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
122 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
124 total_indice = emufs_idx_get_count(fp);
126 /* Tengo que re-pintar algunas cosas */
127 mostrar_info(padre, h, actual_ancho);
128 box(actual[0], 0, 0);
132 case 'm': /* Quiero editar !!! */
133 sprintf(codigo, "%lu", emufs_idx_get_id_at(fp, ant_indice));
134 art_modificar(codigo);
135 /* Vuelvo a cargar el articulo actual */
138 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
139 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
141 /* Tengo que re-pintar algunas cosas */
142 mostrar_info(padre, h, actual_ancho);
143 box(actual[0], 0, 0);
146 case 'a': /* Scroll */
148 if (scroll < 0) scroll = 0;
150 case 'z': /* Scroll */
152 if (scroll > max_scroll) scroll = max_scroll;
155 if (ant_indice < total_indice) {
157 if (ant_indice >= total_indice) ant_indice = total_indice-1;
158 if (data) free(data);
159 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
160 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
164 if (ant_indice != EMUFS_NOT_FOUND) {
166 if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0;
167 if (data) free(data);
168 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
169 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
173 /* Borro las ventanas */
176 /* Imprimo los registros */
178 offset = scroll*actual_ancho;
179 pos = pos_actual - offset;
180 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
182 wattron(actual[1], A_BOLD);
183 waddnstr(actual[1], data+offset, ancho_registro);
184 wattroff(actual[1], A_BOLD);
185 offset += ancho_registro;
186 waddnstr(actual[1], data+offset, size-offset);
198 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
200 char *tmp, *salida, *tmp1, pos_actualizada, ant;
201 int cant_header, i=0, j;
202 if (ptr == NULL) return NULL;
204 /* Calculo cuantos headers de registros va a haber en el archivo */
205 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
206 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
208 /* El tamaño del nuevo array lo calculo asi :
210 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
211 * + 10*(cant_headers+cant_registros) +1
213 * En tipo3, la cantidad de headers y cant de registros es la misma
214 * El 10 es por : (XXXXXXXX)
217 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
221 while (i<cant_header) {
222 /* Verifico la pos_actual para el resaltado, asi queda coherente
223 * en el cambio de formato
225 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
226 (*pos_actual) = tmp1-salida;
229 /* Pongo el ID del registro */
230 sprintf(tmp1, "(%08d)", *((unsigned int *)tmp));
232 tmp += sizeof(unsigned int);
233 /* Pongo el campo numero del registro */
234 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
236 tmp += sizeof(unsigned int);
238 while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
256 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
257 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
261 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
263 EMUFS_REG_SIZE offset, curr_size;
264 char *tmp, *salida, *tmp1, pos_actualizada, ant;
265 int cant_header, i=0, j;
266 if (ptr == NULL) return NULL;
268 /* Cuento la cantidad de registros en este bloque */
272 /* Me salto el ID, que no me interesa saber su valor */
273 offset += sizeof(EMUFS_REG_ID);
274 /* Copio el tamaño del registro de la cabecera. */
275 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
276 offset += sizeof(EMUFS_REG_SIZE);
278 /* Desplazo el offset */
279 if (curr_size == 0) {
280 /* Si el tamaño de registro es 0, quiere decir que llegue a la
281 * parte que esta vacia */
287 } while (offset < (*size));
290 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
294 while (i<cant_header) {
295 /* Verifico la pos_actual para el resaltado, asi queda coherente
296 * en el cambio de formato
298 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
299 (*pos_actual) = tmp1-salida;
302 /* Pongo el ID del registro */
303 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
305 tmp += sizeof(EMUFS_REG_ID);
306 /* Pongo el tamaño del registro */
307 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
308 curr_size = *((EMUFS_REG_SIZE *)tmp);
309 if (pos_actualizada == 1) {
310 (*ancho) = curr_size-sizeof(unsigned int)+30;
314 tmp += sizeof(EMUFS_REG_SIZE);
315 /* Pongo el campo numero del registro */
316 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
318 tmp += sizeof(unsigned int);
319 j = sizeof(unsigned int);;
320 while (j < curr_size) {
338 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;