forked from andremussche/DelphiWebsockets
-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathJourneyman.WebSocket.CompressUtils.pas
72 lines (64 loc) · 1.8 KB
/
Journeyman.WebSocket.CompressUtils.pas
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
unit Journeyman.WebSocket.CompressUtils;
interface
uses
System.SysUtils;
function CompressMessage(const Input: TBytes; maxWindowBits: Integer): TBytes;
function DecompressMessage(const Input: TBytes; maxWindowBits: Integer): TBytes;
implementation
uses
System.ZLib, System.Classes;
function CompressMessage(const Input: TBytes; maxWindowBits: Integer): TBytes;
var
Compressor: TZCompressionStream;
InputStream, OutputStream: TStream;
begin
OutputStream := TMemoryStream.Create;
try
InputStream := TMemoryStream.Create;
try
InputStream.Write(Input, Length(Input));
Compressor := TZCompressionStream.Create(OutputStream, zcDefault, maxWindowBits);
try
InputStream.Position := 0;
Compressor.CopyFrom(InputStream, InputStream.Size);
finally
Compressor.Free;
end;
SetLength(Result, OutputStream.Size);
OutputStream.Position := 0;
OutputStream.ReadBuffer(Result[0], OutputStream.Size);
finally
InputStream.Free;
end;
finally
OutputStream.Free;
end;
end;
function DecompressMessage(const Input: TBytes; maxWindowBits: Integer): TBytes;
var
Decompressor: TZDecompressionStream;
InputStream, OutputStream: TMemoryStream;
begin
InputStream := TMemoryStream.Create;
try
InputStream.WriteBuffer(Input[0], Length(Input));
InputStream.Position := 0;
OutputStream := TMemoryStream.Create;
try
Decompressor := TZDecompressionStream.Create(InputStream, maxWindowBits);
try
OutputStream.CopyFrom(Decompressor, 0);
finally
Decompressor.Free;
end;
SetLength(Result, OutputStream.Size);
OutputStream.Position := 0;
OutputStream.ReadBuffer(Result[0], OutputStream.Size);
finally
OutputStream.Free;
end;
finally
InputStream.Free;
end;
end;
end.