-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCompressionAlgorithm.cpp
116 lines (98 loc) · 4.39 KB
/
CompressionAlgorithm.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
// CompressionAlgorithm.cpp : This file contains the 'main' function. Program execution begins and ends there.
//
#include <iostream>
#include <vector>
#include <assert.h>
using namespace std;
typedef uint8_t BYTE;
unsigned int byte_compress(BYTE *data_ptr, unsigned int size)
{
if (data_ptr == NULL || size == 0)
{
cerr << "Invalid data given please re-enter valid populated BYTE array or a size greater than zero." << endl;
return 0;
}
// Read in first byte and set temp variables
vector<BYTE> vTemp;
// Check to see if the next byte repeats the current one
for (unsigned int index = 0; index <= size - 1;)
{
BYTE current = data_ptr[index];
unsigned int length = 0;
// If the next byte is different copy just current byte to new array
if (data_ptr[index + 1] != current)
{
vTemp.push_back(current);
index++;
}
// If the next byte is the same check the next byte until a different one is found. Record the length of the series.
else
{
for (unsigned int i = index + 1; i <= size - 1; i++)
{
if (data_ptr[i] != data_ptr[i + 1])
{
// Add series number to vector after flipping MSB to indicate series has been detected
current = current | 0x80;
vTemp.push_back(current);
// Calculate length of series
unsigned int length = (i + 1) - index;
// Determine if we need more bytes for length
if (length > 8)
{
unsigned int numBytes = ceil((double)((length - 8) / 255));
// Shift the bits to fill a byte containing 4 bits (7-4) telling us how many bytes are used for length and 4 bits (3-0) telling us the length
BYTE controlByte = (numBytes << 4) | 8;
// Remove already allocated length
length = length - 8;
vTemp.push_back(controlByte);
// Add remaining length to the next required bytes
for (unsigned int t = 0; t < numBytes; t++)
{
if (length > 255)
{
vTemp.push_back(255);
length = length - 255;
}
else
vTemp.push_back(length);
}
}
else
vTemp.push_back(length);
index = i + 1;
break;
}
}
}
}
// Overwrite input array with vector for output
copy(vTemp.begin(), vTemp.end(), data_ptr);
return (unsigned int)vTemp.size();
}
int main()
{
//Initialize input data
// Data before the call positive path
BYTE data_ptr_pos[] = { 0x03, 0x74, 0x04, 0x04, 0x04, 0x35, 0x35, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x45, 0x56, 0x56, 0x56, 0x09, 0x09, 0x09 };
unsigned int data_size_pos = 24;
// Data before the call negative path
BYTE data_ptr_neg[] = { 0x03, 0x74, 0x04, 0x04, 0x04, 0x35, 0x35, 0x64, 0x64, 0x64, 0x64, 0x00, 0x00, 0x00, 0x00, 0x00, 0x56, 0x45, 0x56, 0x56, 0x56, 0x09, 0x09, 0x09 };
unsigned int data_size_neg = 0;
// Call byte_compress and perform positive path testing
unsigned int new_size = byte_compress(data_ptr_pos, data_size_pos);
cout << "The new buffer has a size of: " << new_size << endl << "Compared to a previous size of: " << data_size_pos << endl;
for (unsigned int i = 0; i < new_size; i++)
cout << (uint64_t)data_ptr_pos[i] << " ";
cout << endl;
// Assert that the correct size was created from known data
assert(new_size == 16);
// Call byte_compress and perform negative path testing
new_size = byte_compress(data_ptr_neg, data_size_neg);
cout << "The new buffer has a size of: " << new_size << endl << "Compared to a previous size of: " << data_size_neg << endl;
for (unsigned int i = 0; i < new_size; i++)
cout << (uint64_t)data_ptr_neg[i] << " ";
cout << endl;
// Assert that algorithm returned expected zero value when zero size was input
assert(new_size == 0);
}