]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo3_main.c
linea de mas, pero sigo con el mismo problema de antes
[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 #ifdef SENIOR_PALOMO
43         EMUFS *fp;
44         EMUFS_REG_ID v[100];
45         EMUFS_REG_SIZE reg_size;
46         char a[100];
47         char c[100];
48         char d[100];
49         char e[100];
50         char f[100];
51         char g[100];
52         char h[100];
53         char i[100];
54         char* b_ptr;
55         int err = 0, j, k, cant_bloques;
56         
57         EMUFS_Estadisticas stats;
58         if (argc != 2) {
59                 printf("Modo de uso : %s tam_bloque\n", argv[0]);
60                 return 1;
61         }
62         
63         memset(a,'#',100);
64         memset(c,'#',100);
65         memset(d,'#',100);
66         memset(e,'#',100);
67         memset(f,'#',100);
68         memset(g,'#',100);
69         memset(h,'#',100);
70         memset(i,'#',100);
71         strcpy(a, "1234567890");
72         strcpy(c, "REGISTRO NUMERO 2. ESTE REGISTRO ES MUCHO MAS LARGO QUE EL UNO");
73         strcpy(d, "ABCDEFGHIJKL");
74         strcpy(e, "HOLA soy un registro nuevo, me llamo E");
75         strcpy(f, "yo soy F");
76         strcpy(g, "me llamo G y quiero estar en el bloque 1");
77         strcpy(h, "un registro nuevo que se llama H, acompania a G en el bloque 1");
78         strcpy(i, "me argrego despues de borrar a un registro");        
79         
80         fp = emufs_crear("articulos", T3, atoi(argv[1]), 100);
81         cant_bloques = fp->tam_reg/(fp->tam_bloque-sizeof(EMUFS_REG_ID)) +1;
82         if ( fp->tam_reg+sizeof(EMUFS_REG_ID) == fp->tam_bloque ) 
83                 cant_bloques = 1;
84         printf("cant de bloques = %lu\n",cant_bloques );
85         printf("GRABANDO REGISTROS....\n");
86         
87         for ( k=0; k<2; k++){
88         v[0+8*k] = fp->grabar_registro(fp, a, 100, &err);
89         v[1+8*k] = fp->grabar_registro(fp, c, 100, &err);
90         v[2+8*k] = fp->grabar_registro(fp, d, 100, &err);
91         v[3+8*k] = fp->grabar_registro(fp, e, 100, &err);
92         v[4+8*k] = fp->grabar_registro(fp, f, 100, &err);
93         v[5+8*k] = fp->grabar_registro(fp, g, 100, &err);
94         v[6+8*k] = fp->grabar_registro(fp, h, 100, &err);
95         v[7+8*k] = fp->grabar_registro(fp, i, 100, &err);
96         }
97
98         for (j=0; j<16; j++){   
99                 b_ptr = fp->leer_registro(fp, v[j], &reg_size, &err);
100                 printf("Recuperado %d: %s\n",v[j], b_ptr);
101                 free(b_ptr);
102         }
103         ver_archivo_FS(fp);     
104         printf("BORRANDO REGISTROS....\n");
105         for (j=0; j<16; j+=2){  
106                 fp->borrar_registro(fp, v[j]);
107                 printf("borrado : %lu\n", v[j]);
108         }
109         ver_archivo_FS(fp);     
110         
111         printf("GRABANDO REGISTROS....\n");
112         for ( k=0; k<2; k++){
113         v[0+8*k] = fp->grabar_registro(fp, a, 100, &err);
114         v[1+8*k] = fp->grabar_registro(fp, c, 100, &err);
115         v[2+8*k] = fp->grabar_registro(fp, d, 100, &err);
116         v[3+8*k] = fp->grabar_registro(fp, e, 100, &err);
117         v[4+8*k] = fp->grabar_registro(fp, f, 100, &err);
118         v[5+8*k] = fp->grabar_registro(fp, g, 100, &err);
119         v[6+8*k] = fp->grabar_registro(fp, h, 100, &err);
120         v[7+8*k] = fp->grabar_registro(fp, i, 100, &err);
121         }
122         ver_archivo_FS(fp);
123         printf("COMPACTANDO........\n");
124         fp->compactar(fp);
125         printf("LEYENDO........\n");
126         for (j=0; j<24; j++){   
127                 b_ptr = fp->leer_registro(fp, j, &reg_size, &err);
128                 printf("Recuperado %d: %s\n",j, b_ptr);
129                 free(b_ptr);
130         }
131         printf("BORRANDO REGISTROS....\n");
132         for (j=10; j<21; j++){  
133                 fp->borrar_registro(fp, j);
134                 printf("borrado : %lu\n", j);
135         }
136         printf("GRABANDO REGISTROS....\n");
137         for ( k=0; k<2; k++){
138                 fp->grabar_registro(fp, a, 100, &err);
139                 fp->grabar_registro(fp, c, 100, &err);
140                 fp->grabar_registro(fp, d, 100, &err);
141                 fp->grabar_registro(fp, e, 100, &err);
142                 fp->grabar_registro(fp, f, 100, &err);
143                 fp->grabar_registro(fp, g, 100, &err);
144                 fp->grabar_registro(fp, h, 100, &err);
145                 fp->grabar_registro(fp, i, 100, &err);
146         }
147         printf("BORRANDO REGISTROS....\n");
148         for (j=21; j<29; j++){  
149                 fp->borrar_registro(fp, j);
150                 printf("borrado : %lu\n", j);
151         }
152
153         printf("COMPACTANDO........\n");
154         fp->compactar(fp);
155 ver_archivo_FS(fp);
156
157         printf("BORRANDO REGISTROS....\n");
158         for (j=0; j<20; j+=3){  
159                 fp->borrar_registro(fp, j);
160                 printf("borrado : %lu\n", j);
161         }
162         /*
163         printf("COMPACTANDO........\n");
164         fp->compactar(fp);
165         */
166 ver_archivo_FS(fp);
167         debug_ver_estadisticas(fp);
168                 emufs_destruir(fp);
169 #endif
170         return 0;
171 }