-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHuffman.java
425 lines (366 loc) · 11.1 KB
/
Huffman.java
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
424
425
//Mohammed Akl
package huffman;
import java.util.PriorityQueue;
import java.util.Scanner;
import java.util.Comparator;
import java.util.HashMap;
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Paths;
class HuffmanNode {
int data;
byte c;
HuffmanNode left;
HuffmanNode right;
public HuffmanNode(byte byteValue) {
this.c=byteValue;
}
public HuffmanNode(HuffmanNode leftChild, HuffmanNode rightChild) {
this.left=leftChild;
this.right=rightChild;
}
public HuffmanNode() {
}
}
class MyComparator implements Comparator<HuffmanNode> {
public int compare(HuffmanNode x, HuffmanNode y)
{
return x.data - y.data;
}
}
public class Huffman {
static Scanner s = new Scanner(System.in);
static String header="" ;
static String CompFile = "";
static String DeCompFile = "";
static String OutDeCompFile = "";
static String compfile="" ;
static HashMap<Byte, Integer> inputMap = new HashMap<Byte, Integer>();
static HashMap<Byte, String > outputMap = new HashMap<Byte, String>();
static HashMap<String, Byte > DecompMap = new HashMap<String, Byte>();
static String reader;
static String DecompB;
static byte[] body =null;
static byte[] bodyDe =null;
public static HuffmanNode HuffmanF() {
int n = inputMap.size();
PriorityQueue<HuffmanNode> q
= new PriorityQueue<HuffmanNode>(n, new MyComparator());
for (Byte x : inputMap.keySet()) {
HuffmanNode hn = new HuffmanNode();
hn.c = x;
hn.data = inputMap.get(x);
hn.left = null;
hn.right = null;
q.add(hn);
}
HuffmanNode root = null;
while (q.size() > 1) {
HuffmanNode x = q.peek();
q.poll();
HuffmanNode y = q.peek();
q.poll();
HuffmanNode f = new HuffmanNode();
f.data = x.data + y.data;
f.c = '-';
f.left = x;
f.right = y;
root = f;
q.add(f);
}
printCode(root, "");
return root;
}
public static void printCode(HuffmanNode root, String s)
{
if (root.left
== null
&& root.right
== null) {
String binCode =Integer.toBinaryString(root.c);
System.out.println((char)root.c + ":"+ binCode+":" + s);
outputMap.put(root.c, s);
return;
}
printCode(root.left, s + "0");
printCode(root.right, s + "1");
}
public static void ReadFromInput() throws IOException {
try {
body=Files.readAllBytes(Paths.get(CompFile));
} catch(IOException e){
e.printStackTrace();
}
for (int lenB=0 ; lenB<body.length;lenB++) {
if(inputMap.containsKey(body[lenB])==false) {
inputMap.put(body[lenB], 1);
}
else {
inputMap.replace(body[lenB],inputMap.get(body[lenB])+1);
}
}
}
public static void EncodeNode(HuffmanNode root)
{
if (root.left==null & root.right==null )
{
//StringBuilder sb = new StringBuilder("");
header=header+"1";
String temp=Integer.toBinaryString(root.c);
while(temp.length()<7) {
temp="0"+temp;
}
header=header+temp;
}
else
{
header=header+"0";
EncodeNode(root.left);
EncodeNode(root.right);
}
}
public static void compress() {
StringBuilder bodyS =new StringBuilder("");
for(int lenB2= 0 ; lenB2< body.length;lenB2++) {
bodyS=bodyS.append(outputMap.get(body[lenB2]));
}
System.out.println("Header is "+header);
//System.out.println("Body is "+bodyS);
compfile=header+bodyS;
//System.out.println("Number of bits of input Before Adding padding : "+compfile.length());
int numOfzeros=8-( (compfile.length()+3) % 8);
if(numOfzeros==8)
numOfzeros=0;
//System.out.println( "num of zeros = "+ numOfzeros );
String numOfzerosb =Integer.toBinaryString(numOfzeros);
while(numOfzerosb.length()<3) {
numOfzerosb='0'+numOfzerosb;
}
compfile=numOfzerosb+compfile;
//System.out.println("Number of bits of After Adding padding : "+compfile.length());
for(int numZ = 0 ;numZ<numOfzeros;numZ++) {
compfile=compfile+"0";
}
//System.out.println( "Number of bits of After Adding zeros : "+compfile.length());
//System.out.println("bits of output file is "+compfile);
}
public static void writeToCompressfile() throws IOException {
byte[] fileArr = new byte[compfile.length()/8];
FileOutputStream writerOut = new FileOutputStream(DeCompFile);
String s1;
int s2=0;
Integer sTemp;
for(int sFile=0;sFile<compfile.length();sFile=sFile+8) {
s1=compfile.substring(sFile, sFile+8);
sTemp = Integer.parseUnsignedInt(s1, 2);
fileArr[s2]=sTemp.byteValue();
s2++;
}
//write in compreesed file
for(int s3=0 ;s3<fileArr.length;s3++) {
writerOut.write(fileArr[s3]);
}
writerOut.close();
}
public static Long SizeOfCompFile() {
File cfile = new File(CompFile);
if (!cfile.exists() || !cfile.isFile())
System.out.println("Error in SizeOfCompFile");
Long sizeOfComp =cfile.length();
return sizeOfComp;
}
public static Long SizeOfDeCompFile() {
File decfile = new File(DeCompFile);
if (!decfile.exists() || !decfile.isFile())
System.out.println("Error in SizeOfDeCompFile");
Long sizeOfDeComp =decfile.length();
return sizeOfDeComp;
}
public static void PrintRatios(Long sizeOfComp ,Long sizeOfDeComp) {
System.out.println("Size Of Compressed file "+sizeOfComp+" Bytes");
System.out.println("Size Of Decompressed file " +sizeOfDeComp+" Bytes");
float CompRatio= sizeOfComp.floatValue() / sizeOfDeComp.floatValue() *100;
System.out.printf("Compression Ratio %.2f %% %n" , CompRatio );
}
public static void PrintTime(long startTime) {
long stopTime = System.currentTimeMillis();
long elapsedTime = stopTime - startTime;
System.out.println("Execution Time : " +elapsedTime +" ms ");
}
public static int getDecimal(int binary){
int decimal = 0;
int n = 0;
while(true){
if(binary == 0){
break;
} else {
int temp = binary%10;
decimal += temp*Math.pow(2, n);
binary = binary/10;
n++;
}
}
return decimal;
}
public static void ReadFromDecomp() throws IOException {
try {
bodyDe=Files.readAllBytes(Paths.get(DeCompFile));
} catch(IOException e){
e.printStackTrace();
}
System.out.println( "1 ");
StringBuilder outputDe= new StringBuilder("");
for (int lenB=0 ; lenB<bodyDe.length;lenB++) {
outputDe =outputDe.append(Integer.toBinaryString((bodyDe[lenB] & 0xFF) + 0x100).substring(1));
}
//System.out.println( "Output from compressed "+ outputDe );
System.out.println( "2 ");
String padding = (String) outputDe.subSequence(0,3);
System.out.println( "Padding "+ padding );
reader =(String) outputDe.substring(3, header.length()+3);
// System.out.println( "Reader : "+ reader );
// padding
System.out.println( "3 ");
int Binaryint = Integer.parseInt(padding);
int paddecimal = getDecimal(Binaryint);
System.out.println("padding in decimal = " + paddecimal );
DecompB= (String)outputDe.substring(header.length()+3,outputDe.length()-paddecimal);
//System.out.println("Body in decompress = " + DecompB );
}
public static HuffmanNode ReadNode()
{
if (reader.charAt(0) == '1')
{
reader=reader.substring(1);
while(reader.length()<7) {
reader="0"+reader;
}
Integer Temp;
Temp = Integer.parseUnsignedInt(reader.substring(0,7),2);
reader=reader.substring(7);
// System.out.println( "Temp.byteValue() : "+ Temp.byteValue());
return new HuffmanNode(Temp.byteValue());
}
else
{
reader=reader.substring(1);
HuffmanNode leftChild = ReadNode();
HuffmanNode rightChild = ReadNode();
return new HuffmanNode(leftChild, rightChild);
}
}
public static void printDecompTree(HuffmanNode root, String s)
{
if (root.left
== null
&& root.right
== null) {
System.out.println((char)root.c + ":" + s);
DecompMap.put(s, root.c);
return;
}
printDecompTree(root.left, s + "0");
printDecompTree(root.right, s + "1");
}
public static StringBuilder GetDecompress() {
StringBuilder out=new StringBuilder("");
Byte s1;
char s2;
String s;
s=Character.toString(DecompB.charAt(0));
//System.out.println( "1 ");
for(int lenD=1 ; lenD< DecompB.length();lenD++){
if(DecompMap.containsKey(s)) {
s1=DecompMap.get(s);
int s3=s1;
s2=(char)s3;
out=out.append(s2);
s="";
}
s=s+Character.toString(DecompB.charAt(lenD));
// for last iteration
if (lenD==DecompB.length()-1 && DecompMap.containsKey(s) ) {
s1=DecompMap.get(s);
int s3=s1;
s2=(char)s3;
out=out.append(s2);
s="";
}
}
// System.out.println(out);
return out;
}
public static void WriteDecompress(StringBuilder out) throws IOException {
PrintWriter writerDe = new PrintWriter(OutDeCompFile);
writerDe.print(out);
writerDe.close();
}
public static int Choice() {
int x ;
System.out.print("Choice 1 for Compreess --- 2 for Decompress ");
x = s.nextInt();
System.out.println("You entered " + x);
return x;
}
public static String ChoiceFile(int x1) {
String x ;
if(x1==1) {
System.out.print("Choice File To Be Compressed ");
x = s.next();
//System.out.println("You Want Compress " + x);
return x;
}
else if(x1==2)
{
System.out.print("Choice File Compress To " );
x = s.next();
//System.out.println("You Want Compress to " + x);
return x;
}
else if(x1==3)
{
System.out.print("Choice file to Decompress " + DeCompFile+" to");
x = s.next();
System.out.println("You Want Deompress " + x);
return x;
}
return null;
}
// main function
public static void main(String[] args) throws IOException
{
CompFile=ChoiceFile(1);
DeCompFile=ChoiceFile(2);
OutDeCompFile=ChoiceFile(3);
int x;
x=Choice();
long startTime = System.currentTimeMillis();
ReadFromInput();
HuffmanNode root = HuffmanF();
EncodeNode(root);
// COMPRESS
if (x==1) {
System.out.println("Compressing ...");
Long sizeOfComp= SizeOfCompFile();
compress();
writeToCompressfile();
Long sizeOfDeComp =SizeOfDeCompFile();
PrintRatios(sizeOfComp,sizeOfDeComp);
PrintTime(startTime);
}
else if (x==2) {
// DECOMPRESS
System.out.println("Decompressing ...");
ReadFromDecomp();
HuffmanNode DecompRoot= ReadNode();
printDecompTree(DecompRoot,"");
StringBuilder out =GetDecompress();
WriteDecompress(out);
PrintTime(startTime);
}
//WRONG CHOICE
else {
System.out.println("You entered " + x + " Wrong Choice !1");
}
}
}