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) {
281 while (i<cant_header) {
282 /* Verifico la pos_actual para el resaltado, asi queda coherente
283 * en el cambio de formato
285 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
286 (*pos_actual) = tmp1-salida;
289 /* Pongo el ID del registro */
290 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
292 tmp += sizeof(EMUFS_REG_ID);
293 /* Pongo el campo numero del registro */
294 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
296 tmp += sizeof(unsigned int);
298 while (j < (tam_data)) {
316 if (emu->tam_bloque > emu->tam_reg) {
317 (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
318 (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+20+1;
320 (*size) = (*size)-sizeof(EMUFS_REG_ID)-sizeof(unsigned int)+21;
323 memset(tmp1, '.', (*size)-(tmp1-salida));
324 salida[*size-1] = '\0';
329 char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
331 EMUFS_REG_SIZE offset, curr_size;
332 char *tmp, *salida, *tmp1, pos_actualizada, ant;
333 int cant_header, i=0, j;
334 if (ptr == NULL) return NULL;
336 /* Cuento la cantidad de registros en este bloque */
340 /* Me salto el ID, que no me interesa saber su valor */
341 offset += sizeof(EMUFS_REG_ID);
342 /* Copio el tamaño del registro de la cabecera. */
343 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
344 offset += sizeof(EMUFS_REG_SIZE);
346 /* Desplazo el offset */
347 if (curr_size == 0) {
348 /* Si el tamaño de registro es 0, quiere decir que llegue a la
349 * parte que esta vacia */
355 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
358 salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
362 while (i<cant_header) {
363 /* Verifico la pos_actual para el resaltado, asi queda coherente
364 * en el cambio de formato
366 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
367 (*pos_actual) = tmp1-salida;
370 /* Pongo el ID del registro */
371 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
373 tmp += sizeof(EMUFS_REG_ID);
374 /* Pongo el tamaño del registro */
375 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
376 curr_size = *((EMUFS_REG_SIZE *)tmp);
377 if (pos_actualizada == 1) {
378 (*ancho) = curr_size-sizeof(unsigned int)+30;
382 tmp += sizeof(EMUFS_REG_SIZE);
383 /* Pongo el campo numero del registro */
384 sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
386 tmp += sizeof(unsigned int);
387 j = sizeof(unsigned int);
389 while (j < curr_size) {
403 PERR("Y hasta todo bien");
406 /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
407 (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
408 memset(tmp1, '.', (*size)-(tmp1-salida));
410 salida[*size-1] = '\0';
415 int preguntar_id(WINDOW *win, EMUFS *fp)
418 t_Form *form = form_crear(win);
419 form_agregar_widget(form, INPUT, "ID a buscar", 8, "");
424 wattron(win, COLOR_PAIR(COLOR_YELLOW));
425 wattron(win, A_BOLD);
426 mvwaddstr(win, 2, 1, "Registro no encontrado!!");
427 wattroff(win, A_BOLD);
428 wattroff(win, COLOR_PAIR(COLOR_YELLOW));
434 form_ejecutar(form, 1,1);
436 n = form_obtener_valor_int(form, "ID a buscar");
438 } while (emufs_idx_existe_id(fp, n) != 0);
444 char *procesar_registro_factura_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
446 char *tmp, *salida, *tmp1, pos_actualizada, ant;
448 int cant_header, i=0, j, tam_data, k;
450 if (ptr == NULL) return NULL;
452 PERR("Empieza el baile");
454 /* Calculo cuantos headers de registros va a haber en el archivo */
455 if (emu->tam_bloque > emu->tam_reg) {
456 cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
457 if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
458 tam_data = emu->tam_reg-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
461 tam_data = (*size) - sizeof(EMUFS_REG_ID)-sizeof(int)*3-sizeof(float)-sizeof(EMUFS_BLOCK_ID);
464 /* El tamaño del nuevo array lo calculo asi :
467 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);*/
468 if (salida == NULL) {
469 PERR("Error de malloc en salida");
475 while (i<cant_header) {
476 /* Verifico la pos_actual para el resaltado, asi queda coherente
477 * en el cambio de formato
479 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
480 (*pos_actual) = tmp1-salida;
483 /* Pongo el ID del registro */
484 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
486 tmp += sizeof(EMUFS_REG_ID);
487 /* Pongo el campo numero */
488 sprintf(tmp1, "[%08d]", *((int *)tmp));
491 /* Pongo campo procdoi */
492 sprintf(flotante, "[%5.2f]", *((float *)tmp));
493 memcpy(tmp1, flotante, strlen(flotante));
494 tmp1 += strlen(flotante);
495 tmp += sizeof(float);
496 /* Pongo campo numero_remito */
497 sprintf(tmp1, "[%08d]", *((int *)tmp));
500 /* Pongo numero de items */
501 sprintf(tmp1, "[%08d]", *((int *)tmp));
502 cant_items = *((int *)tmp);
506 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
508 tmp += sizeof(EMUFS_BLOCK_ID);
510 if (pos_actualizada == 1) {
511 (*ancho) = 50+strlen(flotante);
514 while (j < (tam_data-10*sizeof(t_Item))) {
527 if (pos_actualizada == 1)
531 /* Ahora proceso los items */
534 sprintf(tmp1, "[%08d]", *((int *)tmp));
537 if (pos_actualizada == 1)
540 while (j < (sizeof(t_Item)-sizeof(int))) {
553 if (pos_actualizada == 1)
559 if (pos_actualizada == 1)
566 if (emu->tam_bloque > emu->tam_reg) {
567 (*size) = tmp1-salida;
569 (*size) = tmp1-salida;
570 (*ancho) = tmp1-salida;
572 salida[*size-1] = '\0';
577 char *procesar_registro_factura_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
579 char *tmp, *salida, *tmp1, pos_actualizada, ant;
580 EMUFS_REG_SIZE offset, curr_size;
582 int cant_header, i=0, j, tam_data, k;
584 if (ptr == NULL) return NULL;
586 PERR("Empieza el baile");
590 /* Me salto el ID, que no me interesa saber su valor */
591 offset += sizeof(EMUFS_REG_ID);
592 /* Copio el tamaño del registro de la cabecera. */
593 memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
594 offset += sizeof(EMUFS_REG_SIZE);
596 /* Desplazo el offset */
597 if (curr_size == 0) {
598 /* Si el tamaño de registro es 0, quiere decir que llegue a la
599 * parte que esta vacia */
605 } while (offset+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
607 /* El tamaño del nuevo array lo calculo asi :
610 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);*/
611 if (salida == NULL) {
612 PERR("Error de malloc en salida");
619 while (i<cant_header) {
620 /* Verifico la pos_actual para el resaltado, asi queda coherente
621 * en el cambio de formato
623 if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
624 (*pos_actual) = tmp1-salida;
627 /* Pongo el ID del registro */
628 sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
630 tmp += sizeof(EMUFS_REG_ID);
631 /* Cantidad de espacio que ocupa la data */
632 sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
633 tam_data = *((EMUFS_REG_SIZE *)tmp) - sizeof(int)*3 - sizeof(float) - sizeof(EMUFS_BLOCK_ID);
635 tmp += sizeof(EMUFS_REG_SIZE);
636 /* Pongo el campo numero */
637 sprintf(tmp1, "[%08d]", *((int *)tmp));
640 /* Pongo campo procdoi */
641 sprintf(flotante, "[%5.2f]", *((float *)tmp));
642 memcpy(tmp1, flotante, strlen(flotante));
643 tmp1 += strlen(flotante);
644 tmp += sizeof(float);
645 /* Pongo campo numero_remito */
646 sprintf(tmp1, "[%08d]", *((int *)tmp));
649 /* Pongo numero de items */
650 sprintf(tmp1, "[%08d]", *((int *)tmp));
651 cant_items = *((int *)tmp);
655 sprintf(tmp1, "(%08lu)", *((EMUFS_BLOCK_ID*)tmp));
657 tmp += sizeof(EMUFS_BLOCK_ID);
659 if (pos_actualizada == 1) {
660 (*ancho) = 60+strlen(flotante);
663 PERR("Voy por la data");
664 while (j < (tam_data-cant_items*sizeof(t_Item))) {
677 if (pos_actualizada == 1)
681 /* Ahora proceso los items */
683 while (k < cant_items) {
684 sprintf(tmp1, "[%08d]", *((int *)tmp));
687 if (pos_actualizada == 1)
690 while (j < (sizeof(t_Item)-sizeof(int))) {
703 if (pos_actualizada == 1)
709 if (pos_actualizada == 1)
714 /* llego no . hasta el final */
715 while (tmp < (ptr+(*size))) {
723 if (emu->tam_bloque > emu->tam_reg) {
724 (*size) = tmp1-salida;
726 (*size) = tmp1-salida;
727 (*ancho) = tmp1-salida;
729 salida[*size-1] = '\0';