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");
63 wattron(padre, COLOR_PAIR(COLOR_BLUE));
64 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
65 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
68 waddstr(padre, "Registro variable con bloque parametrizado.");
69 procesar = procesar_registro_articulo_tipo1;
72 waddstr(padre, "Registro variable sin bloques.");
75 procesar = procesar_registro_articulo_tipo3;
76 waddstr(padre, "Registro fijo con bloque parametrizado.");
79 total_indice = emufs_idx_get_count(fp);
82 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
83 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
87 max_scroll = size / (w-4) - (h-offset_alto-2);
88 if (max_scroll < 0) max_scroll = 0;
90 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
92 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
97 mostrar_info(padre, h, offset_alto);
99 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
100 wattron(actual[1], A_BOLD);
101 waddnstr(actual[1], data+pos_actual, ancho_registro);
102 wattroff(actual[1], A_BOLD);
103 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
109 while ((c=getch()) != 13) {
113 if (ant_indice != EMUFS_NOT_FOUND)
114 fp->borrar_registro(fp, emufs_idx_get_id_at(fp, ant_indice));
116 total_indice = emufs_idx_get_count(fp);
117 if (ant_indice >= total_indice) {
118 ant_indice = total_indice - 1;
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);
128 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
129 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
131 total_indice = emufs_idx_get_count(fp);
133 /* Tengo que re-pintar algunas cosas */
134 mostrar_info(padre, h, offset_alto);
135 box(actual[0], 0, 0);
139 case 'm': /* Quiero editar !!! */
140 sprintf(codigo, "%lu", emufs_idx_get_id_at(fp, ant_indice));
141 art_modificar(codigo);
142 /* Vuelvo a cargar el articulo actual */
145 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
146 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
148 /* Tengo que re-pintar algunas cosas */
149 mostrar_info(padre, h, offset_alto);
150 box(actual[0], 0, 0);
153 case 'a': /* Scroll */
155 if (scroll < 0) scroll = 0;
157 case 'z': /* Scroll */
159 if (scroll > max_scroll) scroll = max_scroll;
162 if (ant_indice < total_indice) {
164 if (ant_indice >= total_indice) ant_indice = total_indice-1;
165 if (data) free(data);
166 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
167 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
171 if (ant_indice != EMUFS_NOT_FOUND) {
173 if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0;
174 if (data) free(data);
175 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
176 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
180 /* Borro las ventanas */
183 /* Imprimo los registros */
185 offset = scroll*actual_ancho;
186 pos = pos_actual - offset;
187 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
189 wattron(actual[1], A_BOLD);
190 waddnstr(actual[1], data+offset, ancho_registro);
191 wattroff(actual[1], A_BOLD);
192 offset += ancho_registro;
193 waddnstr(actual[1], data+offset, size-offset);
205 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
207 char *tmp, *salida, *tmp1, pos_actualizada, ant;
208 int cant_header, i=0, j;
209 if (ptr == NULL) return NULL;
211 /* Calculo cuantos headers de registros va a haber en el archivo */
212 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
213 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
215 /* El tamaño del nuevo array lo calculo asi :
217 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
218 * + 10*(cant_headers+cant_registros) +1
220 * En tipo3, la cantidad de headers y cant de registros es la misma
221 * El 10 es por : (XXXXXXXX)
224 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
228 while (i<cant_header) {
229 /* Verifico la pos_actual para el resaltado, asi queda coherente
230 * en el cambio de formato
232 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
233 (*pos_actual) = tmp1-salida;
236 /* Pongo el ID del registro */
237 sprintf(tmp1, "(%08d)", *((unsigned int *)tmp));
239 tmp += sizeof(unsigned int);
240 /* Pongo el campo numero del registro */
241 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
243 tmp += sizeof(unsigned int);
245 while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
263 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
264 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
268 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
270 EMUFS_REG_SIZE offset, curr_size;
271 char *tmp, *salida, *tmp1, pos_actualizada, ant;
272 int cant_header, i=0, j;
273 if (ptr == NULL) return NULL;
275 /* Cuento la cantidad de registros en este bloque */
279 /* Me salto el ID, que no me interesa saber su valor */
280 offset += sizeof(EMUFS_REG_ID);
281 /* Copio el tamaño del registro de la cabecera. */
282 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
283 offset += sizeof(EMUFS_REG_SIZE);
285 /* Desplazo el offset */
286 if (curr_size == 0) {
287 /* Si el tamaño de registro es 0, quiere decir que llegue a la
288 * parte que esta vacia */
294 } while (offset < (*size));
297 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
301 while (i<cant_header) {
302 /* Verifico la pos_actual para el resaltado, asi queda coherente
303 * en el cambio de formato
305 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
306 (*pos_actual) = tmp1-salida;
309 /* Pongo el ID del registro */
310 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
312 tmp += sizeof(EMUFS_REG_ID);
313 /* Pongo el tamaño del registro */
314 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
315 curr_size = *((EMUFS_REG_SIZE *)tmp);
316 if (pos_actualizada == 1) {
317 (*ancho) = curr_size-sizeof(unsigned int)+30;
321 tmp += sizeof(EMUFS_REG_SIZE);
322 /* Pongo el campo numero del registro */
323 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
325 tmp += sizeof(unsigned int);
326 j = sizeof(unsigned int);;
327 while (j < curr_size) {
345 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;