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: mié may 26 19:59:28 ART 2004
22 * Autores: Leandro Lucarella <llucare@fi.uba.ar>
23 *----------------------------------------------------------------------------
25 * $Id: tipo1.h 542 2004-05-28 19:45:02Z rmarkie $
33 * Interfaz de un buffer ordenado. Al obtener un dato del buffer, se
34 * obtiene de forma ordenada.
38 #ifndef _EXTERNAL_SORT_BUFFORD_H_
39 #define _EXTERNAL_SORT_BUFFORD_H_
43 /** Función utilizada para comparar al ordenar los datos.
44 * \return 0 si son iguales, mayor que cero si el primer argumento es mayor y
45 * menor que cero si el primer argumento es menor.
47 typedef int (*CMP_FUNC)(void*, void*);
49 /** Nodo del buffer ordenado (uso interno). */
50 typedef struct _BUFFORD_NODE
52 void* data; /**< Datos. */
53 struct _BUFFORD_NODE* left; /**< Hijo izquierdo. */
54 struct _BUFFORD_NODE* right; /**< Hijo derecho. */
58 /** Buffer ordenado. */
61 CMP_FUNC cmp; /**< Función de comparación a usar. */
62 BUFFORD_NODE* root; /**< nodo raíz. */
63 size_t size; /**< Tamaño (cantidad de nodos). */
64 size_t max_size; /**< Cantidad máxima de registros que almacena. */
65 size_t reg_size; /**< Tamaño del registro. */
69 /** Crea un nuevo buffer ordenado.
71 * \param size Tamaño máximo (en bytes) del buffer.
72 * \param reg_size Tamaño del registro que almacena.
73 * \param cmp Función de comparación a usar.
74 * \return Nuevo buffer ordenado o 0 si no hay más memoria.
76 BUFFORD* bufford_new(size_t size, size_t reg_size, CMP_FUNC cmp);
78 /** Borra un buffer ordenado liberando su memoria. */
79 void bufford_delete(BUFFORD* buff);
81 /** Limpia un buffer ordenado, borrando todos sus datos. */
82 void bufford_clear(BUFFORD* buff);
84 /** Indica si un buffer ordenado está lleno. */
85 int bufford_full(BUFFORD* buff);
87 /** Indica si un buffer ordenado está vacío. */
88 int bufford_empty(BUFFORD* buff);
90 /** Agrega un nuevo dato al buffer ordenado.
92 * \return 0 si hubo error o está lleno el buffer.
94 int bufford_push(BUFFORD* buff, void* data);
96 /** Obtiene el menor dato del buffer ordenado.
97 * Si el buffer está vacío, se devuelve 0. El dato obtenido es eliminado del
98 * buffer (por lo que debe ser liberado al terminar de usarlo).
100 void* bufford_pop_min(BUFFORD* buff);
102 /** Obtiene el menor dato mayor a \c min del buffer ordenado.
103 * Si no llegara a haber un dato que cumpla esas características o el buffer
104 * está vacío, se devuelve 0. El dato obtenido es eliminado del buffer (por lo
105 * que debe ser liberado al terminar de usarlo).
107 void* bufford_pop_next(BUFFORD* buff, void* min);
109 /** Obtiene el menor dato del buffer ordenado (para debug).
110 * Si el buffer está vacío, se devuelve 0. El dato obtenido \b no es eliminado
111 * del buffer (por lo que \b no debe ser liberado).
113 void* bufford_get_min(BUFFORD* buff);
115 /** Obtiene el menor dato mayor a \c min del buffer ordenado (para debug).
116 * Si no llegara a haber un dato que cumpla esas características o el buffer
117 * está vacío, se devuelve 0. El dato obtenido \b no es eliminado del buffer
118 * (por lo que \b no debe ser liberado).es eliminado del buffer.
120 void* bufford_get_next(BUFFORD* buff, void* min);
122 #endif /* _EXTERNAL_SORT_BUFFORD_H_ */