]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/emufs.c
* Se arregla el codigo para que compile.
[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 "tipo3.h"
43 #include "did.h"
44 #include "fsc.h"
45 #include "idx.h"
46
47 /* Defino las extenciones que usan cada tipo de archivo */
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
61 EMUFS *emufs_crear(const char *filename, char tipo, unsigned int tam_bloque, unsigned int tam_reg)
62 {
63         char name[255];
64         FILE *fp;
65         EMUFS *tmp = (EMUFS *)malloc(sizeof(EMUFS));
66
67         switch (tipo) {
68                 case T1:
69                 break;
70                 case T2:
71                 break;
72                 case T3:
73                         tmp->tipo = T3;
74                         tmp->tam_bloque = tam_bloque;
75                         tmp->leer_bloque = emufs_tipo3_leer_bloque;
76                         tmp->leer_registro = emufs_tipo3_leer_registro;
77                         tmp->grabar_registro = emufs_tipo3_grabar_registro;
78                         tmp->borrar_registro = emufs_tipo3_borrar_registro;
79                         tmp->nombre = str_dup(filename);
80
81                         strcpy(name, filename);
82                         strcat(name, ".dat");
83                         fp = fopen(name, "w");
84                         if (fp == NULL) {
85                                 /* ERROR */
86                                 free(tmp->nombre);
87                                 free(tmp);
88                                 return NULL;
89                         }
90                         /* Guardo el Header */
91                         fwrite(&tipo, sizeof(char), 1, fp);
92                         fwrite(&tam_bloque, sizeof(unsigned int), 1, fp);
93                         fwrite(&tam_reg, sizeof(unsigned int), 1, fp);
94                         fclose(fp);
95                         
96                         strcpy(name, filename);
97                         strcat(name, EMUFS_IDX_EXT);
98                         fp = fopen(name, "w");
99                         fclose(fp);
100
101                         strcpy(name, filename);
102                         strcat(name, EMUFS_FSC_EXT);
103                         fp = fopen(name, "w");
104                         fclose(fp);
105
106                         strcpy(name, filename);
107                         strcat(name, EMUFS_DID_EXT);
108                         fp = fopen(name, "w");
109                         fclose(fp);
110
111                 break;
112                 default:
113                         free(tmp);
114                         return NULL;
115         }
116
117         return tmp;
118 }
119
120 EMUFS *emufs_abrir(const char *filename)
121 {
122         EMUFS *tmp;
123         char name[255];
124         char tipo;
125         FILE *fp;
126
127         strcpy(name, filename);
128         strcat(name, ".dat");
129
130         /* Trato de determinar el tipo de archivo */
131         fp = fopen(name, "r");
132         if (fp == NULL) return NULL;
133         fread(&tipo, sizeof(char), 1, fp);
134         if ((tipo < 0) || (tipo > 2)) {
135                 fclose(fp);
136                 return NULL;
137         }
138         
139         tmp = (EMUFS *)malloc(sizeof(EMUFS));
140         if (tmp == NULL) {
141                 fclose(fp);
142                 return NULL;
143         }
144
145         switch (tipo) {
146                 case T1:
147                 break;
148                 case T2:
149                 break;
150                 case T3:
151                         tmp->tipo = tipo;
152                         fread(&tmp->tam_bloque, sizeof(int), 1, fp);
153                         tmp->leer_bloque = emufs_tipo3_leer_bloque;
154                         tmp->leer_registro = emufs_tipo3_leer_registro;
155                         tmp->grabar_registro = emufs_tipo3_grabar_registro;
156                         tmp->borrar_registro = emufs_tipo3_borrar_registro;
157                         tmp->nombre = str_dup(filename);
158         }
159
160         fclose(fp);
161         return tmp;
162 }
163
164 int emufs_destruir(EMUFS *e)
165 {
166         if (e == NULL) return 1;
167         free(e->nombre);
168         free(e);
169         return 0;
170 }
171
172 int ver_archivo_FS(EMUFS *emu)
173 {
174         FILE *f_block_free;
175         EMUFS_FSC reg;
176         char name_f_block_free[255];
177         
178         strcpy(name_f_block_free,emu->nombre);
179         strcat(name_f_block_free,".fsc");
180
181         if ( (f_block_free = fopen(name_f_block_free,"r"))==NULL ){
182                 printf("no pude abrir el archivo %s\n",name_f_block_free);
183                 return -1;
184         }
185         fread(&reg,sizeof(reg),1,f_block_free);
186         while ( !feof(f_block_free) ){
187                 printf(" Bloque = %d   Espacio libre = %d\n",reg.block, reg.free_space);
188                 fread(&reg,sizeof(reg),1,f_block_free);
189         }
190         
191         fclose(f_block_free);
192
193         /* Imprimo la lista de bloques/registros */
194         strcpy(name_f_block_free,emu->nombre);
195         strcat(name_f_block_free,".idx");
196         {
197                 EMUFS_IDX r;
198                 f_block_free = fopen(name_f_block_free, "r");
199                 fread(&r, sizeof(EMUFS_IDX), 1, f_block_free);
200                 while (!feof(f_block_free)) {
201                         printf("ID %ld en bloque %d\n", r.id_reg, r.block);
202                         fread(&r, sizeof(EMUFS_IDX), 1, f_block_free);
203                 }
204                 fclose(f_block_free);
205         }
206         
207         
208         return 0;
209 }