]> git.llucax.com Git - z.facultad/75.06/emufs.git/commitdiff
* Se inicializa bloque en \0's al crear un nuevo bloque en tipo1
authorRicardo Markiewicz <gazer.arg@gmail.com>
Wed, 14 Apr 2004 20:38:41 +0000 (20:38 +0000)
committerRicardo Markiewicz <gazer.arg@gmail.com>
Wed, 14 Apr 2004 20:38:41 +0000 (20:38 +0000)
 * Ver registros ahora sirve tanto para tipo1 como para tipo3 (tipo1 no puede
 modificar ni borrar hasta que borrar_registro sea implementada)

emufs/tipo1.c
emufs_gui/registros.c

index 4ef7f76bceebc1fa89c5e3fc2ba6f1c4256b7615..769d7b24cf47bc4505adc24cd5b6bc9738eb3c5b 100644 (file)
@@ -176,6 +176,7 @@ EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg,
        if (block_id == EMUFS_NOT_FOUND) {
                /* crear un nuevo bloque en memoria */
                block = (char*) malloc(efs->tam_bloque);
+               memset(block, 0, efs->tam_bloque);
                if (block == NULL) {
                        /* TODO Manejo de errores */
                        PERR("No hay memoria");
@@ -388,6 +389,7 @@ void* emufs_tipo1_leer_registro_raw(EMUFS *efs, EMUFS_REG_ID id, EMUFS_REG_SIZE
                offset += curr_reg_size;
        } while (offset < block_size);
 
+       (*size) = efs->tam_bloque;
        return block;
 }
 
index e6f81fc0e47f70959a34f8584a5bd2b2cc0e6bd2..09cd7f909f612e270ef72cde1a514f72e6fa4066 100644 (file)
@@ -4,7 +4,8 @@
 #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
@@ -13,6 +14,7 @@ static char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_S
 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;
@@ -23,14 +25,21 @@ void ver_registros(WINDOW *padre, int w, int h)
        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;
@@ -98,14 +107,14 @@ void ver_registros(WINDOW *padre, int w, int h)
                                }
                                
                                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);
 
@@ -129,7 +138,7 @@ void ver_registros(WINDOW *padre, int w, int h)
                                
                                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);
@@ -157,7 +166,7 @@ void ver_registros(WINDOW *padre, int w, int h)
                                        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':
@@ -166,7 +175,7 @@ void ver_registros(WINDOW *padre, int w, int h)
                                        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);
                                }
 
                }
@@ -195,7 +204,7 @@ void ver_registros(WINDOW *padre, int w, int h)
        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;
@@ -203,6 +212,8 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
 
        /* 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
@@ -252,6 +263,90 @@ char *procesar_registro_articulo_tipo3(EMUFS *emu, char *ptr, EMUFS_REG_SIZE *si
        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;
 }
 
+