]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/tipo3_main.c
* Modificacion parcial (porque no graba) de Facturas.
[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         EMUFS *fp;
43         EMUFS_REG_ID v[8];
44         EMUFS_REG_SIZE reg_size;
45         char a[100];
46         char c[100];
47         char d[100];
48         char e[100];
49         char f[100];
50         char g[100];
51         char h[100];
52         char i[100];
53         char* b_ptr;
54         int err = 0, max, min, j;
55         
56         EMUFS_Estadisticas s;
57         if (argc != 2) {
58                 printf("Modo de uso : %s tam_bloque\n", argv[0]);
59                 return 1;
60         }
61         strcpy(a, "1234567890");
62         strcpy(c, "REGISTRO NUMERO 2. ESTE REGISTRO ES MUCHO MAS LARGO QUE EL UNO");
63         strcpy(d, "ABCDEFGHIJKL");
64         strcpy(e, "HOLA soy un registro nuevo, me llamo E");
65         strcpy(f, "yo soy F");
66         strcpy(g, "me llamo G y quiero estar en el bloque 1");
67         strcpy(h, "un registro nuevo que se llama H, acompania a G en el bloque 1");
68         strcpy(i, "me argrego despues de borrar a un registro");        
69         
70         fp = emufs_crear("articulos", T3, atoi(argv[1]), 100);
71
72         v[0] = fp->grabar_registro(fp, a, 100, &err);
73         v[1] = fp->grabar_registro(fp, c, 100, &err);
74         v[2] = fp->grabar_registro(fp, d, 100, &err);
75         v[3] = fp->grabar_registro(fp, e, 100, &err);
76         v[4] = fp->grabar_registro(fp, f, 100, &err);
77         v[5] = fp->grabar_registro(fp, g, 100, &err);
78         v[6] = fp->grabar_registro(fp, h, 100, &err);
79         v[7] = fp->grabar_registro(fp, i, 100, &err);
80         
81         for (j=0; j<8; j++){    
82                 b_ptr = fp->leer_registro(fp, v[j], &reg_size, &err);
83                 printf("Recuperado : %s\n", b_ptr);
84         }
85         
86         for (j=0; j<8; j++){    
87                 fp->borrar_registro(fp, v[j]);
88                 printf("borrado : %d\n", v[j]);
89         }
90         ver_archivo_FS(fp);
91         
92         v[0] = fp->grabar_registro(fp, a, 100, &err);
93         v[1] = fp->grabar_registro(fp, c, 100, &err);
94         v[2] = fp->grabar_registro(fp, d, 100, &err);
95         v[3] = fp->grabar_registro(fp, e, 100, &err);
96         v[4] = fp->grabar_registro(fp, f, 100, &err);
97         v[5] = fp->grabar_registro(fp, g, 100, &err);
98         v[6] = fp->grabar_registro(fp, h, 100, &err);
99         v[7] = fp->grabar_registro(fp, i, 100, &err);
100         
101         free(b_ptr);
102         ver_archivo_FS(fp);
103
104 emufs_destruir(fp);
105         
106         return 0;
107 }