]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo2_main.c
- El archivo del tipo 2 ya mete registros y los borra (falta fixear el emufs_ifx_borr...
[z.facultad/75.06/emufs.git] / emufs / tipo2_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:  Fri Apr 09 18:24:00 ART 2004
22  * Autores: Alan Kennedy <kennedya@3dgames.com.ar>
23  *----------------------------------------------------------------------------
24  *
25  */
26
27 /****************************/
28 /* Prueba de archivo TIPO 2 */
29 /****************************/
30
31 #include <stdio.h>
32 #include <string.h>
33 #include "emufs.h"
34
35 int main(int argc, char *argv[])
36 {
37         EMUFS *fp;
38         EMUFS_REG_ID n1, n2, n3, n4, n5, n6, n7, n8;
39         char a[11];
40         char b[63];
41         char c[13];
42         char d[8];
43         char e[39];
44         char f[9];
45         char g[41];
46         char h[63];
47         char i[43];
48         int err = 0;
49
50         strcpy(a, "1234567890");
51         strcpy(b, "REGISTRO NUMERO 2. ESTE REGISTRO ES MUCHO MAS LARGO QUE EL UNO");
52         strcpy(c, "ABCDEFGHIJKL");
53         strcpy(d, "D chico");
54         strcpy(e, "HOLA soy un registro nuevo, me llamo E");
55         strcpy(f, "yo soy F");
56         strcpy(g, "me llamo G y quiero estar en el bloque 1");
57         strcpy(h, "un registro nuevo que se llama H, acompania a G en el bloque 1");
58         strcpy(i, "me argrego despues de borrar a un registro");        
59         
60         /* Creamos el archivo Tipo 2. Pasamos blocksize = 0 y Regsize = 0 pues estar */
61         /* variable. */
62         fp = emufs_crear("articulos", T2, 0, 0);
63         
64         /* Grabamos un par de registros */
65         n1 = fp->grabar_registro(fp, a, 11, &err);
66         n2 = fp->grabar_registro(fp, b, 63, &err);
67         n3 = fp->grabar_registro(fp, c, 13, &err);
68         n4 = fp->grabar_registro(fp, d, 8, &err);
69         n5 = fp->grabar_registro(fp, e, 39, &err);
70         n6 = fp->grabar_registro(fp, f, 9, &err);
71         n7 = fp->grabar_registro(fp, g, 41, &err);
72         n8 = fp->grabar_registro(fp, h, 63, &err);
73
74         /* Borramos un registro del medio */
75         printf("tipo2_main.c >> Borrando registro: %lu\n",n1);
76         fp->borrar_registro(fp, n1);
77         printf("tipo2_main.c >> Borrando registro: %lu\n",n6);
78         fp->borrar_registro(fp, n6);    
79         printf("tipo2_main.c >> Borrando registro: %lu\n",n2);
80         fp->borrar_registro(fp, n2);
81         printf("tipo2_main.c >> Borrando registro: %lu\n",n8);
82         fp->borrar_registro(fp, n8);
83         printf("tipo2_main.c >> Borrando registro: %lu\n",n4);
84         fp->borrar_registro(fp, n4);
85         printf("tipo2_main.c >> Borrando registro: %lu\n",n7);
86         fp->borrar_registro(fp, n7);    
87         
88           
89         /*n8 = fp->grabar_registro(fp, i, 100);
90         fp->leer_registro(fp, n8, b, 100);
91
92         printf("Recuperado : %s\n", b);
93
94         ver_archivo_FS(fp);*/
95         
96         emufs_destruir(fp);
97         
98         return 0;
99 }