]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/idx.c
49447d7c7a640df31f9897343fa6b0f08f5d7dfb
[z.facultad/75.06/emufs.git] / emufs / idx.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:  jue abr  8 18:10:35 ART 2004
22  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
23  *          Leandro Lucarella <llucare@fi.uba.ar>
24  *----------------------------------------------------------------------------
25  *
26  * $Id$
27  *
28  */
29
30 /** \file
31  *
32  * Manejo de archivos de índice de registros.
33  * 
34  * Implementación del manejo de archivos de índice de registros.
35  *
36  */
37
38 #include "idx.h"
39 #include "did.h"
40 #include <stdlib.h>
41 #include <strings.h>
42 #include <unistd.h>
43
44 /* Objetivo: Realiza una apertura de un archivo indice y devuelve el handler. */
45 FILE* emufs_idx_abrir(EMUFS* efs, const char* mode)
46 {
47         FILE* f;
48         char* filename;
49
50         filename = (char*) malloc(sizeof(char) * (strlen(efs->nombre)
51                                 + strlen(EMUFS_IDX_EXT) + 1));
52         if (filename == NULL) {
53                 /* TODO Manejo de errores */
54                 return NULL;
55         }
56         strcpy(filename, efs->nombre);
57         strcat(filename, EMUFS_IDX_EXT);
58         f = fopen(filename, mode);
59         free(filename);
60         return f;
61 }
62
63 /* Crea un archivo indice de registros */
64 int emufs_idx_crear(EMUFS *efs)
65 {
66         return emufs_crear_archivo_auxiliar(efs->nombre, EMUFS_IDX_EXT);
67 }
68
69 /* Devuelve el mayor id de registro utilizado so far en el archivo de datos, revisando el indice. */
70 EMUFS_REG_ID emufs_idx_buscar_mayor_id_libre(EMUFS* emu, int* err)
71 {
72         EMUFS_REG_ID max = 0;
73         FILE* f_idx;    
74         EMUFS_IDX reg;
75         char name_f_idx[255]; /* TODO usar malloc para no limitar el tamaño de nombre de archivo */
76         int found = 0;
77
78         strcpy(name_f_idx, emu->nombre);
79         strcat(name_f_idx, EMUFS_IDX_EXT);
80
81         (*err) = 0;
82         if ((f_idx = fopen(name_f_idx, "rb")) == NULL) {
83                 PERR("No se puede abrir archivo");
84                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
85                 return EMUFS_NOT_FOUND;
86         }
87         while (!feof(f_idx)) {
88                 /* Me aseguro de leer la cantidad de bytes correcta */
89                 if (fread(&reg, sizeof(EMUFS_IDX), 1, f_idx) != 1) {
90                         if (feof(f_idx)) break; /* No leyó por EOF */
91                         PERR("Error al leer registros de idx");
92                         *err = 3; /* EMUFS_ERROR_FILE_READ */
93                         return EMUFS_NOT_FOUND;
94                 }
95                 if (reg.n_idreg >= max) {
96                         max = reg.n_idreg;
97                         found = 1;
98                 }
99         }
100         fclose(f_idx);
101
102         if (found) {
103                 return ++max;
104         } else {
105                 return 0;
106         }
107 }
108
109 /* busca el registro ID en el archivo ".idx" y devuelve el nro de bloque en el que se encuentra */
110 EMUFS_BLOCK_ID emufs_idx_buscar_registro(EMUFS *emu, EMUFS_REG_ID reg_id)
111 {
112         FILE* f_idx;
113         EMUFS_IDX reg;
114         char name_f_idx[255];
115         
116         strcpy(name_f_idx,emu->nombre);
117         strcat(name_f_idx, EMUFS_IDX_EXT);
118         
119         if ((f_idx = fopen(name_f_idx, "rb")) == NULL) {
120                 PERR("No se puede abrir archivo");
121                 /*    *err = 4; * EMUFS_ERROR_CANT_OPEN_FILE */
122                 return EMUFS_NOT_FOUND;
123         }
124
125         while (!feof(f_idx)) {
126                 if (fread(&reg, sizeof(EMUFS_IDX), 1, f_idx) != 1) {
127                         if (feof(f_idx)) break; /* No leyó por EOF */
128                         PERR("Error al leer registros de idx");
129                         /*   *err = 3; * EMUFS_ERROR_FILE_READ */
130                         return EMUFS_NOT_FOUND;
131                 }
132                 if (reg.n_idreg == reg_id) {
133                         fclose(f_idx);
134                         return reg.n_location;
135                 }
136         }
137         fclose(f_idx);
138
139         return EMUFS_NOT_FOUND;
140 }
141
142 /* agrega un registro al final del archivo */
143 int emufs_idx_agregar(EMUFS *emu, EMUFS_REG_ID n_idreg, EMUFS_BLOCK_ID n_location)
144 {
145         FILE *f_idx;
146         EMUFS_IDX reg;
147         char name_f_idx[255];
148         
149         strcpy(name_f_idx,emu->nombre);
150         strcat(name_f_idx, EMUFS_IDX_EXT);
151
152         if ( (f_idx = fopen(name_f_idx,"a+"))==NULL ) return -1;
153                 
154     /* Note: Location = Bloque para Tipo 1 y 3, Offset para Tipo 2 */
155     reg.n_idreg = n_idreg;
156         reg.n_location = n_location;
157         fwrite(&reg,sizeof(EMUFS_IDX),1,f_idx); 
158         fclose(f_idx);
159         return 0;
160 }
161
162 /* Borra un registro del indice dada la eliminacion fisica de un reg */
163 int emufs_idx_borrar(EMUFS *emu, EMUFS_REG_ID idreg)
164 {
165         FILE *f_idx;
166         EMUFS_IDX reg;
167         char name_f_idx[255];
168         long actual, final, cant, i, tam, a;
169         
170         strcpy(name_f_idx,emu->nombre);
171         strcat(name_f_idx, EMUFS_IDX_EXT);
172
173         if ( (f_idx = fopen(name_f_idx,"r+"))==NULL ) return -1;
174
175         while ( !feof(f_idx) ){
176                 /*busco cual tengo que borrar*/
177                 if ( fread(&reg, sizeof(EMUFS_IDX), 1, f_idx) != 1 ) continue;
178                 if ( reg.n_idreg == idreg ) {
179                         break;
180                 }
181         }
182
183         /* me paro en el que tengo que borrar */
184         fseek(f_idx, -sizeof(EMUFS_IDX), SEEK_CUR);     
185         actual = ftell(f_idx); /* Guardo la posicion actual */
186         fseek(f_idx, 0, SEEK_END); /* me voy al final */
187         final = ftell(f_idx); /* veo cuando ocupa el archivo */
188         fseek(f_idx, actual, SEEK_SET);/* vuelvo al lugar desde donde quiero justificar */
189         /*calculo cuantos registros tengo que mover */
190         cant = (final-actual)/sizeof(EMUFS_IDX);
191         /*apunto al siguiente del que quiero borrar*/
192         /*leo todos los que quedan*/
193         for(i=0; i<cant-1; i++) {
194                 final = actual + sizeof(EMUFS_IDX);
195                 fseek(f_idx, final, SEEK_SET);
196                 fread(&reg, sizeof(EMUFS_IDX), 1, f_idx);
197                 fseek(f_idx, actual, SEEK_SET);
198                 fwrite(&reg, sizeof(EMUFS_IDX), 1, f_idx);
199                 actual += sizeof(EMUFS_IDX);
200         }
201         /* Aca deberia estar al final del archivo , no hago seek */     
202         tam = ftell(f_idx);
203         fclose(f_idx);
204         truncate(name_f_idx, tam-sizeof(EMUFS_IDX));
205         
206         return 0;
207 }
208
209 EMUFS_REG_ID emufs_idx_get_new_id(EMUFS* efs, int* err)
210 {
211         EMUFS_REG_ID id;
212
213         (*err) = 0;
214         id = emufs_did_get_last(efs, err);
215         if (id == EMUFS_NOT_FOUND) {
216                 id = emufs_idx_buscar_mayor_id_libre(efs, err);
217                 if (*err) {
218                         PERR("error al obtener id mayor");
219                         return EMUFS_NOT_FOUND;
220                 }
221         }
222         return id;      
223 }
224