6 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
7 static char *procesar_registro_articulo(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual);
13 void ver_registros(WINDOW *padre, int w, int h)
15 /* Ventanas donde mostrar las cosas */
18 int scroll, actual_ancho;
20 EMUFS_REG_ID ant_indice, total_indice; /* Indice de registro que tengo en ANT */
21 char *data; /* Registros a mostrar en pantalla */
22 char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
24 int pos_actual, ancho_registro, offset, pos;
25 fp = emufs_abrir("articulos");
27 total_indice = emufs_idx_get_count(fp);
30 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
31 data = procesar_registro_articulo(fp, data, &size, &pos_actual);
33 ancho_registro = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
35 max_scroll = size / (w-4) - (h-8);
36 if (max_scroll < 0) max_scroll = 0;
38 actual[0] = derwin(padre, h-6, w-2, 1, 1);
40 actual[1] = derwin(actual[0], h-8, w-4, 1, 1);
46 wattron(padre, A_BOLD);
47 wattron(padre, COLOR_PAIR(COLOR_RED));
48 mvwaddstr(padre, h-5, 5, "Teclas :");
49 wattroff(padre, A_BOLD);
50 wattroff(padre, COLOR_PAIR(COLOR_RED));
51 mvwaddstr(padre, h-4, 8, "Salir = ENTER");
52 mvwaddstr(padre, h-3, 8, "Scroll = A/Z");
53 mvwaddstr(padre, h-2, 8, "Seleccionar registros = K/L");
54 mvwaddstr(padre, h-1, 8, "Acciones: ");
56 wattron(padre, A_BOLD);
58 wattroff(padre, A_BOLD);
59 waddstr(padre, "regar ");
60 wattron(padre, A_BOLD);
62 wattroff(padre, A_BOLD);
63 waddstr(padre, "ofidicar ");
64 wattron(padre, A_BOLD);
66 wattroff(padre, A_BOLD);
67 waddstr(padre, "liminar ");
70 wattron(padre, A_BOLD);
71 wattron(padre, COLOR_PAIR(COLOR_RED));
72 mvwaddstr(padre, h-5, 35, "Leyenda :");
73 wattroff(padre, A_BOLD);
74 wattroff(padre, COLOR_PAIR(COLOR_RED));
75 mvwaddstr(padre, h-4, 38, "| = Separador de campo");
76 mvwaddstr(padre, h-3, 38, "[XXX] = Campo numerico");
77 mvwaddstr(padre, h-2, 38, "(XXX) = ID de registro");
79 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
80 wattron(actual[1], A_BOLD);
81 waddnstr(actual[1], data+pos_actual, ancho_registro);
82 wattroff(actual[1], A_BOLD);
83 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
89 while ((c=getch()) != 13) {
93 fp->borrar_registro(fp, emufs_idx_get_id_at(fp, ant_indice));
94 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
95 data = procesar_registro_articulo(fp, data, &size, &pos_actual);
97 total_indice = emufs_idx_get_count(fp);
98 if (ant_indice >= total_indice) {
99 ant_indice = total_indice - 1;
106 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
107 data = procesar_registro_articulo(fp, data, &size, &pos_actual);
109 total_indice = emufs_idx_get_count(fp);
111 /* Tengo que re-pintar algunas cosas */
112 wattron(padre, A_BOLD);
113 wattron(padre, COLOR_PAIR(COLOR_RED));
114 mvwaddstr(padre, h-5, 5, "Teclas :");
115 mvwaddstr(padre, h-5, 35, "Leyenda :");
116 wattroff(padre, A_BOLD);
117 wattroff(padre, COLOR_PAIR(COLOR_RED));
118 mvwaddstr(padre, h-4, 38, "| = Separador de campo");
119 mvwaddstr(padre, h-4, 8, "Salir = ENTER");
120 box(actual[0], 0, 0);
124 case 'm': /* Quiero editar !!! */
125 sprintf(codigo, "%lu", emufs_idx_get_id_at(fp, ant_indice));
126 art_modificar(codigo);
127 /* Vuelvo a cargar el articulo actual */
130 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
131 data = procesar_registro_articulo(fp, data, &size, &pos_actual);
133 /* Tengo que re-pintar algunas cosas */
134 wattron(padre, A_BOLD);
135 wattron(padre, COLOR_PAIR(COLOR_RED));
136 mvwaddstr(padre, h-5, 5, "Teclas :");
137 mvwaddstr(padre, h-5, 35, "Leyenda :");
138 wattroff(padre, A_BOLD);
139 wattroff(padre, COLOR_PAIR(COLOR_RED));
140 mvwaddstr(padre, h-4, 38, "| = Separador de campo");
141 mvwaddstr(padre, h-4, 8, "Salir = ENTER");
142 box(actual[0], 0, 0);
145 case 'a': /* Scroll */
147 if (scroll < 0) scroll = 0;
149 case 'z': /* Scroll */
151 if (scroll > max_scroll) scroll = max_scroll;
154 if (ant_indice < total_indice) {
156 if (ant_indice >= total_indice) ant_indice = total_indice-1;
157 if (data) free(data);
158 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
159 data = procesar_registro_articulo(fp, data, &size, &pos_actual);
163 if (ant_indice != EMUFS_NOT_FOUND) {
165 if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0;
166 if (data) free(data);
167 data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
168 data = procesar_registro_articulo(fp, data, &size, &pos_actual);
172 /* Borro las ventanas */
175 /* Imprimo los registros */
177 offset = scroll*actual_ancho;
178 pos = pos_actual - offset;
179 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
181 wattron(actual[1], A_BOLD);
182 waddnstr(actual[1], data+offset, ancho_registro);
183 wattroff(actual[1], A_BOLD);
184 offset += ancho_registro;
185 waddnstr(actual[1], data+offset, size-offset);
197 static char *procesar_registro_articulo(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual)
199 char *tmp, *salida, *tmp1, pos_actualizada;
200 int cant_header, i=0, j;
201 if (ptr == NULL) return NULL;
203 /* Calculo cuantos headers de registros va a haber en el archivo */
204 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
205 /* El tamaño del nuevo array lo calculo asi :
207 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
208 * + 10*(cant_headers+cant_registros) +1
210 * En tipo3, la cantidad de headers y cant de registros es la misma
211 * El 10 es por : (XXXXXXXX)
214 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
218 while (i<cant_header) {
219 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
220 (*pos_actual) = tmp1-salida;
223 /* Pongo el ID del registro */
224 sprintf(tmp1, "(%08d)", *((unsigned int *)tmp));
226 tmp += sizeof(unsigned int);
227 /* Pongo el campo numero del registro */
228 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
230 tmp += sizeof(unsigned int);
232 while (j < (sizeof(t_Articulo)-sizeof(unsigned int))) {
246 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;