]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo3.c
596e2a2eb6909e9a16a0873933ef17b9c00c3b6c
[z.facultad/75.06/emufs.git] / emufs / tipo3.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  *----------------------------------------------------------------------------
24  *
25  * $Id$
26  *
27  */
28
29 /** \file
30  *
31  * Archivo con bloques y registros de longitud parametrizada.
32  * 
33  * Implementación del archivo con bloques y registros de longitud
34  * parametrizada.
35  *
36  */
37
38 #include "tipo3.h"
39
40 /** Leo un registro del archivo, devuelve cero si no lo encuentra.**/
41 void* emufs_tipo3_leer_registro(EMUFS *emu, EMUFS_REG_ID ID,
42                 EMUFS_REG_SIZE* reg_size, int* err)
43 {
44         char* bloque;
45         char* registro; /* registro a leer */
46         EMUFS_BLOCK_ID block;
47         EMUFS_REG_ID ID_aux;
48         EMUFS_BLOCK_SIZE iterador = 0;
49         int cant_bloques = 0, resto, i, copiado=0;
50         
51         cant_bloques = emu->tam_reg / emu->tam_bloque + 1;
52         
53         /*si existe, lo busco en el archivo de bloques*/
54         block = emufs_idx_buscar_registro(emu,ID); /*me devuelve el nro de bloque al que pertenece el registro*/
55         if ( block == EMUFS_NOT_FOUND ){
56                 PERR("No se encontro el bloque");
57                 return NULL;
58         }
59         
60         registro = (char*) malloc(emu->tam_reg);
61         if (registro == NULL) {
62                 /* TODO Manejo de errores */
63                 free(bloque);
64                 PERR("No hay memoria");
65                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
66                 return NULL;
67         }
68
69         resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
70         for (i=0; i<cant_bloques; i++){
71                 if ((bloque = emufs_tipo3_leer_bloque(emu, block+i, err)) == NULL) {
72                         /* TODO Manejo de errores, queda en el codigo de error lo que devolvio
73                          * emufs_tipo3_leer_bloque() */
74                         PERR("no se pudo leer el bloque");
75                         return NULL; /*No se pudo leer el bloque*/
76                 }
77                 ID_aux = -1;
78                 iterador = 0;
79                 while ( iterador < emu->tam_bloque ) {
80                         memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
81                         iterador += sizeof(EMUFS_REG_ID);
82                         if ( ID_aux == ID ){
83                                 if ( cant_bloques == 0 )
84                                         memcpy(registro,bloque+iterador,emu->tam_reg);
85                                 else {
86                                         if ( cant_bloques-1 == i ) 
87                                                 resto = emu->tam_reg - copiado;
88                                         memcpy(registro+(emu->tam_bloque-sizeof(EMUFS_REG_ID))*i,bloque+iterador,resto);
89                                         copiado += resto;
90                                         break;
91                                 }
92                                 *reg_size = emu->tam_reg;
93                                 fprintf(stderr, "ACA VALE %d\n", emu->tam_reg);
94                         }
95                         iterador += emu->tam_reg;
96                 }
97                 free(bloque);
98         }
99         
100         return registro;
101 }
102
103 /*leo el bloque "ID" del archivo que viene en "emu->nombre", y lo almaceno en "ptr"*/
104 void* emufs_tipo3_leer_bloque(EMUFS *emu, EMUFS_REG_ID ID, int* err)
105 {
106         FILE* file;
107         char* block; /* bloque leido (en donde está el registro a leer) */
108         char name_f[255];
109         
110         strcpy(name_f,emu->nombre);
111         strcat(name_f,".dat");
112         
113         if ((file = fopen(name_f, "r")) == NULL) {
114                 *err = 4; /* EMUFS_ERROR_CANT_OPEN_FILE */
115                 return NULL; /* FIXME ERROR */
116         }
117         fseek(file,sizeof(EMUFS_Tipo)+sizeof(EMUFS_BLOCK_SIZE)+sizeof(EMUFS_REG_SIZE),SEEK_SET);
118         /*FIXME: verificar que no se pase de fin de archivo*/
119         fseek(file,ID*emu->tam_bloque,SEEK_CUR);
120         block = (char*) malloc(emu->tam_bloque);
121         if (block == NULL) {
122                 /* TODO Manejo de errores */
123                 PERR("No hay memoria");
124                 *err = 2; /* EMUFS_ERROR_OUT_OF_MEMORY */
125                 return NULL;
126         }
127         if (fread(block, emu->tam_bloque, 1, file) != 1) {
128                 /* TODO Manejo de errores */
129                 free(block);
130                 PERR("Error al leer bloque");
131                 *err = 3; /* EMUFS_ERROR_FILE_READ */
132                 return NULL;
133         }
134
135         fclose(file);
136         return block;
137 }
138
139 EMUFS_REG_ID emufs_tipo3_grabar_registro(EMUFS *emu, void *ptr, EMUFS_REG_SIZE tam, int* err)
140 {
141         EMUFS_REG_ID ID_aux;
142         EMUFS_FREE fs;
143         EMUFS_BLOCK_ID num_bloque;
144         EMUFS_BLOCK_SIZE cant;
145         FILE *file;
146         char name_f[255];
147         char* bloque;
148         int cant_bloques, resto, i;
149         
150         strcpy(name_f,emu->nombre);
151         strcat(name_f,".dat");
152         
153         cant_bloques = emu->tam_reg / emu->tam_bloque + 1;
154         resto = emu->tam_bloque - sizeof(EMUFS_REG_ID);
155         /* me devuelve el ID del bloque donde quepa un registro y el espacio libre en "fs"*/
156         num_bloque = emufs_fsc_buscar_lugar(emu, emu->tam_reg+sizeof(EMUFS_REG_ID), &fs);
157         /*si no hay bloques con suficiente espacio creo un bloque nuevo */
158         if (num_bloque == -1) {
159                 if ( (file = fopen(name_f,"a+"))==NULL ) return -1; /*ERROR*/
160                 /*tengo que buscar un ID valido para el nuevo registro*/
161                 ID_aux = emufs_idx_get_new_id(emu, err);
162                 /* El free esta al final de la funcion! */
163                 bloque = (char*)malloc(emu->tam_bloque);
164                 for (i=0; i<cant_bloques; i++) {
165                         /*crear un nuevo bloque en memoria */
166                         memset(bloque, 0, emu->tam_bloque);
167                         /* grabar el registro al principio del bloque */
168                         /*grabo el id en el bloque*/
169                         memcpy(bloque,&ID_aux,sizeof(EMUFS_REG_ID));
170                         /*grabo el registro en el bloque*/
171                         if ( cant_bloques == 1 ){
172                                 memcpy(bloque+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
173                         } else {
174                                 if ( cant_bloques-1 == i )
175                                         resto = emu->tam_reg - i*(emu->tam_bloque - sizeof(EMUFS_REG_ID));
176                                 memcpy(bloque+sizeof(EMUFS_REG_ID),((char*)ptr)+i*(emu->tam_bloque-sizeof(EMUFS_REG_ID)),resto);
177                         }
178                         /* me paro al final del archivo */
179                         fseek(file, 0, SEEK_END);
180                         /* grabo el bloque en el final del archivo */
181                         fwrite(bloque,emu->tam_bloque,1,file);
182                         /*actualizo el archivo de espacios libres*/
183                         /*tengo que buscar la cantidad de bloques que existen*/
184                         fseek(file, 0, SEEK_END); /* Me paro al final */
185                         cant = (ftell(file)-(sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE))) / emu->tam_bloque;
186                         cant--; /* Resto uno porque el numero de bloque debe empezar en 0 */
187                         num_bloque = cant;
188
189                         if (i == 0) {
190                                 /* Tengo que agregar el primer bloque en IDX */
191                                 if ( emufs_idx_existe_id(emu,ID_aux) != 0){ /* deberia ser == 0 pero no funca*/
192                                         emufs_idx_actualizar(emu, ID_aux, num_bloque);
193                                 } else {
194                                         if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
195                                                 free(bloque);
196                                                 return -1;
197                                         }
198                                 }
199                         }
200                         /* grabo el nuevo registro en el archivo de espacios libres */
201                         if ( emu->tam_bloque > emu->tam_reg ) resto = emu->tam_reg;
202                         if ( emufs_fsc_agregar(emu, num_bloque, emu->tam_bloque - resto - sizeof(EMUFS_REG_ID)) != 0 ) {
203                                 fclose(file);
204                                 free(bloque);
205                                 return -1;
206                         }
207                 }
208                 fclose(file);
209         } else {
210                 /*cargo el bloque en "bloque"*/
211                 if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, err))) {
212                         /* TODO Manejo de errores */
213                         PERR("no se pudo leer el bloque");
214                         return -1;
215                 }
216                 /*El error puede haberse producido porque la funcion leer_bloque devolvio -1, el cual es un bloque invalido*/
217                 /*insertar el registro en el bloque*/
218                 /*tengo que buscar un ID valido para el nuevo registro*/
219                 ID_aux = emufs_idx_get_new_id(emu, err);
220                 /*grabo el id en el bloque*/
221                 memcpy(bloque+emu->tam_bloque-fs,&ID_aux,sizeof(EMUFS_REG_ID));
222                 /*grabo el registro en el bloque*/
223                 memcpy(bloque+emu->tam_bloque-fs+sizeof(EMUFS_REG_ID),ptr,emu->tam_reg);
224                 if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) != 0) {
225                         PERR("error al grabar bloque");
226                         return -1; /* se produjo un error */    
227                 }
228                 /*actualizo el archivo de espacios libres*/
229                 if ( emufs_fsc_actualizar(emu, num_bloque, fs - emu->tam_reg - sizeof(EMUFS_REG_ID)) != 0 ){
230                         free(bloque);
231                         return -1;
232                 }
233                 /*actualizo el archivo de bloques y registros*/
234                 if ( emufs_idx_agregar(emu, ID_aux, num_bloque) != 0 ){
235                         free(bloque);
236                         return -1;
237                 }
238
239         }
240         free(bloque);
241         return ID_aux;
242 }
243
244 /*Graba un bloque en el archivo*/
245 int emufs_tipo3_grabar_bloque(EMUFS *emu, void *ptr, EMUFS_BLOCK_ID num)
246 {
247         FILE* file;
248         char name_f[255];
249         
250         strcpy(name_f,emu->nombre);
251         strcat(name_f,".dat");
252         
253         if ( (file = fopen(name_f,"r+"))==NULL ) return -1; /*ERROR*/
254         /* Salto el header del archivo */
255         fseek(file, sizeof(EMUFS_Tipo)+sizeof(EMUFS_REG_SIZE)+sizeof(EMUFS_BLOCK_SIZE), SEEK_SET);
256         fseek(file, num*emu->tam_bloque, SEEK_CUR);     
257         fwrite(ptr, emu->tam_bloque, 1, file);
258         
259         fclose(file);
260         return 0;
261 }
262
263 /*borra un registro de un bloque y acomoda los registros que quedan*/
264 int emufs_tipo3_borrar_registro(EMUFS *emu, EMUFS_REG_ID ID)
265 {
266         EMUFS_BLOCK_SIZE num_bloque;
267         EMUFS_BLOCK_SIZE ptr_elim;
268         EMUFS_BLOCK_SIZE ptr_mov;
269         EMUFS_REG_ID ID_aux;
270         EMUFS_FREE fs;
271         char *bloque;
272         int err = 0;
273
274         num_bloque = emufs_idx_buscar_registro(emu, ID);
275         if (!(bloque = emufs_tipo3_leer_bloque(emu, num_bloque, &err))) {
276                 /* TODO Manejo de errores */
277                 PERR("no se pudo leer el bloque");
278                 return -1;
279         }
280
281         /*apunto al registro que voy a eliminar*/
282         ptr_elim = 0;
283         while ( ptr_elim < emu->tam_bloque ){
284                 memcpy(&ID_aux, bloque+ptr_elim, sizeof(EMUFS_REG_ID));
285                 if ( ID_aux == ID )
286                         break;
287                 ptr_elim += emu->tam_reg + sizeof(EMUFS_REG_ID);
288         }
289
290         /*apunto al registro que voy a mover*/
291         ptr_mov = ptr_elim + emu->tam_reg + sizeof(EMUFS_REG_ID);
292         
293         while ( (ptr_mov+sizeof(EMUFS_REG_ID)+emu->tam_reg) < emu->tam_bloque ){
294                 memcpy(bloque+ptr_elim, bloque+ptr_mov, sizeof(EMUFS_REG_ID)+emu->tam_reg);
295                 /* Blanqueo el area que movi */
296                 memset(bloque+ptr_mov, 0, sizeof(EMUFS_REG_ID)+emu->tam_reg);
297                 ptr_elim = ptr_mov;
298                 ptr_mov += sizeof(EMUFS_REG_ID) + emu->tam_reg;
299         }
300
301         /*grabo el bloque en el archivo*/       
302         if ( emu->tam_bloque < emu->tam_reg ) 
303                 memset(bloque, 0, emu->tam_bloque);
304         if ( emufs_tipo3_grabar_bloque(emu, bloque, num_bloque) == -1 ){
305                 free(bloque);
306                 PERR("No se pudo grabar el bloque"); 
307                 return -1;
308         }
309
310         /*actualizo archivo .fsc*/
311         if ( emu->tam_bloque < emu->tam_reg ) {
312                 if ( emufs_fsc_actualizar(emu, num_bloque, emu->tam_bloque) != 0 ) return -1;
313         } else { 
314                 fs = emufs_fsc_get_fs(emu, num_bloque);
315                 if ( emufs_fsc_actualizar(emu, num_bloque, fs + emu->tam_reg + sizeof(EMUFS_REG_ID)) != 0 ) return -1;
316         }
317         /*actualizo archivo .did*/
318         if ( emufs_did_agregar(emu, ID) != 0 ) return -1;
319                 
320         /*actualizo archivo .idx*/
321         if ( emufs_idx_borrar(emu, ID) != 0 ) return -1; 
322
323         free(bloque);
324         return 0;
325 }
326
327 EMUFS_Estadisticas emufs_tipo3_leer_estadisticas(EMUFS *emu)
328 {
329         FILE *f;
330         EMUFS_Estadisticas stats;
331         EMUFS_REG_ID *tmp;
332         char name_f[255];
333
334         strcpy(name_f,emu->nombre);
335         strcat(name_f,".dat");
336         if ( (f = fopen(name_f,"r")) == NULL){
337                         PERR("No se pudo abrir el archivo");
338                         return stats;   
339         }
340         
341         /* No hace falta el fseek ¿? */
342         fseek(f,0,SEEK_END);
343         stats.tam_archivo_bytes = ftell(f);
344         stats.cant_bloques = ( ftell(f) - sizeof(EMUFS_Tipo) - sizeof(EMUFS_BLOCK_SIZE) - sizeof(EMUFS_REG_SIZE) )/ emu->tam_bloque;
345         tmp = emufs_idx_get(emu, &stats.tam_archivo);
346         if (tmp) free(tmp);
347         stats.total_fs = emufs_fsc_get_total_fs(emu);
348         /*verificar el segentado*/
349         stats.info_control = stats.tam_archivo*sizeof(EMUFS_REG_ID) + sizeof(EMUFS_Tipo) + sizeof(EMUFS_BLOCK_SIZE) + sizeof(EMUFS_REG_SIZE);
350         stats.media_fs = stats.total_fs/stats.cant_bloques;
351         fclose(f);
352         return stats;   
353 }
354
355 EMUFS_REG_ID emufs_tipo3_modificar_registro(EMUFS *emu, EMUFS_REG_ID id, void *data, EMUFS_REG_SIZE size, int *error)
356 {
357         emufs_tipo3_borrar_registro(emu, id);
358         return emufs_tipo3_grabar_registro(emu, data, size, error);
359 }
360
361 void* emufs_tipo3_leer_registro_raw(EMUFS *emu, EMUFS_REG_ID ID, EMUFS_REG_SIZE *size, int *pos)
362 {
363         char* bloque, *tmp, *cur;
364         EMUFS_BLOCK_ID block;
365         EMUFS_REG_ID ID_aux;
366         EMUFS_BLOCK_SIZE iterador = 0;
367         int err, cant_bloques, i;
368         
369         bloque = NULL;
370         if (emu->tam_reg < emu->tam_bloque) {
371                 /* Aca estoy en el caso de que 1 registro entra en 1 solo bloque */
372                 block = emufs_idx_buscar_registro(emu,ID);
373                 if ( block == EMUFS_NOT_FOUND ){
374                         return NULL;
375                 }
376                 if ((bloque = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
377                         return NULL;
378                 }
379                 
380                 ID_aux = -1;
381                 iterador = 0;
382         
383                 /* Busco el offset desde el comienzo desde donde arranca el registro
384                  * buscado, para luego resaltarlo en al GUI
385                  */
386                 while ( iterador < emu->tam_bloque ) {
387                         memcpy(&ID_aux, bloque+iterador, sizeof(EMUFS_REG_ID));
388                         if ( ID_aux == ID ){
389                                 *pos = iterador; 
390                                 *size = emu->tam_bloque;
391                                 break;
392                         }
393                         iterador += sizeof(EMUFS_REG_ID);
394                         iterador += emu->tam_reg;
395                 }
396         } else {
397                 /* Junto todos los bloques que ocupa el registro y agrego un separador de bloques */
398                 
399                 /* Busco el primer bloque */
400                 block = emufs_idx_buscar_registro(emu,ID);
401                 if ( block == EMUFS_NOT_FOUND ){
402                         return NULL;
403                 }
404                 cant_bloques = emu->tam_reg / emu->tam_bloque + 1;
405                 *size = emu->tam_bloque*cant_bloques + cant_bloques*2 - sizeof(EMUFS_REG_ID)*(cant_bloques-1);
406                 bloque = (char *)malloc(*size);
407                 cur = bloque;
408                 *pos = 0; 
409
410                 /* El bloque 0 va completo */
411                 if ((tmp = emufs_tipo3_leer_bloque(emu, block, &err)) == NULL) {
412                         /* Oops! ... un bloque no existe, todo mal! */
413                         free(bloque);
414                         return NULL;
415                 }
416                 memcpy(cur, tmp, emu->tam_bloque);
417                 cur += emu->tam_bloque;
418                 memcpy(cur, "<>", 2);
419                 cur += 2;
420                 free(tmp);
421                 
422                 /* En resto de los bloques no pongo el ID porque ya esta en el primero */
423                 for(i=1; i<cant_bloques; i++) {
424                         if ((tmp = emufs_tipo3_leer_bloque(emu, block+i, &err)) == NULL) {
425                                 /* Oops! ... un bloque no existe, todo mal! */
426                                 free(bloque);
427                                 return NULL;
428                         }
429                         memcpy(cur, tmp+sizeof(EMUFS_REG_ID), emu->tam_bloque-sizeof(EMUFS_REG_ID));
430                         cur += emu->tam_bloque - sizeof(EMUFS_REG_ID);
431                         memcpy(cur, "<>", 2);
432                         cur += 2;
433                         free(tmp);
434                 }
435                 (*cur) = '\0';
436         }
437         return bloque;
438 }