]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo3_main.c
Algunos detalles de coding style y pruebas de stats.
[z.facultad/75.06/emufs.git] / emufs / tipo3_main.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  * Prueba de archivo \ref tipo3.h "tipo3".
32  * 
33  */
34
35 #include <stdio.h>
36 #include <string.h>
37 #include "emufs.h"
38 #include "fsc.h"
39
40 int main(int argc, char *argv[])
41 {
42         EMUFS *fp;
43         EMUFS_REG_ID v[100];
44         EMUFS_REG_SIZE reg_size;
45         char a[100];
46         char c[100];
47         char d[100];
48         char e[100];
49         char f[100];
50         char g[100];
51         char h[100];
52         char i[100];
53         char* b_ptr;
54         int err = 0, j, k;
55         
56         EMUFS_Estadisticas stats;
57         if (argc != 2) {
58                 printf("Modo de uso : %s tam_bloque\n", argv[0]);
59                 return 1;
60         }
61         
62         memset(a,'#',100);
63         memset(c,'#',100);
64         memset(d,'#',100);
65         memset(e,'#',100);
66         memset(f,'#',100);
67         memset(g,'#',100);
68         memset(h,'#',100);
69         memset(i,'#',100);
70         strcpy(a, "1234567890");
71         strcpy(c, "REGISTRO NUMERO 2. ESTE REGISTRO ES MUCHO MAS LARGO QUE EL UNO");
72         strcpy(d, "ABCDEFGHIJKL");
73         strcpy(e, "HOLA soy un registro nuevo, me llamo E");
74         strcpy(f, "yo soy F");
75         strcpy(g, "me llamo G y quiero estar en el bloque 1");
76         strcpy(h, "un registro nuevo que se llama H, acompania a G en el bloque 1");
77         strcpy(i, "me argrego despues de borrar a un registro");        
78         
79         fp = emufs_crear("articulos", T3, atoi(argv[1]), 100);
80         printf("cant de bloques = %lu\n", fp->tam_reg/(fp->tam_bloque-sizeof(EMUFS_REG_ID)) +1);
81         printf("GRABANDO REGISTROS....\n");
82         
83         for ( k=0; k<2; k++){
84         v[0+8*k] = fp->grabar_registro(fp, a, 100, &err);
85         v[1+8*k] = fp->grabar_registro(fp, c, 100, &err);
86         v[2+8*k] = fp->grabar_registro(fp, d, 100, &err);
87         v[3+8*k] = fp->grabar_registro(fp, e, 100, &err);
88         v[4+8*k] = fp->grabar_registro(fp, f, 100, &err);
89         v[5+8*k] = fp->grabar_registro(fp, g, 100, &err);
90         v[6+8*k] = fp->grabar_registro(fp, h, 100, &err);
91         v[7+8*k] = fp->grabar_registro(fp, i, 100, &err);
92         }
93
94         for (j=0; j<16; j++){   
95                 b_ptr = fp->leer_registro(fp, v[j], &reg_size, &err);
96                 printf("Recuperado %d: %s\n",v[j], b_ptr);
97                 free(b_ptr);
98         }
99         printf("BORRANDO REGISTROS....\n");
100         for (j=0; j<16; j+=2){  
101                 fp->borrar_registro(fp, v[j]);
102                 printf("borrado : %lu\n", v[j]);
103         }
104         printf("GRABANDO REGISTROS....\n");
105         
106         for ( k=0; k<2; k++){
107         v[0+8*k] = fp->grabar_registro(fp, a, 100, &err);
108         v[1+8*k] = fp->grabar_registro(fp, c, 100, &err);
109         v[2+8*k] = fp->grabar_registro(fp, d, 100, &err);
110         v[3+8*k] = fp->grabar_registro(fp, e, 100, &err);
111         v[4+8*k] = fp->grabar_registro(fp, f, 100, &err);
112         v[5+8*k] = fp->grabar_registro(fp, g, 100, &err);
113         v[6+8*k] = fp->grabar_registro(fp, h, 100, &err);
114         v[7+8*k] = fp->grabar_registro(fp, i, 100, &err);
115         }
116         printf("COMPACTANDO........\n");
117         fp->compactar(fp);
118         printf("LEYENDO........\n");
119         for (j=0; j<16; j++){   
120                 b_ptr = fp->leer_registro(fp, v[j], &reg_size, &err);
121                 printf("Recuperado %d: %s\n",v[j], b_ptr);
122                 free(b_ptr);
123         }
124
125         /*
126         printf("COMPACTANDO........\n");
127         fp->compactar(fp);
128
129 ver_archivo_FS(fp);
130         
131         for (j=1; j<40; j+=2){  
132                 b_ptr = fp->leer_registro(fp, v[j], &reg_size, &err);
133                 printf("Recuperado %d: %s\n",v[j], b_ptr);
134                 free(b_ptr);
135         }
136
137 /*
138         for (j=1; j<8; j+=2){   
139                 b_ptr = fp->leer_registro(fp, v[j], &reg_size, &err);
140                 printf("Recuperado : %s\n", b_ptr);
141                 free(b_ptr);
142         }
143
144         printf("GRABANDO REGISTROS....\n");
145         v[0] = fp->grabar_registro(fp, a, 100, &err);
146         v[1] = fp->grabar_registro(fp, c, 100, &err);
147         v[2] = fp->grabar_registro(fp, d, 100, &err);
148         v[3] = fp->grabar_registro(fp, e, 100, &err);
149         v[4] = fp->grabar_registro(fp, f, 100, &err);
150         v[5] = fp->grabar_registro(fp, g, 100, &err);
151         v[6] = fp->grabar_registro(fp, h, 100, &err);
152         v[7] = fp->grabar_registro(fp, i, 100, &err);
153         v[4] = fp->grabar_registro(fp, f, 100, &err);
154         v[5] = fp->grabar_registro(fp, g, 100, &err);
155         v[6] = fp->grabar_registro(fp, h, 100, &err);
156         v[7] = fp->grabar_registro(fp, i, 100, &err);
157
158
159         printf("BORRANDO REGISTROS....\n");
160         for (j=0; j<8; j+=3){
161                 fp->borrar_registro(fp, v[j]);
162                 printf("borrado : %lu\n", v[j]);
163         }
164         
165
166         printf("COMPACTANDO........\n");
167         fp->compactar(fp);
168         
169         
170         stats = fp->leer_estadisticas(fp);
171         printf("Size del Archivo de datos: %lu\n",stats.tam_archivo_bytes);
172         printf("Cantidad de Registros en el Archivo de datos: %lu\n",stats.tam_archivo);        
173         printf("Total de espacio libre en el .dat: %lu\n",stats.total_fs);
174         printf("Minimo espacio libre en bloque o gap: %lu\n",stats.min_fs);
175         printf("Maximo espacio libre en bloque o gap: %lu\n",stats.max_fs);     
176         printf("Media de espacio libre en bloque o gap: %lu\n",stats.media_fs); 
177         printf("Cantidad en bytes de informacion de control: %lu\n",stats.info_control);
178
179         ver_archivo_FS(fp);
180 */
181         emufs_destruir(fp);
182         return 0;
183 }