]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/emufs.c
Impelentacion de compactar terminada pero NO ESTA TESTEADA del todo..
[z.facultad/75.06/emufs.git] / emufs / emufs.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:  mié mar 31 17:26:46 ART 2004
22  * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
23  *          Ricardo Markiewicz <rmarkie@fi.uba.ar>
24  *          Leandro Lucarella <llucare@fi.uba.ar>
25  *----------------------------------------------------------------------------
26  *
27  * $Id$
28  *
29  */
30
31 /** \file
32  *
33  * Estructura general de un archivo <em>abstracto</em> de emufs.
34  * 
35  * Implementación de la estructura abstracta que representa cualquiera de los
36  * tipos de archivo implementados. Se incluyen funciones tipo <em>factory</em>
37  * para crear un archivo, abrirlo y destruirlo.
38  *
39  */
40
41 #include "emufs.h"
42 #include "tipo1.h"
43 #include "tipo2.h"
44 #include "tipo3.h"
45 #include "did.h"
46 #include "fsc.h"
47 #include "idx.h"
48
49 char *str_dup(const char *s);
50
51 char *str_dup(const char *s)
52 {
53         char *tmp;
54         if (s == NULL) return NULL;
55         tmp = (char *)malloc(sizeof(char)*(strlen(s)+1));
56         strcpy(tmp, s);
57         return tmp;
58 }
59
60 int emufs_crear_archivo_auxiliar(const char* name, const char* ext)
61 {
62         FILE* f;
63         char* filename;
64
65         filename = (char*) malloc(sizeof(char) * (strlen(name) + strlen(ext) + 1));
66         if (filename == NULL) {
67                 /* TODO Manejo de errores */
68                 return -1;
69         }
70         strcpy(filename, name);
71         strcat(filename, ext);
72         f = fopen(filename, "w");
73         free(filename);
74         if (f == NULL) {
75                 /* TODO Manejo de errores */
76                 return -1;
77         }
78         fclose(f);
79         return 0;
80 }
81
82 EMUFS *emufs_crear(const char *filename, EMUFS_Tipo tipo, EMUFS_BLOCK_SIZE tam_bloque, EMUFS_REG_SIZE tam_reg)
83 {
84         char name[255];
85         FILE *fp;
86         EMUFS *efs;
87
88         /* Si no es un tipo conocido, sale. */
89         if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
90                 return NULL;
91         }
92
93         /* Inicializa parámetros comunes. */
94         efs = (EMUFS*) malloc(sizeof(EMUFS));
95         if (efs == NULL) {
96                 return NULL;
97         }
98         efs->tipo = tipo;
99         efs->tam_bloque = tam_bloque;
100         efs->tam_reg = tam_reg;
101         efs->nombre = str_dup(filename);
102
103         /* Abre archivo de datos. */
104         strcpy(name, filename);
105         strcat(name, ".dat");
106         fp = fopen(name, "w");
107         if (fp == NULL) {
108                 /* TODO ERROR */
109                 free(efs->nombre);
110                 free(efs);
111                 return NULL;
112         }
113
114         /* Guarda cabecera común. */
115         fwrite(&tipo, sizeof(EMUFS_Tipo), 1, fp);
116
117         /* Crea archivo de índice. */
118         if (emufs_idx_crear(efs)) {
119                 /* TODO ERROR */
120                 free(efs->nombre);
121                 free(efs);
122                 return NULL;
123         }
124
125         /* Crea archivo de control de espacio libre. */
126         if (emufs_fsc_crear(efs)) {
127                 /* TODO ERROR */
128                 free(efs->nombre);
129                 free(efs);
130                 return NULL;
131         }
132
133         /* Crea archivo de identificadores borrados (recuperables). */
134         if (emufs_did_crear(efs)) {
135                 /* TODO ERROR */
136                 free(efs->nombre);
137                 free(efs);
138                 return NULL;
139         }
140
141         /* Termina de realizar el trabajo según el tipo de archivo. */
142         switch (tipo) {
143
144                 case T1:
145                         /* Asigna punteros a funciones. */
146                         /* TODO verificar que el tamaño de bloque sea como mínimo del
147                          * tamaño de la cabecera de un registro + N */
148                         emufs_tipo1_inicializar(efs);
149
150                         /* Guarda cabeceras propias. */
151                         fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
152
153                         break;
154
155                 case T2:
156                         /* Asigna punteros a funciones. */
157                         emufs_tipo2_inicializar(efs);
158                         break;
159
160                 case T3:
161                         /* Asigna punteros a funciones. */
162                         efs->leer_bloque = emufs_tipo3_leer_bloque;
163                         efs->leer_registro = emufs_tipo3_leer_registro;
164                         efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
165                         efs->grabar_registro = emufs_tipo3_grabar_registro;
166                         efs->borrar_registro = emufs_tipo3_borrar_registro;
167                         efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
168                         efs->modificar_registro = emufs_tipo3_modificar_registro;
169                         efs->compactar = emufs_tipo3_compactar;
170                         /* Guarda cabeceras propias. */
171                         fwrite(&tam_bloque, sizeof(EMUFS_BLOCK_SIZE), 1, fp);
172                         fwrite(&tam_reg, sizeof(EMUFS_REG_SIZE), 1, fp);                        
173                         break;
174
175         }
176
177         fclose(fp);
178         return efs;
179 }
180
181 EMUFS *emufs_abrir(const char *filename)
182 {
183         EMUFS *efs;
184         char name[255];
185         char tipo;
186         FILE *fp;
187
188         strcpy(name, filename);
189         strcat(name, ".dat");
190
191         /* Trato de determinar el tipo de archivo */
192         fp = fopen(name, "r");
193         if (fp == NULL) return NULL;
194         fread(&tipo, sizeof(EMUFS_Tipo), 1, fp);
195
196         /* Si no es un tipo conocido, sale. */
197         if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
198                 fclose(fp);
199                 return NULL;
200         }
201         
202         /* Inicializa parámetros comunes. */
203         efs = (EMUFS*) malloc(sizeof(EMUFS));
204         if (efs == NULL) {
205                 fclose(fp);
206                 return NULL;
207         }
208         efs->tipo = tipo;
209         efs->nombre = str_dup(filename);
210
211         switch (tipo) {
212                 case T1:
213                         /* Asigna punteros a funciones. */
214                         emufs_tipo1_inicializar(efs);
215                         /* Lee cabeceras propias. */
216                         if (!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) {
217                                 free(efs->nombre);
218                                 free(efs);
219                                 fclose(fp);
220                                 return NULL;
221                         }
222                         break;
223                 case T2:
224                         /* Asigna punteros a funciones. */
225                         emufs_tipo2_inicializar(efs);                   
226                         break;
227                 case T3:
228                         if ((!fread(&(efs->tam_bloque), sizeof(EMUFS_BLOCK_SIZE), 1, fp)) ||
229                            (!fread(&(efs->tam_reg), sizeof(EMUFS_REG_SIZE), 1, fp)))
230                                 {
231                                 free(efs->nombre);
232                                 free(efs);
233                                 fclose(fp);
234                                 return NULL;
235                         }                       
236                         /* Asigna punteros a funciones. */                      
237                         efs->leer_bloque = emufs_tipo3_leer_bloque;
238                         efs->leer_registro_raw = emufs_tipo3_leer_registro_raw;
239                         efs->leer_registro = emufs_tipo3_leer_registro;
240                         efs->grabar_registro = emufs_tipo3_grabar_registro;
241                         efs->borrar_registro = emufs_tipo3_borrar_registro;
242                         efs->leer_estadisticas = emufs_tipo3_leer_estadisticas;
243                         efs->modificar_registro = emufs_tipo3_modificar_registro;
244                         efs->compactar = emufs_tipo3_compactar;
245                         break;
246         }
247
248         fclose(fp);
249         return efs;
250 }
251
252 int emufs_destruir(EMUFS *e)
253 {
254         if (e == NULL) return 1;
255         free(e->nombre);
256         free(e);
257         return 0;
258 }
259
260 int ver_archivo_FS(EMUFS *emu)
261 {
262         FILE *f_block_free;
263         EMUFS_FSC reg;
264         char name_f_block_free[255];
265         
266         strcpy(name_f_block_free,emu->nombre);
267         strcat(name_f_block_free,".fsc");
268
269         if ( (f_block_free = fopen(name_f_block_free,"r"))==NULL ){
270                 fprintf(stderr, "no pude abrir el archivo %s\n",name_f_block_free);
271                 return -1;
272         }
273         fprintf(stderr,"BOQUES Y ESPACIO LIBRE\n");
274         fread(&reg,sizeof(reg),1,f_block_free);
275         while ( !feof(f_block_free) ){
276                 fprintf(stderr, "Bloque = %li   Espacio libre = %li\n",reg.marker, reg.freespace);
277                 fread(&reg,sizeof(reg),1,f_block_free);
278         }
279         
280         fclose(f_block_free);
281
282         /* Imprimo la lista de bloques/registros */
283         fprintf(stderr, "BLOQUES Y REGISTROS\n");
284         strcpy(name_f_block_free,emu->nombre);
285         strcat(name_f_block_free,".idx");
286         f_block_free = fopen(name_f_block_free, "r");
287         {
288                 EMUFS_IDX r;
289                 while (!feof(f_block_free)) {
290                         if (fread(&r, sizeof(EMUFS_IDX), 1, f_block_free) != 1) continue;
291                         fprintf(stderr, "ID %li en bloque %li\n", r.id_reg, r.location);
292                 }
293         }
294         fclose(f_block_free);
295         
296         return 0;
297 }