1 /* vim: set noexpandtab tabstop=4 shiftwidth=4:
2 *----------------------------------------------------------------------------
4 *----------------------------------------------------------------------------
5 * This file is part of emufs.
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
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
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 *----------------------------------------------------------------------------
31 * Archivo con bloque de longitud parametrizada, registro de longitud variable.
33 * Implementación del archivo con bloques de longitud parametrizada y registros
34 * de longitud variable.
47 int emufs_tipo1_inicializar(EMUFS* efs)
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;
58 int emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id, void* reg_ptr,
59 EMUFS_REG_SIZE reg_size)
61 char* block; /* bloque leido (en donde está el registro a leer) */
62 EMUFS_BLOCK_ID block_id; /* id del bloque en donde esta el registro a leer */
63 EMUFS_BLOCK_SIZE offset; /* offset del bloque leido */
64 EMUFS_REG_SIZE curr_reg_size; /* tamaño del registro leido secuencialmente */
65 EMUFS_REG_ID curr_reg_id; /* id del registro leido secuencialmente */
67 block_id = emufs_idx_buscar_registro(efs, reg_id);
68 block = (char*) malloc(efs->tam_bloque);
70 /* TODO Manejo de errores */
71 printf("No hay memoria.\n");
75 if (emufs_tipo1_leer_bloque(efs, block_id, block) == -1) {
76 /* TODO Manejo de errores */
78 printf("no se pudo leer el bloque\n");
82 /* Busco secuencialmente en el bloque el registro a leer */
85 /* Copio el id del registro de la cabecera. */
86 memcpy(&curr_reg_id, block + offset, sizeof(EMUFS_REG_ID));
87 offset += sizeof(EMUFS_REG_ID);
88 /* Copio el tamaño del registro de la cabecera. */
89 memcpy(&curr_reg_size, block + offset, sizeof(EMUFS_REG_SIZE));
90 offset += sizeof(EMUFS_REG_SIZE);
91 if (curr_reg_id == reg_id) {
92 /* XXX Posible checkeo de reg_size == curr_reg_size */
93 memcpy(reg_ptr, block + offset, curr_reg_size);
96 /* Desplazo el offset */
97 offset += curr_reg_size;
98 } while (offset < efs->tam_bloque);
104 int emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, void *block)
109 strcpy(name_f,efs->nombre);
110 strcat(name_f,".dat");
112 if ( (file = fopen(name_f,"r"))==NULL ) {
113 return -1; /* FIXME ERROR */
116 sizeof(EMUFS_TYPE) + /* Cabecera tipo */
117 sizeof(EMUFS_BLOCK_SIZE), /* Cabecera tamaño de bloque */
119 /* FIXME: verificar que no se pase de fin de archivo*/
120 fseek(file, block_id * efs->tam_bloque, SEEK_CUR);
121 if (fread(block, efs->tam_bloque, 1, file) != 1) {
130 EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* emu, void* ptr,
131 EMUFS_REG_SIZE reg_size)
133 return -1; /* FIXME Error */
136 /*Graba un bloque en el archivo*/
137 int emufs_tipo1_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num_bloque)
139 return -1; /* FIXME Error */
142 /*Busco en el archivo de Id`s un Id valido para un nuevo registro*/
143 EMUFS_REG_ID emufs_tipo1_get_id(EMUFS *emu)
145 return -1; /* FIXME Error */
148 /*borra un registro de un bloque y acomoda los registros que quedan*/
149 int emufs_tipo1_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
151 return -1; /* FIXME Error */
154 int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg,
155 EMUFS_REG_SIZE tam_reg)
157 return -1; /* FIXME Error */