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 *----------------------------------------------------------------------------
29 #ifndef _JACU_VFILE_H_
30 #define _JACU_VFILE_H_
36 * Archivo virtual divisible en volúmenes.
38 * Interfaz 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 /** Mínimo tamaño de un volumen. */
45 #define VFMINVOLSIZE 4
47 /** Esquema del nombre a utilizar en los volumenes. */
48 #define VFNAMETEMPLATE "%s-%d"
50 /** Modo de uso del archivo virtual. */
53 VFREAD, /**< Modo lectura. */
54 VFWRITE /**< Modo escritura. */
59 * Archivo virtual divisible en volúmenes.
63 FILE* fp; /**< Puntero al archivo actual. */
64 char* name; /**< Nombre base del archivo. */
65 VFMODE mode; /**< Modo de uso del archivo. */
66 long volsize; /**< Tamaño de cada volumen. */
67 int lastvol; /**< 0 hay más volumenes para leer; 1 es el último. */
68 int currvol; /**< Volumen utilizado actualmente. */
69 long room; /**< Cantidad de bytes Posición actual del archivo virtual. */
74 * Abre un archivo virtual multivolumen.
76 * \param path Ruta del archivo a abrir.
77 * \param mode Modo con el cual abrir el archivo. Son iguales a los modos de
78 * <tt>fopen()</tt> pero no se pueden usar modos de lectura y
79 * escritura simultánea (<tt>r+</tt>, <tt>w+</tt>, <tt>a+</tt>).
80 * \param size Tamaño de los volúmenes. Si es menor a VFILE_MIN_VOLSIZE bytes
81 * no se divide el archivo.
83 * \return Puntero al archivo multivolumen abierto o 0 si no se pudo abrir.
86 VFILE* vfopen(const char* path, const char* mode, long size);
88 /** Cierra un archivo virtual multivolumen. */
89 int vfclose(VFILE* vfp);
91 /** Obtiene un caracter de un archivo virtual multivolumen. */
92 int vfgetc(VFILE* vfp);
94 /** Pone un caracter en un archivo virtual multivolumen. */
95 int vfputc(int c, VFILE* vfp);
97 /** Lee un conjunto de bytes de un archivo virtual multivolumen. */
98 size_t vfread(void* ptr, size_t size, size_t nmemb, VFILE* vfp);
100 /** Escribe un conjunto de bytes en un archivo virtual multivolumen. */
101 size_t vfwrite(const void *ptr, size_t size, size_t nmemb, VFILE* vfp);
103 /** Indica si es el fin del archivo multivolumen. */
104 int vfeof(VFILE* vfp);
106 #endif /* _JACU_VFILE_H_ */