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);
14 void ver_registros(WINDOW *padre, int w, int h)
16 /* Ventanas donde mostrar las cosas */
17 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
20 int scroll, actual_ancho;
22 EMUFS_REG_ID ant_indice, total_indice; /* Indice de registro que tengo en ANT */
23 char *data; /* Registros a mostrar en pantalla */
24 char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
26 int pos_actual, ancho_registro, offset, pos;
27 fp = emufs_abrir("articulos");
31 procesar = procesar_registro_articulo_tipo1;
34 procesar = procesar_registro_articulo_tipo3;
37 total_indice = emufs_idx_get_count(fp);
40 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
41 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
44 max_scroll = size / (w-4) - (h-8);
45 if (max_scroll < 0) max_scroll = 0;
47 actual[0] = derwin(padre, h-6, w-2, 1, 1);
49 actual[1] = derwin(actual[0], h-8, w-4, 1, 1);
55 wattron(padre, A_BOLD);
56 wattron(padre, COLOR_PAIR(COLOR_RED));
57 mvwaddstr(padre, h-5, 5, "Teclas :");
58 wattroff(padre, A_BOLD);
59 wattroff(padre, COLOR_PAIR(COLOR_RED));
60 mvwaddstr(padre, h-4, 8, "Salir = ENTER");
61 mvwaddstr(padre, h-3, 8, "Scroll = A/Z");
62 mvwaddstr(padre, h-2, 8, "Seleccionar registros = K/L");
63 mvwaddstr(padre, h-1, 8, "Acciones: ");
65 wattron(padre, A_BOLD);
67 wattroff(padre, A_BOLD);
68 waddstr(padre, "regar ");
69 wattron(padre, A_BOLD);
71 wattroff(padre, A_BOLD);
72 waddstr(padre, "ofidicar ");
73 wattron(padre, A_BOLD);
75 wattroff(padre, A_BOLD);
76 waddstr(padre, "liminar ");
79 wattron(padre, A_BOLD);
80 wattron(padre, COLOR_PAIR(COLOR_RED));
81 mvwaddstr(padre, h-5, 35, "Leyenda :");
82 wattroff(padre, A_BOLD);
83 wattroff(padre, COLOR_PAIR(COLOR_RED));
84 mvwaddstr(padre, h-4, 38, "| = Separador de campo . = Libre");
85 mvwaddstr(padre, h-3, 38, "[XXX] = Campo numerico");
86 mvwaddstr(padre, h-2, 38, "(XXX) = ID de registro");
88 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
89 wattron(actual[1], A_BOLD);
90 waddnstr(actual[1], data+pos_actual, ancho_registro);
91 wattroff(actual[1], A_BOLD);
92 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
98 while ((c=getch()) != 13) {
102 fp->borrar_registro(fp, emufs_idx_get_id_at(fp, ant_indice));
104 total_indice = emufs_idx_get_count(fp);
105 if (ant_indice >= total_indice) {
106 ant_indice = total_indice - 1;
109 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
110 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
116 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
117 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
119 total_indice = emufs_idx_get_count(fp);
121 /* Tengo que re-pintar algunas cosas */
122 wattron(padre, A_BOLD);
123 wattron(padre, COLOR_PAIR(COLOR_RED));
124 mvwaddstr(padre, h-5, 5, "Teclas :");
125 mvwaddstr(padre, h-5, 35, "Leyenda :");
126 wattroff(padre, A_BOLD);
127 wattroff(padre, COLOR_PAIR(COLOR_RED));
128 mvwaddstr(padre, h-4, 38, "| = Separador de campo . = Libre");
129 mvwaddstr(padre, h-4, 8, "Salir = ENTER");
130 box(actual[0], 0, 0);
134 case 'm': /* Quiero editar !!! */
135 sprintf(codigo, "%lu", emufs_idx_get_id_at(fp, ant_indice));
136 art_modificar(codigo);
137 /* Vuelvo a cargar el articulo actual */
140 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
141 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
143 /* Tengo que re-pintar algunas cosas */
144 wattron(padre, A_BOLD);
145 wattron(padre, COLOR_PAIR(COLOR_RED));
146 mvwaddstr(padre, h-5, 5, "Teclas :");
147 mvwaddstr(padre, h-5, 35, "Leyenda :");
148 wattroff(padre, A_BOLD);
149 wattroff(padre, COLOR_PAIR(COLOR_RED));
150 mvwaddstr(padre, h-4, 38, "| = Separador de campo . = Libre");
151 mvwaddstr(padre, h-4, 8, "Salir = ENTER");
152 box(actual[0], 0, 0);
155 case 'a': /* Scroll */
157 if (scroll < 0) scroll = 0;
159 case 'z': /* Scroll */
161 if (scroll > max_scroll) scroll = max_scroll;
164 if (ant_indice < total_indice) {
166 if (ant_indice >= total_indice) ant_indice = total_indice-1;
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 if (ant_indice != EMUFS_NOT_FOUND) {
175 if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0;
176 if (data) free(data);
177 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
178 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
182 /* Borro las ventanas */
185 /* Imprimo los registros */
187 offset = scroll*actual_ancho;
188 pos = pos_actual - offset;
189 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
191 wattron(actual[1], A_BOLD);
192 waddnstr(actual[1], data+offset, ancho_registro);
193 wattroff(actual[1], A_BOLD);
194 offset += ancho_registro;
195 waddnstr(actual[1], data+offset, size-offset);
207 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
209 char *tmp, *salida, *tmp1, pos_actualizada, ant;
210 int cant_header, i=0, j;
211 if (ptr == NULL) return NULL;
213 /* Calculo cuantos headers de registros va a haber en el archivo */
214 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
215 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
217 /* El tamaño del nuevo array lo calculo asi :
219 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
220 * + 10*(cant_headers+cant_registros) +1
222 * En tipo3, la cantidad de headers y cant de registros es la misma
223 * El 10 es por : (XXXXXXXX)
226 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
230 while (i<cant_header) {
231 /* Verifico la pos_actual para el resaltado, asi queda coherente
232 * en el cambio de formato
234 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
235 (*pos_actual) = tmp1-salida;
238 /* Pongo el ID del registro */
239 sprintf(tmp1, "(%08d)", *((unsigned int *)tmp));
241 tmp += sizeof(unsigned int);
242 /* Pongo el campo numero del registro */
243 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
245 tmp += sizeof(unsigned int);
247 while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
265 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
266 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+10;
270 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
272 EMUFS_REG_SIZE offset, curr_size;
273 char *tmp, *salida, *tmp1, pos_actualizada, ant;
274 int cant_header, i=0, j;
275 if (ptr == NULL) return NULL;
277 /* Cuento la cantidad de registros en este bloque */
281 /* Me salto el ID, que no me interesa saber su valor */
282 offset += sizeof(EMUFS_REG_ID);
283 /* Copio el tamaño del registro de la cabecera. */
284 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
285 offset += sizeof(EMUFS_REG_SIZE);
287 /* Desplazo el offset */
288 if (curr_size == 0) {
289 /* Si el tamaño de registro es 0, quiere decir que llegue a la
290 * parte que esta vacia */
296 } while (offset < (*size));
299 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
303 while (i<cant_header) {
304 /* Verifico la pos_actual para el resaltado, asi queda coherente
305 * en el cambio de formato
307 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
308 (*pos_actual) = tmp1-salida;
311 /* Pongo el ID del registro */
312 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
314 tmp += sizeof(EMUFS_REG_ID);
315 /* Pongo el tamaño del registro */
316 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
317 curr_size = *((EMUFS_REG_SIZE *)tmp);
318 if (pos_actualizada == 1) {
319 (*ancho) = curr_size-sizeof(unsigned int)+30;
323 tmp += sizeof(EMUFS_REG_SIZE);
324 /* Pongo el campo numero del registro */
325 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
327 tmp += sizeof(unsigned int);
328 j = sizeof(unsigned int);;
329 while (j < curr_size) {
347 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;