-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPV_Gzip.pas
142 lines (110 loc) · 2.85 KB
/
PV_Gzip.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
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
unit PV_Gzip;
{$mode objfpc}{$H+}
//PV Pack
//https://github.com/PascalVault
//Licence: MIT
//Last update: 2023-10-06
//Gzip
interface
uses
Classes, SysUtils, StrUtils, Dialogs, CRC32_ISOHDLC, PV_Pack, PV_Compressor;
type
{ TGzip }
TGzip = class(TPack)
private
FStream: TStream;
FComment: String;
FIsFull: Boolean;
public
constructor Create(Str: TStream); override;
destructor Destroy; override;
function AddFile(Str: TStream; Name: String): Boolean; override;
procedure SetComment(Comment: String); override;
end;
implementation
{ TGzip }
constructor TGzip.Create(Str: TStream);
begin
FStream := Str;
FIsFull := False;
end;
destructor TGzip.Destroy;
begin
//
end;
function TGzip.AddFile(Str: TStream; Name: String): Boolean;
const BufLen = 4096;
type THead = packed record
ID1: Byte;
ID2: Byte;
Method: Byte;
Flag: Byte;
ModTime: Cardinal; //unix
XFlag: Byte;
OS: Byte;
end;
var Head: THead;
HeadLen: Integer;
HeadOffset: Integer;
DataOffset: Integer;
PackSize: Cardinal;
Hasher: TCRC32_ISO;
Buf: array of Byte;
ReadLen: Integer;
FinalOffset: Cardinal;
CRC: Cardinal;
Null: Byte;
Deflate: TCompressorDeflate;
begin
if FIsFull then Exit(False);
FIsFull := True;
HeadLen := SizeOf(Head) + Length(Name)+1;
if FComment <> '' then HeadLen := HeadLen + Length(FComment)+1;
//skip head for now
HeadOffset := FStream.Position;
DataOffset := HeadOffset + HeadLen;
FStream.Position := DataOffset;
//copy data and calculate checksum
Hasher := TCRC32_ISO.Create;
Deflate := TCompressorDeflate.Create(FStream);
SetLength(Buf, BufLen);
while Str.Position < Str.Size do begin
ReadLen := Str.Read(Buf[0], BufLen);
Hasher.Update(@Buf[0], ReadLen);
//FStream.Write(Buf[0], ReadLen);
Deflate.Write(Buf[0], ReadLen);
end;
Deflate.Free;
PackSize := FStream.Position - DataOffset;
FinalOffset := FStream.Position;
//rewind to write head
FStream.Position := HeadOffset;
CRC := Hasher.Final;
Hasher.Free;
with Head do begin
ID1 := 31;
ID2 := 139;
Method := 8; //deflate
Flag := 8;
ModTime := UnixStamp;
XFlag := 0;
OS := 0; //0=DOS+Win
end;
if FComment <> '' then Head.Flag := Head.Flag + 16;
Null := 0;
FStream.Write(Head, SizeOf(Head));
FStream.Write(Name[1], Length(Name));
FStream.Write(Null, 1);
if FComment <> '' then begin
FStream.Write(FComment[1], Length(FComment));
FStream.Write(Null, 1);
end;
FStream.Position := FinalOffset;
FStream.Write(CRC, 4);
FStream.Write(Str.Size, 4);
end;
procedure TGzip.SetComment(Comment: String);
begin
FComment := Comment;
end;
end.