]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo1.c
Ejemplo para leer un registro andando.
[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
55         return 0;
56 }
57
58 int emufs_tipo1_leer_registro(EMUFS* efs, EMUFS_REG_ID reg_id, void* reg_ptr,
59                 EMUFS_REG_SIZE reg_size)
60 {
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 leído */
64         EMUFS_BLOCK_SIZE block_size; /* tamaño del bloque leído */
65         EMUFS_REG_SIZE curr_reg_size; /* tamaño del registro leído secuencialmente */
66         EMUFS_REG_ID curr_reg_id; /* id del registro leído secuencialmente */
67
68         block_id = emufs_idx_buscar_registro(efs, reg_id);
69         block = (char*) malloc(efs->tam_bloque);
70         if (block == NULL) {
71                 /* TODO Manejo de errores */
72                 printf("No hay memoria.\n");
73                 return -1;
74         }
75         
76         if (emufs_tipo1_leer_bloque(efs, block_id, block) == -1) {
77                 /* TODO Manejo de errores */
78                 free(block);
79                 printf("no se pudo leer el bloque\n");
80                 return -1;
81         }
82
83         /* Busco secuencialmente en el bloque el registro a leer */
84         offset = 0;
85         do {
86                 /* Copio el id del registro de la cabecera. */
87                 memcpy(&curr_reg_id, block + offset, sizeof(EMUFS_REG_ID));
88                 offset += sizeof(EMUFS_REG_ID);
89                 /* Copio el tamaño del registro de la cabecera. */
90                 memcpy(&curr_reg_size, block + offset, sizeof(EMUFS_REG_SIZE));
91                 offset += sizeof(EMUFS_REG_SIZE);
92                 if (curr_reg_id == reg_id) {
93                         /* XXX Posible checkeo de reg_size == curr_reg_size */
94                         memcpy(reg_ptr, block + offset, curr_reg_size);
95                         break;
96                 }
97                 /* Desplazo el offset */
98                 offset += curr_reg_size;
99         } while (offset < block_size);
100
101         free(block);
102         return 0;
103 }
104
105 int emufs_tipo1_leer_bloque(EMUFS* efs, EMUFS_BLOCK_ID block_id, void *block)
106 {
107         FILE* file;
108         char name_f[255];
109         long cant;
110         
111         strcpy(name_f,efs->nombre);
112         strcat(name_f,".dat");
113         
114         if ( (file = fopen(name_f,"r"))==NULL ) {
115                 return -1; /* FIXME ERROR */
116         }
117         fseek(file,
118                         sizeof(EMUFS_TYPE) +      /* Cabecera tipo */
119                         sizeof(EMUFS_BLOCK_SIZE), /* Cabecera tamaño de bloque */
120                         SEEK_SET);
121         /* FIXME: verificar que no se pase de fin de archivo*/
122         fseek(file, block_id * efs->tam_bloque, SEEK_CUR);
123         cant = fread(block, sizeof(char), efs->tam_bloque, file);
124         fclose(file);
125         return cant;
126 }
127
128 EMUFS_REG_ID emufs_tipo1_grabar_registro(EMUFS* emu, void* ptr,
129                 EMUFS_REG_SIZE reg_size)
130 {
131         return -1; /* FIXME Error */
132 }
133
134 /*Graba un bloque en el archivo*/
135 int emufs_tipo1_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num_bloque)
136 {
137         return -1; /* FIXME Error */
138 }
139
140 /*Busco en el archivo de Id`s un Id valido para un nuevo registro*/
141 EMUFS_REG_ID emufs_tipo1_get_id(EMUFS *emu)
142 {
143         return -1; /* FIXME Error */
144 }
145
146 /*borra un registro de un bloque y acomoda los registros que quedan*/
147 int emufs_tipo1_buscar_registro(EMUFS *emu, EMUFS_REG_ID id_reg)
148 {
149         return -1; /* FIXME Error */
150 }
151
152 int emufs_tipo1_borrar_registro(EMUFS *emu, EMUFS_REG_ID id_reg,
153                 EMUFS_REG_SIZE tam_reg)
154 {
155         return -1; /* FIXME Error */
156 }
157