]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo3_main.c
Borrado de registros ya funciona entero dado que se arreglo el idx_borrar. Rutina...
[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 "idx.h"
39 #include "fsc.h"
40
41
42 int main(int argc, char *argv[])
43 {
44         EMUFS *fp;
45         EMUFS_REG_ID n1, n2, n3, n4, n5, n6, n7, n8;
46         EMUFS_REG_SIZE reg_size;
47         char a[100];
48         char b[100];
49         char c[100];
50         char d[100];
51         char e[100];
52         char f[100];
53         char g[100];
54         char h[100];
55         char i[100];
56         char* b_ptr;
57         int err = 0;
58
59         if (argc != 2) {
60                 printf("Modo de uso : %s tam_bloque\n", argv[0]);
61                 return 1;
62         }
63
64         if (atoi(argv[1]) < 104) {
65                 printf("El tamaño de bloque debe ser mayor a 104\n");
66                 return 1;
67         }
68
69         strcpy(a, "1234567890");
70         strcpy(c, "REGISTRO NUMERO 2. ESTE REGISTRO ES MUCHO MAS LARGO QUE EL UNO");
71         strcpy(d, "ABCDEFGHIJKL");
72         strcpy(e, "HOLA soy un registro nuevo, me llamo E");
73         strcpy(f, "yo soy F");
74         strcpy(g, "me llamo G y quiero estar en el bloque 1");
75         strcpy(h, "un registro nuevo que se llama H, acompania a G en el bloque 1");
76         strcpy(i, "me argrego despues de borrar a un registro");        
77         
78         fp = emufs_crear("articulos", T3, atoi(argv[1]), 100);
79
80         n1 = fp->grabar_registro(fp, a, 100, &err);
81         n2 = fp->grabar_registro(fp, c, 100, &err);
82         n3 = fp->grabar_registro(fp, d, 100, &err);
83         n4 = fp->grabar_registro(fp, e, 100, &err);
84         n5 = fp->grabar_registro(fp, f, 100, &err);
85         n6 = fp->grabar_registro(fp, g, 100, &err);
86         n7 = fp->grabar_registro(fp, h, 100, &err);
87         n8 = fp->grabar_registro(fp, i, 100, &err);
88
89     ver_archivo_FS(fp);
90         
91         if ( fp->borrar_registro(fp, n1) == -1) printf("la cague %d\n",n1);
92         if ( fp->borrar_registro(fp, n2) == -1) printf("la cague %d\n",n2);
93         if ( fp->borrar_registro(fp, n3) == -1) printf("la cague %d\n",n3);
94         if ( fp->borrar_registro(fp, n4) == -1) printf("la cague %d\n",n4);
95         if ( fp->borrar_registro(fp, n5) == -1) printf("la cague %d\n",n5);
96 /*      if ( fp->borrar_registro(fp, n6) == -1) printf("la cague %d\n",n6);     
97         if ( fp->borrar_registro(fp, n7) == -1) printf("la cague %d\n",n7);
98         if ( fp->borrar_registro(fp, n8) == -1) printf("la cague %d\n",n8);     
99         */
100         b_ptr = fp->leer_registro(fp, n7, &reg_size, &err);
101         
102         printf("Recuperado : %s\n", b_ptr);
103
104         free(b_ptr);
105
106         ver_archivo_FS(fp);
107         
108         printf("la cantidad de registros eeeeesssss: %d\n", emufs_idx_get_count(fp));
109         printf("la cantidad de espacio libre es: %d\n", emufs_fsc_get_total_fs(fp));
110         
111         emufs_destruir(fp);
112         
113         return 0;
114 }