7 /* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
8 static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
9 static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
11 static char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
12 static char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
14 static int preguntar_id(WINDOW *win, EMUFS *fp);
16 void mostrar_info(WINDOW *padre, int h, int offset_alto)
19 wattron(padre, A_BOLD);
20 wattron(padre, COLOR_PAIR(COLOR_RED));
21 mvwaddstr(padre, h-offset_alto+1, 5, "Teclas :");
22 wattroff(padre, A_BOLD);
23 wattroff(padre, COLOR_PAIR(COLOR_RED));
24 mvwaddstr(padre, h-offset_alto+2, 8, "Salir = ENTER");
25 mvwaddstr(padre, h-offset_alto+3, 8, "Scroll = A/Z");
26 mvwaddstr(padre, h-offset_alto+4, 8, "Seleccionar registros = K/L");
27 mvwaddstr(padre, h-offset_alto+5, 8, "Acciones: ");
29 wattron(padre, A_BOLD);
31 wattroff(padre, A_BOLD);
32 waddstr(padre, "regar ");
33 wattron(padre, A_BOLD);
35 wattroff(padre, A_BOLD);
36 waddstr(padre, "ofidicar ");
37 wattron(padre, A_BOLD);
39 wattroff(padre, A_BOLD);
40 waddstr(padre, "liminar ");
41 mvwaddstr(padre, h-offset_alto+6, 8, "Buscar ID : B");
44 wattron(padre, A_BOLD);
45 wattron(padre, COLOR_PAIR(COLOR_RED));
46 mvwaddstr(padre, h-offset_alto+1, 45, "Leyenda :");
47 wattroff(padre, A_BOLD);
48 wattroff(padre, COLOR_PAIR(COLOR_RED));
49 mvwaddstr(padre, h-offset_alto+2, 48, " | = Separador de campo");
50 mvwaddstr(padre, h-offset_alto+3, 48, "[XXX] = Campo numerico");
51 mvwaddstr(padre, h-offset_alto+4, 48, "(XXX) = ID de registro");
52 mvwaddstr(padre, h-offset_alto+5, 48, "{XXX} = Tam. de registro");
53 mvwaddstr(padre, h-offset_alto+6, 48, " . = Esp. Libre");
54 mvwaddstr(padre, h-offset_alto+7, 48, " < > = Separador Bloques");
57 void ver_registros(WINDOW *padre, int w, int h, int cual)
59 /* Ventanas donde mostrar las cosas */
60 char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
61 WINDOW *actual[2], *dlg;
63 int scroll, actual_ancho;
64 int max_scroll, c, offset_alto;
65 /* Indices que hay validos en IDX */
66 EMUFS_REG_ID *indices, indices_total, indices_actual;
67 char *data; /* Registros a mostrar en pantalla */
68 char codigo[50]; /* Variable para guardar el codigo actual para mandar a modificar */
70 int pos_actual, ancho_registro, offset, pos;
73 fp = emufs_abrir("articulos");
75 fp = emufs_abrir("facturas");
77 wattron(padre, COLOR_PAIR(COLOR_BLUE));
78 mvwaddstr(padre, 0, 0, "Tipo de archivo : ");
79 wattroff(padre, COLOR_PAIR(COLOR_BLUE));
82 waddstr(padre, "Registro variable con bloque parametrizado.");
84 procesar = procesar_registro_articulo_tipo1;
86 procesar = procesar_registro_factura_tipo1;
89 waddstr(padre, "Registro variable sin bloques.");
93 procesar = procesar_registro_articulo_tipo3;
95 procesar = procesar_registro_factura_tipo3;
96 waddstr(padre, "Registro fijo con bloque parametrizado.");
99 indices = emufs_idx_get(fp, &indices_total);
103 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
104 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
109 max_scroll = size / (w-4) - (h-offset_alto-2);
110 if (max_scroll < 0) max_scroll = 0;
112 actual[0] = derwin(padre, h-offset_alto, w-2, 1, 1);
114 actual[1] = derwin(actual[0], h-offset_alto-2, w-4, 1, 1);
115 box(actual[0], 0, 0);
119 mostrar_info(padre, h, offset_alto);
121 mvwaddnstr(actual[1], 0, 0, data, pos_actual);
122 wattron(actual[1], A_BOLD);
123 waddnstr(actual[1], data+pos_actual, ancho_registro);
124 wattroff(actual[1], A_BOLD);
125 waddnstr(actual[1], data+pos_actual+ancho_registro, size-(pos_actual+ancho_registro));
131 while ((c=getch()) != 13) {
135 dlg = newwin(4, 50, h/2-2, w/2-25);
137 preguntar_id(dlg, fp);
146 if (indices_actual != EMUFS_NOT_FOUND)
147 fp->borrar_registro(fp, indices[indices_actual]);
150 indices = emufs_idx_get(fp, &indices_total);
151 if (indices_actual >= indices_total) {
152 indices_actual = indices_total - 1;
155 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
156 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
165 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
166 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
169 indices = emufs_idx_get(fp, &indices_total);
171 /* Tengo que re-pintar algunas cosas */
172 mostrar_info(padre, h, offset_alto);
173 box(actual[0], 0, 0);
177 case 'm': /* Quiero editar !!! */
178 sprintf(codigo, "%lu", indices[indices_actual]);
180 art_modificar(codigo);
182 fact_modificar(codigo);
183 /* Vuelvo a cargar el articulo actual */
186 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
187 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
189 /* Tengo que re-pintar algunas cosas */
190 mostrar_info(padre, h, offset_alto);
191 box(actual[0], 0, 0);
194 case 'a': /* Scroll */
196 if (scroll < 0) scroll = 0;
198 case 'z': /* Scroll */
200 if (scroll > max_scroll) scroll = max_scroll;
203 if (indices_actual < indices_total) {
205 if (indices_actual >= indices_total) indices_actual = indices_total-1;
206 if (data) free(data);
207 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
208 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
212 if (indices_actual != EMUFS_NOT_FOUND) {
214 if (indices_actual == EMUFS_NOT_FOUND) indices_actual = 0;
215 if (data) free(data);
216 data = (char *)fp->leer_registro_raw(fp, indices[indices_actual], &size, &pos_actual);
217 data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
221 /* Borro las ventanas */
224 /* Imprimo los registros */
226 offset = scroll*actual_ancho;
227 pos = pos_actual - offset;
228 mvwaddnstr(actual[1], 0, 0, data+offset, pos);
230 wattron(actual[1], A_BOLD);
231 waddnstr(actual[1], data+offset, ancho_registro);
232 wattroff(actual[1], A_BOLD);
233 offset += ancho_registro;
234 waddnstr(actual[1], data+offset, size-offset);
240 if (indices) free(indices);
241 if (data) free(data);
249 char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
251 char *tmp, *salida, *tmp1, pos_actualizada, ant;
252 int cant_header, i=0, j, tam_data;
253 if (ptr == NULL) return NULL;
255 /* Calculo cuantos headers de registros va a haber en el archivo */
256 if (emu->tam_bloque > emu->tam_reg) {
257 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
258 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
259 tam_data = sizeof(t_Articulo)-sizeof(unsigned int);
262 tam_data = *size - sizeof(EMUFS_REG_ID)-sizeof(unsigned int);
265 /* El tamaño del nuevo array lo calculo asi :
267 * tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
268 * + 10*(cant_headers+cant_registros) +1
270 * En tipo3, la cantidad de headers y cant de registros es la misma
271 * El 10 es por : (XXXXXXXX)
274 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
275 if (salida == NULL) {
276 fprintf(stderr, "Error de malloc en salida\n");
282 while (i<cant_header) {
283 fprintf(stderr, "voy a hacer el %d de %d\n", i, cant_header);
284 /* Verifico la pos_actual para el resaltado, asi queda coherente
285 * en el cambio de formato
287 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
288 (*pos_actual) = tmp1-salida;
291 /* Pongo el ID del registro */
292 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
293 fprintf(stderr, "ID=%lu\n",*((EMUFS_REG_ID *)tmp) );
295 tmp += sizeof(EMUFS_REG_ID);
296 /* Pongo el campo numero del registro */
297 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
298 fprintf(stderr, "Numero=%d\n",*((unsigned int *)tmp) );
300 tmp += sizeof(unsigned int);
302 while (j < (tam_data)) {
320 if (emu->tam_bloque > emu->tam_reg) {
321 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
322 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
324 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
327 memset(tmp1, '.', (*size)-(tmp1-salida));
328 salida[*size-1] = '\0';
333 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
335 EMUFS_REG_SIZE offset, curr_size;
336 char *tmp, *salida, *tmp1, pos_actualizada, ant;
337 int cant_header, i=0, j;
338 if (ptr == NULL) return NULL;
340 /* Cuento la cantidad de registros en este bloque */
343 fprintf(stderr, "Tam = %lu\n", *size);
345 /* Me salto el ID, que no me interesa saber su valor */
346 offset += sizeof(EMUFS_REG_ID);
347 /* Copio el tamaño del registro de la cabecera. */
348 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
349 offset += sizeof(EMUFS_REG_SIZE);
351 /* Desplazo el offset */
352 if (curr_size == 0) {
353 /* Si el tamaño de registro es 0, quiere decir que llegue a la
354 * parte que esta vacia */
359 fprintf(stderr, "Sume %lu\n", curr_size);
361 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
364 fprintf(stderr, "Cantidad de headers = %d\n", cant_header);
365 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
369 while (i<cant_header) {
370 /* Verifico la pos_actual para el resaltado, asi queda coherente
371 * en el cambio de formato
373 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
374 (*pos_actual) = tmp1-salida;
377 /* Pongo el ID del registro */
378 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
380 tmp += sizeof(EMUFS_REG_ID);
381 /* Pongo el tamaño del registro */
382 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
383 curr_size = *((EMUFS_REG_SIZE *)tmp);
384 if (pos_actualizada == 1) {
385 (*ancho) = curr_size-sizeof(unsigned int)+30;
389 tmp += sizeof(EMUFS_REG_SIZE);
390 /* Pongo el campo numero del registro */
391 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
393 tmp += sizeof(unsigned int);
394 j = sizeof(unsigned int);
396 fprintf(stderr, "son %lu\n", curr_size);
397 while (j < curr_size) {
411 PERR("Y hasta todo bien");
414 /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
415 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
416 memset(tmp1, '.', (*size)-(tmp1-salida));
418 salida[*size-1] = '\0';
423 int preguntar_id(WINDOW *win, EMUFS *fp)
426 t_Form *form = form_crear(win);
427 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
432 wattron(win, COLOR_PAIR(COLOR_YELLOW));
433 wattron(win, A_BOLD);
434 mvwaddstr(win, 2, 1, "Registro no encontrado!!");
435 wattroff(win, A_BOLD);
436 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
442 form_ejecutar(form, 1,1);
444 n = form_obtener_valor_int(form, "ID a buscar");
446 } while (emufs_idx_existe_id(fp, n) != 0);
452 char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
454 char *tmp, *salida, *tmp1, pos_actualizada, ant;
456 int cant_header, i=0, j, tam_data, k;
458 if (ptr == NULL) return NULL;
460 PERR("Empieza el baile");
462 /* Calculo cuantos headers de registros va a haber en el archivo */
463 if (emu->tam_bloque > emu->tam_reg) {
464 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
465 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
466 tam_data = emu->tam_reg-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
469 tam_data = (*size) - sizeof(EMUFS_REG_ID)-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
472 fprintf(stderr, "Tengo %d headers\n", cant_header);
473 /* El tamaño del nuevo array lo calculo asi :
476 tmp1 = salida = (char *)malloc(1000000); /*(*size)-(sizeof(char *)+sizeof(t_Item *)+sizeof(EMUFS_REG_ID)+sizeof(int)*3+sizeof(float)+sizeof(EMUFS_BLOCK_ID))*cant_header + 5*cant_header*10+1);*/
477 if (salida == NULL) {
478 PERR("Error de malloc en salida");
484 while (i<cant_header) {
485 /* Verifico la pos_actual para el resaltado, asi queda coherente
486 * en el cambio de formato
488 fprintf(stderr, "%d == %d\n", tmp-ptr, *pos_actual);
489 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
490 (*pos_actual) = tmp1-salida;
493 /* Pongo el ID del registro */
494 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
496 tmp += sizeof(EMUFS_REG_ID);
497 /* Pongo el campo numero */
498 sprintf(tmp1, "[%08d]", *((int *)tmp));
501 /* Pongo campo procdoi */
502 sprintf(flotante, "[%5.2f]", *((float *)tmp));
503 memcpy(tmp1, flotante, strlen(flotante));
504 tmp1 += strlen(flotante);
505 tmp += sizeof(float);
506 /* Pongo campo numero_remito */
507 sprintf(tmp1, "[%08d]", *((int *)tmp));
510 /* Pongo numero de items */
511 sprintf(tmp1, "[%08d]", *((int *)tmp));
512 cant_items = *((int *)tmp);
516 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
518 tmp += sizeof(EMUFS_BLOCK_ID);
520 if (pos_actualizada == 1) {
521 (*ancho) = 50+strlen(flotante);
524 while (j < (tam_data-10*sizeof(t_Item))) {
537 if (pos_actualizada == 1)
541 /* Ahora proceso los items */
544 sprintf(tmp1, "[%08d]", *((int *)tmp));
547 if (pos_actualizada == 1)
550 while (j < (sizeof(t_Item)-sizeof(int))) {
563 if (pos_actualizada == 1)
569 if (pos_actualizada == 1)
576 if (emu->tam_bloque > emu->tam_reg) {
577 (*size) = tmp1-salida;
579 (*size) = tmp1-salida;
580 (*ancho) = tmp1-salida;
582 salida[*size-1] = '\0';
587 char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
589 char *tmp, *salida, *tmp1, pos_actualizada, ant;
590 EMUFS_REG_SIZE offset, curr_size;
592 int cant_header, i=0, j, tam_data, k;
594 if (ptr == NULL) return NULL;
596 PERR("Empieza el baile");
600 /* Me salto el ID, que no me interesa saber su valor */
601 offset += sizeof(EMUFS_REG_ID);
602 /* Copio el tamaño del registro de la cabecera. */
603 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
604 offset += sizeof(EMUFS_REG_SIZE);
606 /* Desplazo el offset */
607 if (curr_size == 0) {
608 /* Si el tamaño de registro es 0, quiere decir que llegue a la
609 * parte que esta vacia */
615 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
617 fprintf(stderr, "Tengo %d headers\n", cant_header);
618 /* El tamaño del nuevo array lo calculo asi :
621 tmp1 = salida = (char *)malloc(1000000); /*(*size)-(sizeof(char *)+sizeof(t_Item *)+sizeof(EMUFS_REG_ID)+sizeof(int)*3+sizeof(float)+sizeof(EMUFS_BLOCK_ID))*cant_header + 5*cant_header*10+1);*/
622 if (salida == NULL) {
623 PERR("Error de malloc en salida");
630 while (i<cant_header) {
631 fprintf(stderr, "Voy a hacer el %d de %d\n", i, cant_header);
632 /* Verifico la pos_actual para el resaltado, asi queda coherente
633 * en el cambio de formato
635 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
636 (*pos_actual) = tmp1-salida;
639 /* Pongo el ID del registro */
640 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
642 tmp += sizeof(EMUFS_REG_ID);
643 /* Cantidad de espacio que ocupa la data */
644 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
645 tam_data = *((EMUFS_REG_SIZE *)tmp) - sizeof(int)*3 - sizeof(float) - sizeof(EMUFS_BLOCK_ID);
647 tmp += sizeof(EMUFS_REG_SIZE);
648 /* Pongo el campo numero */
649 sprintf(tmp1, "[%08d]", *((int *)tmp));
652 /* Pongo campo procdoi */
653 sprintf(flotante, "[%5.2f]", *((float *)tmp));
654 memcpy(tmp1, flotante, strlen(flotante));
655 tmp1 += strlen(flotante);
656 tmp += sizeof(float);
657 /* Pongo campo numero_remito */
658 sprintf(tmp1, "[%08d]", *((int *)tmp));
661 /* Pongo numero de items */
662 sprintf(tmp1, "[%08d]", *((int *)tmp));
663 cant_items = *((int *)tmp);
667 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
669 tmp += sizeof(EMUFS_BLOCK_ID);
671 if (pos_actualizada == 1) {
672 (*ancho) = 60+strlen(flotante);
675 PERR("Voy por la data");
676 fprintf(stderr, "Tam = %d , items = %d\n", tam_data, cant_items);
677 while (j < (tam_data-cant_items*sizeof(t_Item))) {
690 if (pos_actualizada == 1)
694 /* Ahora proceso los items */
696 fprintf(stderr, "ahora por los %d items\n", cant_items);
697 while (k < cant_items) {
698 sprintf(tmp1, "[%08d]", *((int *)tmp));
701 if (pos_actualizada == 1)
704 while (j < (sizeof(t_Item)-sizeof(int))) {
717 if (pos_actualizada == 1)
723 if (pos_actualizada == 1)
731 if (emu->tam_bloque > emu->tam_reg) {
732 (*size) = tmp1-salida;
734 (*size) = tmp1-salida;
735 (*ancho) = tmp1-salida;
737 salida[*size-1] = '\0';