]> git.llucax.com Git - z.facultad/75.06/jacu.git/blob - src/vfile/vfile.c
Parece andar todo bien.
[z.facultad/75.06/jacu.git] / src / vfile / vfile.c
1 /* vim: set noexpandtab tabstop=4 shiftwidth=4 wrap:
2  *----------------------------------------------------------------------------
3  *                                  jacu
4  *----------------------------------------------------------------------------
5  * This file is part of jacu.
6  *
7  * jacu 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  * jacu 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 jacu; if not, write to the Free Software Foundation, Inc., 59 Temple
19  * Place, Suite 330, Boston, MA  02111-1307  USA
20  *----------------------------------------------------------------------------
21  * Creado:  mié jun 16 14:04:55 ART 2004
22  * Autores: Leandro Lucarella <llucare@fi.uba.ar>
23  *----------------------------------------------------------------------------
24  *
25  * $Id: bufford.c 624 2004-05-30 20:18:04Z llucare $
26  *
27  */
28
29 #include "common.h"
30 #include "vfile.h"
31 #include <malloc.h>
32 #include <string.h>
33
34 /** \file
35  *
36  * Archivo virtual divisible en volúmenes.
37  * 
38  * Implementación de un archivo virtual divisible en volúmenes.
39  * Provee algunas funciones compatibles con la stdio de ANSI C para utilizar
40  * de forma transparente archivos virtuales divididos en varios volúmenes.
41  *
42  */
43
44 /** Abre un volumen. */
45 int vfvol_open_next(VFILE* vfp);
46
47 /** Cierra un volumen. */
48 int vfvol_close(VFILE* vfp);
49
50 VFILE* vfopen(const char* path, const char* mode, long volsize)
51 {
52         VFILE* vfp = malloc(sizeof(VFILE));
53         if (!vfp) return 0; /* no hay más memoria */
54         if (volsize < VFMINVOLSIZE) /* tamaño de volumen inválido. */
55         {
56                 PERR("vfopen: volsize = 0");
57                 vfp->volsize = 0;
58         }
59         else /* tamaño de volumen válido. */
60         {
61                 vfp->volsize = --volsize; /* Uno menos para guardar cabecera. */
62         }
63          /* Chequeo que sea un modo correcto. */
64         if (mode[0] == 'r' && mode[1] != '+')      vfp->mode = VFREAD;
65         else if (mode[0] == 'w' && mode[1] != '+') vfp->mode = VFWRITE;
66         else /* no es un modo válido. */
67         {
68                 PERR("vfopen: modo inválido!");
69                 free(vfp);
70                 return 0;
71         }
72         if (!(vfp->name = str_dup(path))) /* no hay más memoria */
73         {
74                 PERR("vfopen: no se pudo hacer str_dup!");
75                 free(vfp);
76                 return 0;
77         }
78         /* Abrimos primer archivo de los volumenes. */
79         vfp->currvol = -1;
80         if (vfvol_open_next(vfp)) /* no se pudo abrir el primer volumen. */
81         {
82                 PERR("vfopen: no se pudo abrir archivo inicial!");
83                 free(vfp->name);
84                 free(vfp);
85                 return 0;
86         }
87         return vfp; /* todo ok. */
88 }
89
90 int vfclose(VFILE* vfp)
91 {
92         int ret;
93         vfp->lastvol = 1; /* es el último volumen. */
94         ret = vfvol_close(vfp);
95         free(vfp->name);
96         free(vfp);
97         return ret;
98 }
99
100 int vfgetc(VFILE* vfp)
101 {
102         int c;
103         if ((c = fgetc(vfp->fp)) == EOF)
104         {
105                 PERR("vfgetc: fgetc == EOF!");
106                 if (vfp->lastvol) return EOF; /* último volumen. */
107                 if (vfvol_close(vfp)) return EOF; /* error al cerrar. */
108                 if (vfvol_open_next(vfp)) return EOF; /* error al abrir. */
109                 c = fgetc(vfp->fp); /* obtengo caracter */
110         }
111         /* vfp->currpos++; */
112         return c;
113 }
114
115 int vfputc(int c, VFILE* vfp)
116 {
117         /* Si no es multivolumen o hay lugar, agrego y salgo. */
118         if (!vfp->volsize || vfp->room--) return fputc(c, vfp->fp);
119         PERR("vfputc: Necesito otro volumen!\n");
120         /* Si no hay lugar, abro otro volumen. */
121         if (vfvol_close(vfp)) return EOF; /* error al cerrar. */
122         if (vfvol_open_next(vfp)) return EOF; /* error al abrir. */
123         vfp->room--; /* resto de nuevo el espacio porque al abrirlo lo resetea. */
124         return fputc(c, vfp->fp);
125 }
126
127 size_t vfread(void* ptr, size_t size, size_t nmemb, VFILE* vfp)
128 {
129         return 0;
130 }
131
132 size_t vfwrite(const void *ptr, size_t size, size_t nmemb, VFILE* vfp)
133 {
134         return 0;
135 }
136
137 int vfvol_close(VFILE* vfp)
138 {
139         /* Si es de escritura tengo que guardar la cabecera. */
140         if (vfp->mode == VFWRITE)
141         {
142                 int ret;
143                 PERR("vfvol_close: modo == VFWRITE");
144                 /* Me posiciono al principio del archivo. */
145                 if ((ret = fseek(vfp->fp, 0l, SEEK_SET))) return ret; /* fseek error. */
146                 /* Guardo cabecera para indicar si es el último volumen o no. */
147                 if ((ret = fputc(vfp->lastvol, vfp->fp))) return ret; /* fputc error. */
148         }
149         return fclose(vfp->fp);
150 }
151
152 int vfvol_open_next(VFILE* vfp)
153 {
154         char* volname = 0;
155         char* name    = vfp->name; /* si es el archivo principal uso el nombre. */
156         PERR("vfvol_open_next: ping");
157         if (vfp->currvol >= 0) /* si no es el archivo principal. */
158         {
159                 PERR("vfvol_open_next: No es el archivo principal");
160                 /* 1 para el \0 y sizeof(int) * 3 para el número de volumen. */
161                 volname = malloc(strlen(vfp->name) + 1 + sizeof(int) * 3);
162                 if (!volname) return 1; /* no hay más memoria */
163                 /* Construyo el nombre del archivo. */
164                 sprintf(volname, VFNAMETEMPLATE, vfp->name, vfp->currvol + 1);
165                 name = volname; /* uso este nuevo nombre. */
166         }
167         /* Abro dependiendo del modo. */
168         if (!(vfp->fp = fopen(name, (vfp->mode == VFREAD) ? "r" : "w")))
169         {
170                 PERR("vfvol_open_next: error al abrir!");
171                 if (volname) free(volname);
172                 return 2; /* error al abrir. */
173         }
174         vfp->currvol++;
175         if (volname) free(volname);
176         /* Si es para lectura, me fijo si es el últio a leer. */
177         if (vfp->mode == VFREAD) vfp->lastvol = fgetc(vfp->fp);
178         /* Si es para escritura, guardo header dummy (supongo que es el último). */
179         if (vfp->mode == VFWRITE)
180         {
181                 vfp->room = vfp->volsize;
182                 return !fputc(1, vfp->fp);
183         }
184         return 0;
185 }
186