1 /* vim: set noexpandtab tabstop=4 shiftwidth=4 wrap:
2 *----------------------------------------------------------------------------
4 *----------------------------------------------------------------------------
5 * This file is part of jacu.
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
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
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 *----------------------------------------------------------------------------
25 * $Id: bufford.c 624 2004-05-30 20:18:04Z llucare $
36 * Archivo virtual divisible en volúmenes.
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.
44 /** Abre un volumen. */
45 int vfvol_open_next(VFILE* vfp);
47 /** Cierra un volumen. */
48 int vfvol_close(VFILE* vfp);
50 VFILE* vfopen(const char* path, const char* mode, long volsize)
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. */
56 PERR("vfopen: volsize = 0");
59 else /* tamaño de volumen válido. */
61 vfp->volsize = --volsize; /* Uno menos para guardar cabecera. */
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. */
68 PERR("vfopen: modo inválido!");
72 if (!(vfp->name = str_dup(path))) /* no hay más memoria */
74 PERR("vfopen: no se pudo hacer str_dup!");
78 /* Abrimos primer archivo de los volumenes. */
80 if (vfvol_open_next(vfp)) /* no se pudo abrir el primer volumen. */
82 PERR("vfopen: no se pudo abrir archivo inicial!");
87 return vfp; /* todo ok. */
90 int vfclose(VFILE* vfp)
93 vfp->lastvol = 1; /* es el último volumen. */
94 ret = vfvol_close(vfp);
100 int vfgetc(VFILE* vfp)
103 if ((c = fgetc(vfp->fp)) == EOF)
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 */
111 /* vfp->currpos++; */
115 int vfputc(int c, VFILE* vfp)
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);
127 size_t vfread(void* ptr, size_t size, size_t nmemb, VFILE* vfp)
132 size_t vfwrite(const void *ptr, size_t size, size_t nmemb, VFILE* vfp)
137 int vfvol_close(VFILE* vfp)
139 /* Si es de escritura tengo que guardar la cabecera. */
140 if (vfp->mode == VFWRITE)
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. */
149 return fclose(vfp->fp);
152 int vfvol_open_next(VFILE* vfp)
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. */
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. */
167 /* Abro dependiendo del modo. */
168 if (!(vfp->fp = fopen(name, (vfp->mode == VFREAD) ? "r" : "w")))
170 PERR("vfvol_open_next: error al abrir!");
171 if (volname) free(volname);
172 return 2; /* error al abrir. */
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)
181 vfp->room = vfp->volsize;
182 return !fputc(1, vfp->fp);