]> git.llucax.com Git - z.facultad/75.06/jacu.git/blob - src/blocksorting/bs.h
Agrego Dixyfile
[z.facultad/75.06/jacu.git] / src / blocksorting / bs.h
1 /*----------------------------------------------------------------------------
2  *                   jacu - Just Another Compression Utility
3  *----------------------------------------------------------------------------
4  * This file is part of jacu.
5  *
6  * jacu is free software; you can redistribute it and/or modify it under the
7  * terms of the GNU General Public License as published by the Free Software
8  * Foundation; either version 2 of the License, or (at your option) any later
9  * version.
10  *
11  * jacu is distributed in the hope that it will be useful, but WITHOUT ANY
12  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
13  * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
14  * details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with jacu; if not, write to the Free Software Foundation, Inc., 59 Temple
18  * Place, Suite 330, Boston, MA  02111-1307  USA
19  *----------------------------------------------------------------------------
20  */
21
22
23 #ifndef _BS_H_
24 #define _BS_H_
25
26 #include <string.h>
27 #include <stdlib.h>
28 #include <stdio.h>
29
30 #ifndef Uint32
31 typedef unsigned long int Uint32;
32 #endif
33
34 typedef struct _bs_t_ t_BlockSort;
35
36 typedef struct _bs_data_t_ {
37         Uint32 pos_inicial;
38         Uint32 pos_final;
39         char ord; /* indica si esta ordenada */
40
41         /* Guardo el puntero al padre */
42         t_BlockSort *bs;        
43 } t_BlockSortData;
44
45 struct _bs_t_ {
46         char *data;
47         t_BlockSortData *array;
48         Uint32 len;
49 };
50
51
52 /** Inicializa un BlockSorting
53  *
54  *  \param len Tamaño de página a utilizar
55  */
56 t_BlockSort *bs_create(Uint32 len);
57
58 /** Libera un BlockSorting
59  *
60  *  \param bs BlockSorting previamente inicializado.
61  */
62 void bs_destroy(t_BlockSort *bs);
63
64 /** Resuelve un BlockSorting
65  *
66  *  \param in Array de bytes que se pretende procesar.
67  *  \param out Array donde guardar la columna resultante.
68  *  \param k Puntero donde guardar la posicion del array original.
69  *  \oaram leido Tamaño de in (por si el tamaño de in es menor al de la pagina).
70  */
71 void bs_solve(char *in, char *out, t_BlockSort *bs, Uint32 *k, Uint32 leido);
72
73 /** Obtiene el array original a partir de dst y k
74  *
75  *  \param dst Array donde guardar el array original
76  *  \param c Array generado opr bs_solve.
77  *  \param k Valor retornado por bs_solve.
78  *  \param len Tamaño de c
79  */
80 void bs_restore(char *dst, char *c, Uint32 k, Uint32 len);
81
82 int bs_readblock(FILE *fp, char *data, Uint32 pagesize, int usar_dic);
83
84 char *bs_finalblock(char *data, Uint32 len, Uint32 *new_size);
85
86 #endif
87