Add nextNodeBefore primitive.
[SXSI/XMLTree.git] / libcds / src / static_sequence / wt_coder_huff.h
1 /* wt_coder_huff.h
2  * Copyright (C) 2008, Francisco Claude, all rights reserved.
3  *
4  * wt_coder_huff definition
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  */
21  
22 #ifndef wt_coder_huff_h
23 #define wt_coder_huff_h
24
25 #include <basics.h>
26 #include <wt_coder.h>
27 #include <huffman_codes.h>
28 #include <alphabet_mapper.h>
29
30 /** Uses huffman codes to determine the shape of the wavelet tree  
31  * 
32  *  @author Francisco Claude
33  */
34 class wt_coder_huff: public wt_coder {
35         public:
36     /** Buils a wt_coder_huff using the sequence of length n and the alphabet_mapper
37      *  to determine the huffman codes */
38                 wt_coder_huff(uint *symbs, uint n, alphabet_mapper * am);
39                 wt_coder_huff(uchar *symbs, uint n, alphabet_mapper * am);
40                 virtual ~wt_coder_huff();
41                 virtual bool is_set(uint symbol, uint l);
42                 virtual bool done(uint symbol, uint l);
43     virtual uint size();
44     virtual uint save(FILE *fp);
45     static wt_coder_huff * load(FILE *fp);
46     //uint * get_buffer(uint symbol, uint *n);
47
48         protected:
49     wt_coder_huff();
50                 huffman_codes * hc;
51     uint * buffer;
52     uint last_symbol, s_len;
53 };
54
55 #endif