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, max, min, j;
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 printf("cant de bloques = %d\n", fp->tam_reg/(fp->tam_bloque-sizeof(EMUFS_REG_ID)) +1);
81 printf("GRABANDO REGISTROS....\n");
82 v[0] = fp->grabar_registro(fp, a, 100, &err);
83 v[1] = fp->grabar_registro(fp, c, 100, &err);
84 v[2] = fp->grabar_registro(fp, d, 100, &err);
85 v[3] = fp->grabar_registro(fp, e, 100, &err);
86 v[4] = fp->grabar_registro(fp, f, 100, &err);
87 v[5] = fp->grabar_registro(fp, g, 100, &err);
88 v[6] = fp->grabar_registro(fp, h, 100, &err);
89 v[7] = fp->grabar_registro(fp, i, 100, &err);
92 printf("Grabado : %d\n", v[j]);
94 printf("RECUPERANDO REGISTROS....\n");
96 b_ptr = fp->leer_registro(fp, v[j], ®_size, &err);
97 printf("Recuperado : %s\n", b_ptr);
100 printf("BORRANDO REGISTROS....\n");
101 for (j=0; j<8; j+=2){
102 fp->borrar_registro(fp, v[j]);
103 printf("borrado : %d\n", v[j]);
106 for (j=1; j<8; j+=2){
107 b_ptr = fp->leer_registro(fp, v[j], ®_size, &err);
108 printf("Recuperado : %s\n", b_ptr);
111 printf("COMPACTANDO........\n");
114 for (j=1; j<8; j+=2){
115 b_ptr = fp->leer_registro(fp, v[j], ®_size, &err);
116 printf("Recuperado : %s\n", b_ptr);
119 printf("GRABANDO REGISTROS....\n");
120 v[0] = fp->grabar_registro(fp, a, 100, &err);
121 v[1] = fp->grabar_registro(fp, c, 100, &err);
122 v[2] = fp->grabar_registro(fp, d, 100, &err);
123 v[3] = fp->grabar_registro(fp, e, 100, &err);
124 v[4] = fp->grabar_registro(fp, f, 100, &err);
125 v[5] = fp->grabar_registro(fp, g, 100, &err);
126 v[6] = fp->grabar_registro(fp, h, 100, &err);
127 v[7] = fp->grabar_registro(fp, i, 100, &err);
128 v[4] = fp->grabar_registro(fp, f, 100, &err);
129 v[5] = fp->grabar_registro(fp, g, 100, &err);
130 v[6] = fp->grabar_registro(fp, h, 100, &err);
131 v[7] = fp->grabar_registro(fp, i, 100, &err);
134 printf("BORRANDO REGISTROS....\n");
135 for (j=0; j<16; j+=3){
136 fp->borrar_registro(fp, v[j]);
137 printf("borrado : %d\n", v[j]);
141 printf("COMPACTANDO........\n");
145 stats = fp->leer_estadisticas(fp);
146 printf("Size del Archivo de datos: %lu\n",stats.tam_archivo_bytes);
147 printf("Cantidad de Registros en el Archivo de datos: %lu\n",stats.tam_archivo);
148 printf("Total de espacio libre en el .dat: %lu\n",stats.total_fs);
149 printf("Minimo espacio libre en bloque o gap: %lu\n",stats.min_fs);
150 printf("Maximo espacio libre en bloque o gap: %lu\n",stats.max_fs);
151 printf("Media de espacio libre en bloque o gap: %lu\n",stats.media_fs);
152 printf("Cantidad en bytes de informacion de control: %lu\n",stats.info_control);