#include "articulos.h"
/* Se encarga de reemplazar los \0 un caracter visual, y segurar un \0 al final */
-static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual);
+static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
+static char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho);
#define ACT 0
#define ANT 1
void ver_registros(WINDOW *padre, int w, int h)
{
/* Ventanas donde mostrar las cosas */
+ char *(*procesar)(EMUFS*, char*, EMUFS_REG_SIZE*, int*, int*);
WINDOW *actual[2];
EMUFS_REG_SIZE size;
int scroll, actual_ancho;
EMUFS *fp;
int pos_actual, ancho_registro, offset, pos;
fp = emufs_abrir("articulos");
+ switch (fp->tipo) {
+ case T1:
+ case T2:
+ procesar = procesar_registro_articulo_tipo1;
+ break;
+ case T3:
+ procesar = procesar_registro_articulo_tipo3;
+ }
total_indice = emufs_idx_get_count(fp);
ant_indice = 1;
data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
- data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
+ data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
- ancho_registro = sizeof(t_Articulo)-sizeof(unsigned int)*2+20;
max_scroll = size / (w-4) - (h-8);
if (max_scroll < 0) max_scroll = 0;
}
data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
- data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
+ data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
break;
case 'g':
case 'G':
art_agregar(NULL);
free(data);
data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
- data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
+ data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
total_indice = emufs_idx_get_count(fp);
free(data);
data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
- data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
+ data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
/* Tengo que re-pintar algunas cosas */
wattron(padre, A_BOLD);
if (ant_indice >= total_indice) ant_indice = total_indice-1;
if (data) free(data);
data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
- data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
+ data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
}
break;
case 'k':
if (ant_indice == EMUFS_NOT_FOUND) ant_indice = 0;
if (data) free(data);
data = (char *)fp->leer_registro_raw(fp, emufs_idx_get_id_at(fp, ant_indice), &size, &pos_actual);
- data = procesar_registro_articulo_tipo3(fp, data, &size, &pos_actual);
+ data = procesar(fp, data, &size, &pos_actual, &ancho_registro);
}
}
curs_set(1);
}
-char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual)
+char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
{
char *tmp, *salida, *tmp1, pos_actualizada, ant;
int cant_header, i=0, j;
/* Calculo cuantos headers de registros va a haber en el archivo */
cant_header = emu->tam_bloque / (emu->tam_reg+sizeof(EMUFS_REG_ID));
+ if (cant_header == 0) cant_header++; /* Si tam_reg > tam_bloque, voy a tener solo 1 header */
+
/* El tamaño del nuevo array lo calculo asi :
*
* tamañoviejo - tamaño_headers_en_int - tamaño_ints_en_registro
free(ptr);
(*tmp1) = '\0';
(*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
+ (*ancho) = sizeof(t_Articulo)-sizeof(unsigned int)*2+10;
+ return salida;
+}
+
+char *procesar_registro_articulo_tipo1(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *size, int *pos_actual, int *ancho)
+{
+ EMUFS_REG_SIZE offset, curr_size;
+ char *tmp, *salida, *tmp1, pos_actualizada, ant;
+ int cant_header, i=0, j;
+ if (ptr == NULL) return NULL;
+
+ /* Cuento la cantidad de registros en este bloque */
+ cant_header = 0;
+ offset = 0;
+ do {
+ /* Me salto el ID, que no me interesa saber su valor */
+ offset += sizeof(EMUFS_REG_ID);
+ /* Copio el tamaño del registro de la cabecera. */
+ memcpy(&curr_size, ptr + offset, sizeof(EMUFS_REG_SIZE));
+ offset += sizeof(EMUFS_REG_SIZE);
+
+ /* Desplazo el offset */
+ if (curr_size == 0) {
+ /* Si el tamaño de registro es 0, quiere decir que llegue a la
+ * parte que esta vacia */
+ break;
+ } else {
+ cant_header++;
+ offset += curr_size;
+ }
+ } while (offset < (*size));
+
+ /* Proceso */
+ salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*3 + 3*cant_header*10+1);
+ tmp = ptr;
+ tmp1 = salida;
+ pos_actualizada = 0;
+ while (i<cant_header) {
+ /* Verifico la pos_actual para el resaltado, asi queda coherente
+ * en el cambio de formato
+ */
+ if (((tmp - ptr) == *pos_actual) && (!pos_actualizada)) {
+ (*pos_actual) = tmp1-salida;
+ pos_actualizada = 1;
+ }
+ /* Pongo el ID del registro */
+ sprintf(tmp1, "(%08lu)", *((EMUFS_REG_ID *)tmp));
+ tmp1 += 10;
+ tmp += sizeof(EMUFS_REG_ID);
+ /* Pongo el tamaño del registro */
+ sprintf(tmp1, "{%08lu}", *((EMUFS_REG_SIZE *)tmp));
+ curr_size = *((EMUFS_REG_SIZE *)tmp);
+ if (pos_actualizada == 1) {
+ (*ancho) = curr_size-sizeof(unsigned int)+30;
+ pos_actualizada = 2;
+ }
+ tmp1 += 10;
+ tmp += sizeof(EMUFS_REG_SIZE);
+ /* Pongo el campo numero del registro */
+ sprintf(tmp1, "[%08d]", *((unsigned int *)tmp));
+ tmp1 += 10;
+ tmp += sizeof(unsigned int);
+ j = sizeof(unsigned int);;
+ while (j < curr_size) {
+ if (*tmp == '\0') {
+ if (ant == (*tmp))
+ (*tmp1) = '.';
+ else
+ (*tmp1) = '|';
+ } else {
+ (*tmp1) = (*tmp);
+ }
+ ant = (*tmp);
+ tmp++;
+ tmp1++;
+ j++;
+ }
+ i++;
+ }
+ free(ptr);
+ (*tmp1) = '\0';
+ (*size) = (*size)-sizeof(unsigned int)*cant_header*3+3*cant_header*10+1;
+
return salida;
}
+