1 /* vim: set noexpandtab tabstop=4 shiftwidth=4:
2 *----------------------------------------------------------------------------
4 *----------------------------------------------------------------------------
5 * This file is part of emufs.
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
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
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: vie abr 9 16:17:50 ART 2004
22 * Autores: Nicolás Dimov <sagardua@uolsinectis.com.ar>
23 * Leandro Lucarella <llucare@fi.uba.ar>
24 *----------------------------------------------------------------------------
32 * Archivo para administrar el espacio libre disponible.
34 * Interfaz del archivo para administrar el espacio libre disponible.
43 #define EMUFS_FSC_EXT ".fsc"
45 typedef struct emufs_fsc_t {
46 unsigned long int marker;
47 unsigned long int freespace;
50 /** Crea un archivo de Gaps o Espacio Libre en Bloque */
51 int emufs_fsc_crear(EMUFS *emu);
53 /** Agrega un registro al archivo de espacio libre en bloque. */
54 int emufs_fsc_agregar(EMUFS *emu, EMUFS_BLOCK_ID block, EMUFS_FREE fs);
56 /** Agrega un GAP en el archivo de Gaps para Filetype 2 */
57 int emufs_fsc_agregar_gap(EMUFS *emu, EMUFS_OFFSET off, EMUFS_FREE fs);
59 /** Elimina un registro GAP del archivo de espacios libres (gaps) */
60 int emufs_fsc_remove_gap(EMUFS *emu, EMUFS_OFFSET off);
62 /** Actualiza un registro de gap, en el archivo de Gaps en Disco */
63 int emufs_fsc_actualizar_gap(EMUFS *emu, EMUFS_OFFSET off, EMUFS_FREE fs);
65 /** Actualiza un registro de espacio libre de acorde al FType */
66 int emufs_fsc_actualizar(EMUFS *emu, EMUFS_BLOCK_ID block, EMUFS_FREE fs);
68 /** Me devuelve el ID del bloque u Offset del Gap donde quepa un registro,
69 * y guarda en \param n_freespace el espacio libre actualizado
71 EMUFS_BLOCK_ID emufs_fsc_buscar_lugar(EMUFS *emu, EMUFS_FREE reg_size, EMUFS_FREE *n_freespace);
73 /** Devuelve el espacio libre de un Bloque o Gap dado */
74 EMUFS_FREE emufs_fsc_get_fs(EMUFS *emu, EMUFS_BLOCK_ID block);
76 /** Devuelve el espacio libre total en el archivo*/
77 EMUFS_FREE emufs_fsc_get_total_fs(EMUFS *emu);
79 /** Devuelve el promedio del espacio libre en el archivo */
80 EMUFS_FREE emufs_fsc_get_media_fs(EMUFS *emu);
82 /** Almacena en \param min el minimo espacio libre y en \param max el maximo espacio libre */
83 int emufs_fsc_get_max_min_fs(EMUFS *emu, EMUFS_FREE *min, EMUFS_FREE *max);
85 /** Trunca el archivo hasta el bloque \param block*/
86 int emufs_fsc_truncate(EMUFS *emu, EMUFS_BLOCK_ID block);
88 /** Devuelve la cantidad de bloques vacios en el archivo*/
89 int emufs_fsc_get_cant_bloques_vacios(EMUFS *emu);
90 #endif /* _EMUFS_FSC_H */