forked from HIITMetagenomics/dsm-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
HuffWT.cpp
213 lines (181 loc) · 5.26 KB
/
HuffWT.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
#include "HuffWT.h"
#include <queue>
#include <vector>
HuffWT::HuffWT(uchar *s, ulong n, TCodeEntry *codetable, unsigned level)
:bitrank(0), left(0), right(0), codetable(0), ch(0), leaf(0)
{
ch = s[0];
leaf = false;
this->codetable = codetable;
std::cerr << "Constructing huff tree at level " << level << std::endl;
ulong *B = new ulong[n/W+1];
for (ulong i = 0; i < n/W+1; ++i)
B[i] = 0;
ulong sum=0,i;
/*
for (i=0; i< n; i++) {
printf("%c:", (char)((int)s[i]-128));
for (r=0;r<codetable[(int)s[i]].bits;r++)
if (codetable[(int)s[i]].code & (1u <<r))
printf("1");
else printf("0");
printf("\n");
}
printf("\n");
if (level > 100) return;*/
for (i=0;i<n;i++)
if (codetable[(int)s[i]].code & (1u << level)) {
Tools::SetField(B, 1, i, 1);
sum++;
}
if (sum==0 || sum==n) {
delete [] B;
delete [] s;
leaf = true;
return;
}
uchar *sfirst, *ssecond;
sfirst = new uchar[n-sum];
ssecond = new uchar[sum];
ulong j=0,k=0;
for (i=0;i<n;i++)
if (Tools::GetField(B,1,i)) ssecond[k++] = s[i];
else sfirst[j++] = s[i];
delete [] s; s = 0;
bitrank = new BitRank(B,n,true);
left = new HuffWT(sfirst,j,codetable,level+1);
sfirst = 0; // Was deleted
right = new HuffWT(ssecond,k,codetable,level+1);
ssecond = 0; // Was deleted
}
HuffWT::HuffWT(std::FILE *file, TCodeEntry *ct)
:bitrank(0), left(0), right(0), codetable(ct), ch(0), leaf(0)
{
if (std::fread(&leaf, sizeof(bool), 1, file) != 1)
throw std::runtime_error("HuffWT: file read error (Rs).");
if (std::fread(&ch, sizeof(uchar), 1, file) != 1)
throw std::runtime_error("HuffWT: file read error (Rs).");
if (!leaf)
{
bitrank = new BitRank(file);
left = new HuffWT(file, ct);
right = new HuffWT(file, ct);
}
}
void HuffWT::save(std::FILE *file)
{
if (std::fwrite(&leaf, sizeof(bool), 1, file) != 1)
throw std::runtime_error("HuffWT: file write error (Rs).");
if (std::fwrite(&ch, sizeof(uchar), 1, file) != 1)
throw std::runtime_error("HuffWT: file write error (Rs).");
if (!leaf)
{
bitrank->save(file);
left->save(file);
right->save(file);
}
}
HuffWT::~HuffWT() {
if (left) delete left;
if (right) delete right;
if (bitrank)
delete bitrank;
}
class node
{
private:
ulong weight;
uchar value;
node *child0;
node *child1;
void maketable( unsigned code, unsigned bits, HuffWT::TCodeEntry *codetable ) const;
static void count_chars(uchar *, ulong , HuffWT::TCodeEntry *);
static unsigned SetBit(unsigned , unsigned , unsigned );
public:
node( unsigned char c = 0, ulong i = 0 ) {
value = c;
weight = i;
child0 = 0;
child1 = 0;
}
node( node* c0, node *c1 ) {
value = 0;
weight = c0->weight + c1->weight;
child0 = c0;
child1 = c1;
}
bool operator>( const node &a ) const {
return weight > a.weight;
}
static HuffWT::TCodeEntry *makecodetable(uchar *, ulong);
};
HuffWT::TCodeEntry * node::makecodetable(uchar *text, ulong n)
{
HuffWT::TCodeEntry *result = new HuffWT::TCodeEntry[ 256 ];
count_chars( text, n, result );
std::priority_queue< node, std::vector< node >, std::greater<node> > q;
for ( unsigned i = 0 ; i < 256 ; i++ )
if ( result[ i ].count )
q.push(node( i, result[ i ].count ) );
while ( q.size() > 1 ) {
node *child0 = new node( q.top() );
q.pop();
node *child1 = new node( q.top() );
q.pop();
q.push( node( child0, child1 ) );
}
q.top().maketable(0u,0u, result);
q.pop();
return result;
}
void node::maketable(unsigned code, unsigned bits, HuffWT::TCodeEntry *codetable) const
{
if ( child0 )
{
child0->maketable( SetBit(code,bits,0), bits+1, codetable );
child1->maketable( SetBit(code,bits,1), bits+1, codetable );
delete child0;
delete child1;
}
else
{
codetable[value].code = code;
codetable[value].bits = bits;
}
}
void node::count_chars(uchar *text, ulong n, HuffWT::TCodeEntry *counts )
{
ulong i;
for (i = 0 ; i < 256 ; i++ )
counts[ i ].count = 0;
for (i=0; i<n; i++)
counts[(int)text[i]].count++;
}
unsigned node::SetBit(unsigned x, unsigned pos, unsigned bit) {
return x | (bit << pos);
}
HuffWT * HuffWT::makeHuffWT(uchar *bwt, ulong n)
{
std::cerr << "Constructing hufftable... " << std::endl;
HuffWT::TCodeEntry * codetable = node::makecodetable(bwt,n);
std::cerr << "hufftable done... creating tree... " << std::endl;
return new HuffWT(bwt, n, codetable, 0);
}
void HuffWT::save(HuffWT *wt,std::FILE *file)
{
for (unsigned i = 0; i < 256; ++i)
wt->codetable[i].save(file);
wt->save(file);
}
HuffWT * HuffWT::load(std::FILE *file, uchar verFlag)
{
TCodeEntry *ct = new HuffWT::TCodeEntry[ 256 ];
for (unsigned i = 0; i < 256; ++i)
ct[i].load(file, verFlag);
return new HuffWT(file, ct);
}
void HuffWT::deleteHuffWT(HuffWT *wt)
{
delete [] wt->codetable;
delete wt;
}