]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/idx.c
File Type 2 Test Added. Por ahora solo agrega registros y arma el indice. Ahora toy...
[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 <stdlib.h>
40 #include <strings.h>
41 #include <unistd.h>
42
43 /* Objetivo: Realiza una apertura de un archivo indice y devuelve el handler. */
44 FILE* emufs_idx_abrir(EMUFS* efs, const char* mode)
45 {
46         FILE* f;
47         char* filename;
48
49         filename = (char*) malloc(sizeof(char) * (strlen(efs->nombre)
50                                 + strlen(EMUFS_IDX_EXT) + 1));
51         if (filename == NULL) {
52                 /* TODO Manejo de errores */
53                 return NULL;
54         }
55         strcpy(filename, efs->nombre);
56         strcat(filename, EMUFS_IDX_EXT);
57         f = fopen(filename, mode);
58         free(filename);
59         return f;
60 }
61
62 /* Crea un archivo indice de registros */
63 int emufs_idx_crear(EMUFS *efs)
64 {
65         return emufs_crear_archivo_auxiliar(efs->nombre, EMUFS_IDX_EXT);
66 }
67
68 /* Devuelve el mayor id de registro utilizado so far en el archivo de datos, revisando el indice. */
69 EMUFS_REG_ID emufs_idx_buscar_mayor_id(EMUFS *emu)
70 {
71         EMUFS_REG_ID n_IdReg, max = -1;
72         FILE *f_idx;    
73         EMUFS_IDX reg;
74         char name_f_idx[255]; /* TODO usar malloc para no limitar el tamaño de nombre de archivo */
75
76         strcpy(name_f_idx,emu->nombre);
77         strcat(name_f_idx, EMUFS_IDX_EXT);
78
79         if ( (f_idx = fopen(name_f_idx,"r")) == NULL) return -1; /*ERROR*/
80         n_IdReg = -1;
81         while ( !feof(f_idx) ){
82                 /* Me aseguro de leer la cantidad de bytes correcta */
83                 if (fread(&reg,sizeof(EMUFS_IDX),1,f_idx) != 1) continue;
84                 if ( reg.n_IdReg >= max ) 
85                         max = reg.n_IdReg;
86         }
87         n_IdReg = max+1;
88         fclose(f_idx);
89
90         return n_IdReg; 
91 }
92
93 /* busca el registro ID en el archivo ".idx" y devuelve el nro de bloque en el que se encuentra */
94 EMUFS_BLOCK_ID emufs_idx_buscar_registro(EMUFS *emu, EMUFS_REG_ID n_IdReg)
95 {
96         FILE* f_idx;
97         EMUFS_IDX reg;
98         char name_f_idx[255];
99         unsigned short int b_Found = 0;
100         
101         strcpy(name_f_idx,emu->nombre);
102         strcat(name_f_idx, EMUFS_IDX_EXT);
103         
104         if ( (f_idx = fopen(name_f_idx,"r")) == NULL) return -1; /*ERROR*/
105
106         while (!feof(f_idx) && !b_Found){
107                 if (fread(&reg,sizeof(EMUFS_IDX),1,f_idx) != 1) continue;
108                 if (reg.n_IdReg == n_IdReg) b_Found = 1;
109         }
110         
111         fclose(f_idx);
112         
113         /* Sino lo encontre devuelvo uno, otherwise el offset o bloque */
114         if (!b_Found) return(-1);
115         else return(reg.n_Location);
116 }
117
118 /* agrega un registro al final del archivo */
119 int emufs_idx_agregar(EMUFS *emu, EMUFS_BLOCK_ID n_Location, EMUFS_REG_ID n_IdReg)
120 {
121         FILE *f_idx;
122         EMUFS_IDX reg;
123         char name_f_idx[255];
124         
125         strcpy(name_f_idx,emu->nombre);
126         strcat(name_f_idx, EMUFS_IDX_EXT);
127
128         if ( (f_idx = fopen(name_f_idx,"a+"))==NULL ) return -1;
129                 
130     /* Note: Location = Bloque para Tipo 1 y 3, Offset para Tipo 2 */
131         reg.n_Location = n_Location;
132         reg.n_IdReg = n_IdReg;
133         fwrite(&reg,sizeof(EMUFS_IDX),1,f_idx); 
134         fclose(f_idx);
135         return 0;
136 }
137
138 /* Borra un registro del indice dada la eliminacion fisica de un reg */
139 int emufs_idx_borrar(EMUFS *emu, EMUFS_REG_ID n_IdReg)
140 {
141         FILE *f_idx;
142         EMUFS_IDX reg, buffer;
143         char name_f_idx[255];
144         long actual, final, cant, i, tam;
145         
146         strcpy(name_f_idx,emu->nombre);
147         strcat(name_f_idx, EMUFS_IDX_EXT);
148
149         if ( (f_idx = fopen(name_f_idx,"a+"))==NULL ) return -1;
150         
151         while ( !feof(f_idx) ){
152                 /*busco cual tengo que borrar*/
153                 if ( fread(&reg, sizeof(EMUFS_IDX), 1, f_idx) != 1 ) continue;
154                 if ( reg.n_IdReg == n_IdReg )
155                         break;
156         }
157         
158         /* me paro en el que tengo que borrar */
159         actual = fseek(f_idx, -sizeof(EMUFS_IDX), SEEK_CUR);
160         /*actual = ftell(f_idx);*/ /* Guardo la posicion actual */
161         printf("ACTUAL = %ld\n", actual/sizeof(EMUFS_IDX));
162         fseek(f_idx, 0, SEEK_END); /* me voy al final */
163         final = ftell(f_idx); /* veo cuando ocupa el archivo */
164         printf("tamanio del archivo de bloques y registros = %ld\n", final/sizeof(EMUFS_IDX));
165         fseek(f_idx, actual, SEEK_SET); /* vuelvo al lugar desde donde quiero justificar */
166         
167         cant = (final-actual)/sizeof(EMUFS_IDX);
168         printf("cant = %ld\n", cant);
169         for(i=0; i<cant-1; i++) {
170                    /* Calculo donde empieza el proximo elemento a mover */
171                    final = actual+sizeof(EMUFS_IDX); printf("final = %ld actual =  %ld\n", final/sizeof(EMUFS_IDX), actual/sizeof(EMUFS_IDX));
172                    /* Me paro en ese lugar */
173                    fseek(f_idx, final, SEEK_SET);
174                    /* y lo leo */
175                    fread(&buffer, sizeof(EMUFS_IDX), 1, f_idx);
176                    /* Ahora me paro en la nueva posicion de este item */
177                    fseek(f_idx, actual, SEEK_SET);
178                    /* y lo guardo */
179                    fwrite(&buffer, sizeof(EMUFS_IDX), 1, f_idx);
180                    /* Ahora el proximo item va en la posicion siguiente */
181                    actual += sizeof(EMUFS_IDX);printf("actual = %ld\n", actual/sizeof(EMUFS_IDX));
182         }
183         fseek (f_idx,0,SEEK_END);
184         tam = ftell(f_idx);
185         printf("tamanio del archivo de bloques y registros = %ld\n", tam/sizeof(EMUFS_IDX) - 1);
186         fclose(f_idx);
187         truncate(name_f_idx, tam - sizeof(EMUFS_IDX));
188         return 0;
189 }