]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo1.c
- Se hace que leer_registro() y leer_bloque() devuelvan un puntero al
[z.facultad/75.06/emufs.git] / emufs / tipo1.c
1 /* vim: set noexpandtab tabstop=4 shiftwidth=4:
2  *----------------------------------------------------------------------------
3  *                                  emufs
4  *----------------------------------------------------------------------------
5  * This file is part of emufs.
6  *
7  * emufs is free software; you can redistribute it and/or modify it under the
8  * terms of the GNU General Public License as published by the Free Software
9  * Foundation; either version 2 of the License, or (at your option) any later
10  * version.
11  *
12  * emufs is distributed in the hope that it will be useful, but WITHOUT ANY
13  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
15  * details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with emufs; if not, write to the Free Software Foundation, Inc., 59 Temple
19  * Place, Suite 330, Boston, MA  02111-1307  USA
20  *----------------------------------------------------------------------------
21  * Creado:  vie abr  9 16:47:32 ART 2004
22  * Autores: Leandro Lucarella <llucare@fi.uba.ar>
23  *----------------------------------------------------------------------------
24  *
25  * $Id$
26  *
27  */
28
29 /** \file
30  *
31  * Archivo con bloque de longitud parametrizada, registro de longitud variable.
32  * 
33  * Implementación del archivo con bloques de longitud parametrizada y registros
34  * de longitud variable.
35  *
36  */
37
38 #include "tipo1.h"
39 #include "idx.h"
40 #include "fsc.h"
41 #include "did.h"
42 #include <stdio.h>
43 #include <stdlib.h>
44 #include <string.h>
45 #include <unistd.h>
46
47 int emufs_tipo1_inicializar(EMUFS* efs)
48 {
49         /* Asigna punteros a funciones. */
50         efs->leer_bloque     = emufs_tipo1_leer_bloque;
51         efs->leer_registro   = emufs_tipo1_leer_registro;
52         efs->grabar_registro = emufs_tipo1_grabar_registro;
53         /*efs->borrar_registro = emufs_tipo1_borrar_registro;*/
54         return 0;
55 }
56
57 void* emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id, int *err)
58 {
59         char* block; /* bloque leido (en donde está el registro a leer) */
60         char* registro; /* registro a leer */
61         EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
62         EMUFS_BLOCK_SIZE offset; /* offset del bloque leído */
63         EMUFS_BLOCK_SIZE block_size; /* tamaño del bloque leído */
64         EMUFS_REG_SIZE curr_reg_size; /* tamaño del registro leído secuencialmente */
65         EMUFS_REG_ID curr_reg_id; /* id del registro leído secuencialmente */
66
67         *err = 0;
68         block_id = emufs_idx_buscar_registro(efs, reg_id);
69         if (block_id == EMUFS_NOT_FOUND) {
70                 /* TODO Manejo de errores */
71                 printf("Registro no encontrado.\n");
72                 *err = (int) EMUFS_NOT_FOUND;
73                 return NULL;
74         }
75         if (!(block = emufs_tipo1_leer_bloque(efs, block_id, err))) {
76                 /* TODO Manejo de errores */
77                 printf("no se pudo leer el bloque\n");
78                 return NULL;
79         }
80
81         /* Busco secuencialmente en el bloque el registro a leer */
82         offset = 0;
83         do {
84                 /* Copio el id del registro de la cabecera. */
85                 memcpy(&curr_reg_id, block + offset, sizeof(EMUFS_REG_ID));
86                 offset += sizeof(EMUFS_REG_ID);
87                 /* Copio el tamaño del registro de la cabecera. */
88                 memcpy(&curr_reg_size, block + offset, sizeof(EMUFS_REG_SIZE));
89                 offset += sizeof(EMUFS_REG_SIZE);
90                 if (curr_reg_id == reg_id) {
91                         registro = (char*) malloc(curr_reg_size);
92                         if (registro == NULL) {
93                                 /* TODO Manejo de errores */
94                                 free(block);
95                                 printf("No hay memoria.\n");
96                                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
97                                 return NULL;
98                         }
99                         memcpy(registro, block + offset, curr_reg_size);
100                         break;
101                 }
102                 /* Desplazo el offset */
103                 offset += curr_reg_size;
104         } while (offset < block_size);
105
106         free(block);
107         return registro;
108 }
109
110 void* emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, int *err)
111 {
112         FILE* file;
113         char* block; /* bloque leido (en donde está el registro a leer) */
114         char  name_f[255];
115
116         strcpy(name_f,efs->nombre);
117         strcat(name_f,".dat");
118
119         if ((file = fopen(name_f, "r")) == NULL) {
120                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
121                 return NULL; /* FIXME ERROR */
122         }
123         fseek(file,
124                         sizeof(EMUFS_TYPE) +      /* Cabecera tipo */
125                         sizeof(EMUFS_BLOCK_SIZE), /* Cabecera tamaño de bloque */
126                         SEEK_SET);
127         /* FIXME: verificar que no se pase de fin de archivo*/
128         fseek(file, block_id * efs->tam_bloque, SEEK_CUR);
129         block = (char*) malloc(efs->tam_bloque);
130         if (block == NULL) {
131                 /* TODO Manejo de errores */
132                 printf("No hay memoria.\n");
133                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
134                 return NULL;
135         }
136         if (fread(block, efs->tam_bloque, 1, file) != 1) {
137                 /* TODO Manejo de errores */
138                 free(block);
139                 printf("Error al leer bloque.\n");
140                 *err = 3; /* EMUFS_ERROR_FILE_READ */
141                 return NULL;
142         }
143         fclose(file);
144         return block;
145 }
146
147 EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* efs, void* reg_ptr,
148                 EMUFS_REG_SIZE reg_size)
149 {
150         return -1; /* FIXME Error */
151 }
152
153 /*Graba un bloque en el archivo*/
154 int emufs_tipo1_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num_bloque)
155 {
156         return -1; /* FIXME Error */
157 }
158
159 /*Busco en el archivo de Id`s un Id valido para un nuevo registro*/
160 EMUFS_REG_ID emufs_tipo1_get_id(EMUFS *emu)
161 {
162         return -1; /* FIXME Error */
163 }
164
165 /*borra un registro de un bloque y acomoda los registros que quedan*/
166 int emufs_tipo1_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
167 {
168         return -1; /* FIXME Error */
169 }
170
171 int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg,
172                 EMUFS_REG_SIZE tam_reg)
173 {
174         return -1; /* FIXME Error */
175 }