1 /* vim: set noexpandtab tabstop=4 shiftwidth=4:
2 *----------------------------------------------------------------------------
4 *----------------------------------------------------------------------------
5 * This file is part of emufs.
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
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
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 *----------------------------------------------------------------------------
31 * Prueba de archivo \ref tipo3.h "tipo3".
40 int main(int argc, char *argv[])
44 EMUFS_REG_SIZE reg_size;
54 int err = 0, j, k, cant_bloques;
56 EMUFS_Estadisticas stats;
58 printf("Modo de uso : %s tam_bloque\n", argv[0]);
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");
79 fp = emufs_crear("articulos", T3, atoi(argv[1]), 100);
80 cant_bloques = fp->tam_reg/(fp->tam_bloque-sizeof(EMUFS_REG_ID)) +1;
81 if ( fp->tam_reg+sizeof(EMUFS_REG_ID) == fp->tam_bloque )
83 printf("cant de bloques = %lu\n",cant_bloques );
84 printf("GRABANDO REGISTROS....\n");
87 v[0+8*k] = fp->grabar_registro(fp, a, 100, &err);
88 v[1+8*k] = fp->grabar_registro(fp, c, 100, &err);
89 v[2+8*k] = fp->grabar_registro(fp, d, 100, &err);
90 v[3+8*k] = fp->grabar_registro(fp, e, 100, &err);
91 v[4+8*k] = fp->grabar_registro(fp, f, 100, &err);
92 v[5+8*k] = fp->grabar_registro(fp, g, 100, &err);
93 v[6+8*k] = fp->grabar_registro(fp, h, 100, &err);
94 v[7+8*k] = fp->grabar_registro(fp, i, 100, &err);
98 b_ptr = fp->leer_registro(fp, v[j], ®_size, &err);
99 printf("Recuperado %d: %s\n",v[j], b_ptr);
103 printf("BORRANDO REGISTROS....\n");
104 for (j=0; j<16; j+=2){
105 fp->borrar_registro(fp, v[j]);
106 printf("borrado : %lu\n", v[j]);
110 printf("GRABANDO REGISTROS....\n");
111 for ( k=0; k<2; k++){
112 v[0+8*k] = fp->grabar_registro(fp, a, 100, &err);
113 v[1+8*k] = fp->grabar_registro(fp, c, 100, &err);
114 v[2+8*k] = fp->grabar_registro(fp, d, 100, &err);
115 v[3+8*k] = fp->grabar_registro(fp, e, 100, &err);
116 v[4+8*k] = fp->grabar_registro(fp, f, 100, &err);
117 v[5+8*k] = fp->grabar_registro(fp, g, 100, &err);
118 v[6+8*k] = fp->grabar_registro(fp, h, 100, &err);
119 v[7+8*k] = fp->grabar_registro(fp, i, 100, &err);
122 printf("COMPACTANDO........\n");
124 printf("LEYENDO........\n");
125 for (j=0; j<24; j++){
126 b_ptr = fp->leer_registro(fp, j, ®_size, &err);
127 printf("Recuperado %d: %s\n",j, b_ptr);
130 printf("BORRANDO REGISTROS....\n");
131 for (j=10; j<21; j++){
132 fp->borrar_registro(fp, j);
133 printf("borrado : %lu\n", j);
135 printf("GRABANDO REGISTROS....\n");
136 for ( k=0; k<2; k++){
137 fp->grabar_registro(fp, a, 100, &err);
138 fp->grabar_registro(fp, c, 100, &err);
139 fp->grabar_registro(fp, d, 100, &err);
140 fp->grabar_registro(fp, e, 100, &err);
141 fp->grabar_registro(fp, f, 100, &err);
142 fp->grabar_registro(fp, g, 100, &err);
143 fp->grabar_registro(fp, h, 100, &err);
144 fp->grabar_registro(fp, i, 100, &err);
146 printf("BORRANDO REGISTROS....\n");
147 for (j=21; j<29; j++){
148 fp->borrar_registro(fp, j);
149 printf("borrado : %lu\n", j);
152 printf("COMPACTANDO........\n");
156 printf("BORRANDO REGISTROS....\n");
157 for (j=0; j<20; j+=3){
158 fp->borrar_registro(fp, j);
159 printf("borrado : %lu\n", j);
162 printf("COMPACTANDO........\n");
166 debug_ver_estadisticas(fp);