]> git.llucax.com Git - z.facultad/75.06/emufs.git/blob - emufs/fsc.h
comente un poco los .h
[z.facultad/75.06/emufs.git] / emufs / fsc.h
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:  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  *----------------------------------------------------------------------------
25  *
26  * $Id$
27  *
28  */
29
30 /** \file
31  *
32  * Archivo para administrar el espacio libre disponible.
33  * 
34  * Interfaz del archivo para administrar el espacio libre disponible.
35  *
36  */
37
38 #ifndef _EMUFS_FSC_H
39 #define _EMUFS_FSC_H
40
41 #include "emufs.h"
42
43 #define EMUFS_FSC_EXT ".fsc"
44
45 typedef struct emufs_fsc_t {
46         unsigned long int marker;
47         unsigned long int freespace;
48 } EMUFS_FSC;
49
50 /** Crea un archivo de Gaps o Espacio Libre en Bloque */
51 int emufs_fsc_crear(EMUFS *emu);
52
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);
55
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);
58
59 /** Elimina un registro GAP del archivo de espacios libres (gaps) */
60 int emufs_fsc_remove_gap(EMUFS *emu, EMUFS_OFFSET off);
61
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);
64
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);
67
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 
70   */
71 EMUFS_BLOCK_ID emufs_fsc_buscar_lugar(EMUFS *emu, EMUFS_FREE reg_size, EMUFS_FREE *n_freespace);
72
73 /** Devuelve el espacio libre de un Bloque o Gap dado */
74 EMUFS_FREE emufs_fsc_get_fs(EMUFS *emu, EMUFS_BLOCK_ID block);
75
76 /** Devuelve el espacio libre total en el archivo*/
77 EMUFS_FREE emufs_fsc_get_total_fs(EMUFS *emu);
78
79 /** Devuelve el promedio del espacio libre en el archivo */
80 EMUFS_FREE emufs_fsc_get_media_fs(EMUFS *emu);
81
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);
84
85 /** Trunca el archivo hasta el bloque \param block*/
86 int emufs_fsc_truncate(EMUFS *emu, EMUFS_BLOCK_ID block);
87
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 */