-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbpdec.cpp
More file actions
167 lines (138 loc) · 5.41 KB
/
bpdec.cpp
File metadata and controls
167 lines (138 loc) · 5.41 KB
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
//******************************************************************************
// Copyright (c) 2013, Christopher James Huff
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// * Neither the name of the copyright holders nor the names of contributors
// may be used to endorse or promote products derived from this software
// without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//******************************************************************************
// Decode a file encoded using byte-pair encoding.
//
// clang++ --std=c++11 -O3 bpdec.cpp -o bpdec
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <stdbool.h>
#include <math.h>
#include <string>
#include <vector>
#include <algorithm>
#include <sys/time.h>
static inline int imin(int x, int y) {return (x < y)? x : y;}
static inline int imax(int x, int y) {return (x > y)? x : y;}
static inline double GetRealSeconds() {
struct timeval newTime;
gettimeofday(&newTime, NULL);
return newTime.tv_sec + newTime.tv_usec/1e6;
}
void BP_Decode(FILE * fout, const uint8_t * data, size_t size);
int main(int argc, char * argv[])
{
if(argc < 2) {
printf("Usage: bpdec INFILE [OUTFILE]\n");
exit(EXIT_FAILURE);
}
const char * finname = argv[1];
const char * foutname = "<stdout>";
FILE * fin = stdin, * fout = stdout;
// Just read in whole file at once. This isn't going to be used for anything big.
fin = fopen(finname, "rb");
fseek(fin, 0L, SEEK_END);
size_t inputFileSize = ftell(fin);
fseek(fin, 0L, SEEK_SET);
uint8_t * fileData = new uint8_t[inputFileSize];
fread(fileData, 1, inputFileSize, fin);
if(argc == 3) {
foutname = argv[2];
fout = fopen(foutname, "wb");
}
double startT = GetRealSeconds(), endT;
BP_Decode(fout, fileData, inputFileSize);
endT = GetRealSeconds();
size_t outputFileSize = ftell(fout);
printf("Input size: %lu s\n", inputFileSize);
printf("Output size: %lu s\n", outputFileSize);
printf("Decompression Time: %f s\n", endT - startT);
delete fileData;
if(fin != stdout)
fclose(fin);
if(fout != stdout)
fclose(fout);
return EXIT_SUCCESS;
}
void BP_Decode(FILE * fout, const uint8_t * data, size_t size)
{
const uint8_t * dataEnd = data + size;
if(*data != 0x00 || *(data + 1) != 0x00)
{
printf("Bad input, expected init block\n");
exit(EXIT_FAILURE);
}
int numSubs;
const uint8_t * pairs;
size_t numBlocks = 0;
size_t outputSize = 0;
while(data < dataEnd)
{
int blockSize = (((int)(*data)) << 8) | *(data + 1);
data += 2;
if(blockSize == 0)
{
numSubs = *data;
data += 1;
pairs = data;
data += 2*numSubs;
}
else
{
// printf("Block size: %d, num subs: %d\n", blockSize, numSubs);
const uint8_t * subs = data;
data += numSubs;
std::vector<uint8_t> bufa, bufb;
std::vector<uint8_t> * srcbuf = &bufa, * dstbuf = &bufb;
srcbuf->assign(data, data + blockSize);
data += blockSize;
++numBlocks;
for(int sub = numSubs - 1; sub >= 0; --sub)
{
dstbuf->clear();
for(auto b : *srcbuf)
{
if(b == subs[sub]) {
dstbuf->push_back(pairs[sub*2]);
dstbuf->push_back(pairs[sub*2 + 1]);
}
else {
dstbuf->push_back(b);
}
}
// printf("%d -> %d %d\n", subs[sub], pairs[sub*2], pairs[sub*2 + 1]);
std::swap(srcbuf, dstbuf);
}
// printf("Decompressed size: %lu\n", srcbuf->size());
fwrite(&((*srcbuf)[0]), sizeof(uint8_t), srcbuf->size(), fout);
outputSize += srcbuf->size();
}
}
printf("Num blocks: %lu\n", numBlocks);
}
// *****************************************************************************