-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
127 lines (122 loc) · 3.15 KB
/
Copy pathmain.cpp
File metadata and controls
127 lines (122 loc) · 3.15 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
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <vector>
#include <map>
#include "utils.cpp"
// #include "huffmanCodingTree.cpp"
using namespace std;
void calculateFrequency(vector<int> &frequency, std::ifstream &file)
{
char ch;
while (file.get(ch))
{
if (ch >= 0 && ch < 256)
{
frequency[ch]++;
}
}
}
int ifCompressed(string filename)
{
std::ifstream file(filename, std::ios::binary | ios::in);
if (!file)
{
// std::cerr << "Error: could not open file a\n";
return 2;
}
else
{
char ch;
string curr = "";
while (file.get(ch) && curr.length() < 15)
{
curr += ch;
size_t found = curr.find("decode_start,");
if (found != string::npos)
{
file.close();
return true;
}
}
return false;
}
return 2;
}
int main(int argc, char *argv[])
{
if (argc < 2)
{
std::cerr << "Usage: dacompress [--option] <filename>" << "\n";
std::cerr << "options:" << "\n";
std::cerr << "--compress: to compress an uncompressed file" << "\n";
std::cerr << "--decompress: to decompress a compressed file" << "\n";
return 1;
}
string option = "";
if (argc == 3)
{
option = argv[argc - 2];
}
string filename = argv[argc - 1];
if (filename.empty())
{
std::cerr << "Error: No input file specified\n";
return 1;
}
int isCompressed = ifCompressed(filename);
if (isCompressed == 2)
{
std::cerr << "Error: Could not open file. Provide correct file path.\n";
return 1;
}
if (option == "--compress" && isCompressed)
{
std::cerr << "Upload an uncompressed file while using --compress\n";
return 1;
}
if (option == "--decompress" && !isCompressed)
{
std::cerr << "Upload a compressed file while using --decompress\n";
return 1;
}
if (!isCompressed)
{
std::ifstream file(filename);
if (!file)
{
std::cerr << "Error: could not open file\n";
return 1;
}
vector<int> frequency(256, 0);
calculateFrequency(frequency, file);
file.clear();
file.seekg(0);
// for (int i = 0; i < 128; i++)
// {
// if (frequency[i])
// cout << i << " " << char(i) << " " << frequency[i] << "\n";
// }
// cout << "Building tree------------------------------->\n";
HuffmanBaseNode *root = buildTree(frequency);
std::map<char, pair<int, string>> lookup;
createLookupTable(root, lookup);
createCompressedFile(lookup, file, filename);
file.close();
}
else
{
std::ifstream file(filename, std::ios::binary | ios::in);
if (!file)
{
std::cerr << "Error: could not open file\n";
return 1;
}
std::map<string, char> lookup;
getLookupTable(file, lookup);
createDecompressedFile(filename, file, lookup);
file.close();
}
return 0;
}