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