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
|
{
This file is part of the Free Pascal run time library.
Copyright (c) 2008 by Giulio Bernardi
String table classes used internally by readers and writers
See the file COPYING.FPC, included in this distribution,
for details about the copyright.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
**********************************************************************}
unit strtable;
{$MODE OBJFPC} {$H+}
interface
uses
Classes;
type
{ TResStringTable }
TResStringTable = class
private
fStartOfs : longword;
fData : TMemoryStream;
fUsed : boolean;
function GetSize : longword;
public
constructor Create;
destructor Destroy; override;
function Add(s : string) : longword;
procedure Clear;
procedure WriteToStream(aStream : TStream);
property StartOfs : longword read fStartOfs write fStartOfs;
property Size : longword read GetSize;
property Used : boolean read fUsed;
end;
{ TObjectStringTable }
TObjectStringTable = class
private
fData : TMemoryStream;
fStartOfs : longword;
function GetSize : longword;
protected
public
constructor Create(aStream : TStream; aSize : longword);
destructor Destroy; override;
function Get(aOffset : longword) : string;
function Add(aString : string) : longword;
procedure Clear;
procedure WriteToStream(aStream : TStream);
property Size : longword read GetSize;
property StartOfs : longword read fStartOfs write fStartOfs;
end;
implementation
{ TResStringTable }
function TResStringTable.GetSize: longword;
begin
Result:=fData.Size;
end;
constructor TResStringTable.Create;
var b : byte;
begin
fStartOfs:=0;
fData:=TMemoryStream.Create;
b:=0;
fData.WriteBuffer(b,1);
fUsed:=false;
end;
destructor TResStringTable.Destroy;
begin
fData.Free;
end;
function TResStringTable.Add(s: string): longword;
var b : byte;
begin
fUsed:=true;
Result:=fData.Position;
if s='' then Result:=0
else
begin
fData.WriteBuffer(s[1],length(s));
b:=0;
fData.WriteBuffer(b,1);
end;
end;
procedure TResStringTable.Clear;
begin
fStartOfs:=0;
fData.SetSize(1);
fData.Position:=1;
fUsed:=false;
end;
procedure TResStringTable.WriteToStream(aStream: TStream);
var oldpos : int64;
begin
oldpos:=fData.Position;
try
fData.Position:=0;
aStream.CopyFrom(fData,fData.Size);
finally
fData.Position:=oldpos;
end;
end;
{ TObjectStringTable }
function TObjectStringTable.GetSize: longword;
begin
Result:=fData.Size;
end;
constructor TObjectStringTable.Create(aStream: TStream; aSize: longword);
var b : byte;
begin
fData:=TMemoryStream.Create;
fData.Position:=0;
if aStream=nil then
begin
b:=0;
fData.WriteBuffer(b,1);
end
else
fData.CopyFrom(aStream,aSize);
end;
destructor TObjectStringTable.Destroy;
begin
fData.Free;
end;
function TObjectStringTable.Get(aOffset: longword): string;
var c : char;
begin
Result:='';
fData.Position:=aOffset;
repeat
fData.ReadBuffer(c,1);
if c<>#0 then Result:=Result+c;
until (c=#0) or (fData.Position>=fData.Size);
end;
function TObjectStringTable.Add(aString: string) : longword;
var b : byte;
begin
Result:=fData.Position;
if aString='' then Result:=0
else
begin
fData.WriteBuffer(aString[1],length(aString));
b:=0;
fData.WriteBuffer(b,1);
end;
end;
procedure TObjectStringTable.Clear;
begin
fData.SetSize(1);
fData.Position:=1;
end;
procedure TObjectStringTable.WriteToStream(aStream: TStream);
begin
fData.Position:=0;
aStream.CopyFrom(fData,fData.Size);
end;
end.
|