-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
29 lines (22 loc) · 984 Bytes
/
main.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
#include "Huffman.h"
#include "string.h"
using namespace std;
int main(int argc, char* argv[])
{
if (argc != 4) {
cout<<"\n\nINSERIRE UN NUMERO DI ARGOMENTI PARI A 4\nSintassi: "<< argv[0]<<" operazione nomefileinput nomefileoutput\nOperazioni disponibili: -c per compressione\t-d per decompressione\n"<<endl;
exit(-1); }
if ( strcmp(argv[1],"-c") == 0 ){
cout<<"\n\ncodifica in corso del file "<<argv[2]<<"...\n"<<endl;
Huffman::get_instance().Encode(argv[2],argv[3]);
}
else if ( strcmp(argv[1], "-d") == 0) {
cout<<"\n\ndecodifica in corso del file "<<argv[2]<<"...\n"<<endl;
Huffman::get_instance().Decode(argv[2],argv[3]);
}
else {
cout<<"\n\nERRORE! IL PRIMO ARGOMENTO DEVE ESSERE:\n-c per la compressione\t-d per la decompressione\n"<<endl;
exit(-1);
}
return 0;
}