-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCompress.cpp
More file actions
423 lines (343 loc) · 11.7 KB
/
Compress.cpp
File metadata and controls
423 lines (343 loc) · 11.7 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
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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
#include "Compress.h"
#include "Util.h"
#include <algorithm>
#include <fstream>
#include <iostream>
#include <queue>
#include <sstream>
using std::string, std::vector, std::map;
bool Compress::BinaryLine::comp(const BinaryLine &a, const BinaryLine &other)
{
if (a.lineFreq != other.lineFreq)
return a.lineFreq > other.lineFreq;
else
return a.srcPos < other.srcPos;
}
Compress::Compress(string filepathDirs)
{
this->filepathDirs = filepathDirs;
initSrcLines();
outfilePath = filepathDirs + COMPRESSED_OUT;
outfile.open(outfilePath);
}
Compress::~Compress()
{
if (outfile.is_open())
outfile.close();
}
void Compress::initSrcLines()
{
if (DEBUG_MODE)
std::cout << "Initializing source lines..." << std::endl;
std::ifstream f(filepathDirs + INSTRUCTIONS_FILEPATH);
if (f.is_open())
{
string line;
// line -> [frequency, original pos]
map<string, std::pair<int, int>> _lineFreqsMap;
int i = 0;
while (std::getline(f, line))
{
// Remove Windows line ending if it is present
if (line.back() == '\r')
line.pop_back();
srcLines.push_back(line);
auto _foundIter = _lineFreqsMap.find(line);
if (_foundIter != _lineFreqsMap.end())
_foundIter->second.first++;
else
_lineFreqsMap.emplace(line, std::pair<int, int>(1, i));
i++;
}
f.close();
mostFrequent = getMostFrequentEntries(&_lineFreqsMap, 16);
}
else
{
exit(1);
}
}
vector<Compress::BinaryLine> Compress::getMostFrequentEntries(map<string, std::pair<int, int>>* frequencyDict, int max)
{
vector<BinaryLine> _outVec;
for (auto iter = frequencyDict->begin(); iter != frequencyDict->end(); ++iter)
{
BinaryLine _line;
_line.lineContent = iter->first;
_line.lineFreq = iter->second.first;
_line.srcPos = iter->second.second;
_outVec.push_back(_line);
}
std::sort(_outVec.begin(), _outVec.end(), &Compress::BinaryLine::comp);
auto _iterA = _outVec.begin();
auto _iterB = _outVec.begin() + max;
return vector<BinaryLine>(_iterA, _iterB);
}
int Compress::valueInVec(string val, vector<BinaryLine>* vec)
{
for (int i = 0; i < vec->size(); i++)
if (val == vec->at(i).lineContent)
return i;
return -1;
}
string Compress::bitmaskCompress(string line)
{
for (auto dictEntry = mostFrequent.begin(); dictEntry != mostFrequent.end(); ++dictEntry)
{
int _firstMismatch = getFirstMismatch(line, dictEntry->lineContent);
if (DEBUG_MODE)
std::cout << _firstMismatch << " : " << std::distance(mostFrequent.begin(), dictEntry) << std::endl;
if (_firstMismatch == -1 || isAnotherMistmatch(line, dictEntry->lineContent, _firstMismatch, 4))
continue;
string _generatedString = getBinStrFromInt(_firstMismatch, 5);
if (DEBUG_MODE)
_generatedString += " ";
for (int i = 0; i < 4; i++)
{
if (i + _firstMismatch > line.size())
{
for (int j = 0; j < 4 - i; j++)
_generatedString += '0';
break;
}
if (line.at(i + _firstMismatch) != dictEntry->lineContent.at(i + _firstMismatch))
_generatedString += '1';
else
_generatedString += '0';
}
if (DEBUG_MODE)
_generatedString += " ";
_generatedString += getBinStrFromInt(std::distance(mostFrequent.begin(), dictEntry), 4);
return _generatedString;
}
return "INVALID";
}
string Compress::mismatch1Bit(string line)
{
for (auto dictEntry = mostFrequent.begin(); dictEntry != mostFrequent.end(); ++dictEntry)
{
int _firstMismatch = getFirstMismatch(line, dictEntry->lineContent);
if (_firstMismatch == -1 || isAnotherMistmatch(line, dictEntry->lineContent, _firstMismatch, 1))
continue;
string _generatedString = getBinStrFromInt(_firstMismatch, 5);
if (DEBUG_MODE)
_generatedString += " ";
if (DEBUG_MODE)
_generatedString += " ";
_generatedString += getBinStrFromInt(std::distance(mostFrequent.begin(), dictEntry), 4);
return _generatedString;
}
return "INVALID";
}
string Compress::mismatch2Bit(string line)
{
for (auto dictEntry = mostFrequent.begin(); dictEntry != mostFrequent.end(); ++dictEntry)
{
int _firstMismatch = getFirstMismatch(line, dictEntry->lineContent);
if (
_firstMismatch == -1 ||
isAnotherMistmatch(line, dictEntry->lineContent, _firstMismatch, 2) ||
!consecutiveMismatches(line, dictEntry->lineContent, _firstMismatch, 2))
continue;
string _generatedString = getBinStrFromInt(_firstMismatch, 5);
if (DEBUG_MODE)
_generatedString += " ";
if (DEBUG_MODE)
_generatedString += " ";
_generatedString += getBinStrFromInt(std::distance(mostFrequent.begin(), dictEntry), 4);
return _generatedString;
}
return "INVALID";
}
string Compress::mismatch4Bit(string line)
{
for (auto dictEntry = mostFrequent.begin(); dictEntry != mostFrequent.end(); ++dictEntry)
{
int _firstMismatch = getFirstMismatch(line, dictEntry->lineContent);
if (
_firstMismatch == -1 ||
isAnotherMistmatch(line, dictEntry->lineContent, _firstMismatch, 4) ||
!consecutiveMismatches(line, dictEntry->lineContent, _firstMismatch, 4))
continue;
string _generatedString = getBinStrFromInt(_firstMismatch, 5);
if (DEBUG_MODE)
_generatedString += " ";
if (DEBUG_MODE)
_generatedString += " ";
_generatedString += getBinStrFromInt(std::distance(mostFrequent.begin(), dictEntry), 4);
return _generatedString;
}
return "INVALID";
}
string Compress::mismatch2BitAnywhere(string line)
{
for (auto dictEntry = mostFrequent.begin(); dictEntry != mostFrequent.end(); ++dictEntry)
{
int _firstMismatch = getFirstMismatch(line, dictEntry->lineContent);
if (_firstMismatch == -1)
continue;
int _secondMismatch = getFirstMismatch(line, dictEntry->lineContent, _firstMismatch + 1);
if (_secondMismatch == -1 || isAnotherMistmatch(line, dictEntry->lineContent, _secondMismatch, 1))
continue;
string _generatedString = getBinStrFromInt(_firstMismatch, 5);
if (DEBUG_MODE)
_generatedString += " ";
_generatedString += getBinStrFromInt(_secondMismatch, 5);
if (DEBUG_MODE)
_generatedString += " ";
_generatedString += getBinStrFromInt(std::distance(mostFrequent.begin(), dictEntry), 4);
return _generatedString;
}
return "INVALID";
}
void Compress::mainCompLoop()
{
string _debugSpace = string();
if (DEBUG_MODE)
_debugSpace = " ";
int _reps = -1;
for (auto iter = srcLines.begin(); iter != srcLines.end(); ++iter)
{
if (DEBUG_MODE)
{
std::cout << "-----\nLine: " << std::distance(srcLines.begin(), iter) << std::endl;
}
std::string _previous = string();
if (iter != srcLines.begin())
{
--iter;
_previous = *iter;
++iter;
}
// RLE logic
if (*iter == _previous && _reps < 7)
{
if (DEBUG_MODE)
std::cout << *iter << ", continuing..." << std::endl;
_reps++;
continue;
}
else if (*iter == _previous && _reps >= 7 || (*iter != _previous && _reps > 0))
{
if (DEBUG_MODE)
std::cout << "Terminating RLE with " << _reps << " reps" << std::endl;
outfile << "001" << _debugSpace << getBinStrFromInt(_reps, 3) << "\n";
int _tempReps = _reps;
_reps = -1;
if (DEBUG_MODE)
std::cout << "Current: " << *iter << ", prev: " << _previous << std::endl;
}
// Dict index
int _dictIndex = valueInVec(*iter, &mostFrequent);
if (_dictIndex != -1)
{
if (DEBUG_MODE)
std::cout << "Dict" << std::endl;
outfile << "111" << _debugSpace << getBinStrFromInt(_dictIndex, 4) << "\n";
continue;
}
// Begin checking differing bitmask/mismatch methods
map<string, string> _masks;
_masks.emplace("010", bitmaskCompress(*iter));
_masks.emplace("011", mismatch1Bit(*iter));
_masks.emplace("100", mismatch2Bit(*iter));
_masks.emplace("101", mismatch4Bit(*iter));
_masks.emplace("110", mismatch2BitAnywhere(*iter));
if (DEBUG_MODE)
std::cout << "Iterating masks..." << std::endl;
auto _shortest = _masks.begin();
for (auto maskIter = _masks.begin(); maskIter != _masks.end(); ++maskIter)
{
if (DEBUG_MODE)
{
std::cout << maskIter->first << " " << maskIter->second << std::endl;
std::cout << maskIter->second.size() << " < " << _shortest->second.size() << std::endl;
}
if ((maskIter->second.size() < _shortest->second.size() && maskIter->second != "INVALID") || _shortest->second == "INVALID")
_shortest = maskIter;
}
if (_shortest->second != "INVALID")
{
outfile << _shortest->first << _debugSpace << _shortest->second << "\n";
continue;
}
if (DEBUG_MODE)
std::cout << "Writing original code..." << std::endl;
outfile << "000" << _debugSpace << *iter << "\n";
}
}
unsigned int Compress::insertStringToStream(string toAdd, string* stream, unsigned int streamWidth)
{
// Get number of characters on current line
unsigned int _charsOnCurrentLine = 0;
for (int i = 0; i < stream->size(); i++)
{
if (stream->at(i) != '\n')
_charsOnCurrentLine++;
else
_charsOnCurrentLine = 0;
}
// Insert characters until
for (int i = 0; i < toAdd.size(); i++)
{
if (_charsOnCurrentLine < streamWidth)
{
stream->push_back(toAdd[i]);
}
else
{
// Reset chars since we're on a new line
stream->push_back('\n');
_charsOnCurrentLine = 0;
stream->push_back(toAdd[i]);
}
_charsOnCurrentLine++;
}
return _charsOnCurrentLine;
}
void Compress::printFreqDict()
{
outfile << "xxxx" << "\n";
for (auto iter = mostFrequent.begin(); iter != mostFrequent.end(); ++iter)
{
outfile << iter->lineContent << "\n";
}
}
void Compress::formatFile()
{
outfile.close();
std::ifstream infile(outfilePath);
string codeStream;
unsigned int _charsOnLine;
if (infile.is_open())
{
string line;
while (std::getline(infile, line))
{
string _toAdd = string();
for (int i = 0; i < line.size(); i++)
if (line.at(i) == '1' || line.at(i) == '0')
_toAdd += line.at(i);
_charsOnLine = insertStringToStream(_toAdd, &codeStream);
}
for (int i = 0; i < 32 - _charsOnLine; i++)
{
codeStream += '0';
}
codeStream += "\n";
infile.close();
outfile.open(outfilePath);
outfile << codeStream;
}
else
{
std::cout << "Unable to read outfile when reformatting!" << std::endl;
exit(1);
}
}
void Compress::run()
{
mainCompLoop();
formatFile();
printFreqDict();
}