-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, tam_data;
- if (ptr == NULL) return NULL;
-
- /* 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 */
- tam_data = sizeof(t_Articulo);
-
- (*size) = (*size)-sizeof(EMUFS_REG_ID)*cant_header*2 + 2*cant_header*10+1;
- (*ancho) = sizeof(t_Articulo)-sizeof(EMUFS_REG_ID)+10;
- if ((*ancho) > (*size))
- (*ancho) = (*size);
- if ((tam_data) > ((*size)-sizeof(EMUFS_REG_ID))) {
- tam_data = (*size) - sizeof(EMUFS_REG_ID);
- }
- salida = (char *)malloc(*size);
- memset(salida, '.', *size);
- if (salida == NULL) {
- return NULL;
- }
- 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);
- j = 0;
- while (j < (tam_data)) {
- if (*tmp == '\0') {
- if (ant == (*tmp))
- (*tmp1) = '.';
- else
- (*tmp1) = '|';
- } else {
- copy_char(tmp1, tmp);
- }
- ant = (*tmp);
- tmp++;
- tmp1++;
- j++;
- }
- i++;
- }
- free(ptr);
-
- salida[*size-1] = '\0';
-
- 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;
- PERR("Voy a contar la cantidad de headers");
- 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 */
-#ifdef DEBUG
- fprintf(stderr, "Tamaño Registro = %lu\n", curr_size);
-#endif
- 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+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_REG_ID) < (*size));
-
- /* Proceso */
- salida = (char *)malloc((*size)-sizeof(unsigned int)*cant_header*2 + 2*cant_header*10+1);
- memset(salida, '.',(*size)-sizeof(unsigned int)*cant_header*2 + 2*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+20;
- pos_actualizada = 2;
- }
- tmp1 += 10;
- tmp += sizeof(EMUFS_REG_SIZE);
- PERR("Voy aca");
- j = 0;
- while (j < curr_size) {
- if (*tmp == '\0') {
- if (ant == (*tmp))
- (*tmp1) = '.';
- else
- (*tmp1) = '|';
- } else {
- copy_char(tmp1, tmp);
- }
- ant = (*tmp);
- tmp++;
- tmp1++;
- j++;
- }
- PERR("Y hasta todo bien");
- i++;
- }
- /* Tengo que trabajar sobre lo que me falte (seguro es espacio libre) */
- (*size) = (*size)-sizeof(unsigned int)*cant_header*2+2*cant_header*10+1;
- free(ptr);
- salida[*size-1] = '\0';
-
- return salida;
-}
-