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
|
Unit FCache;
interface
{ ---------------------- File Cache -------------------------- }
{ implements a simple file cache and mimic C getc and ungetc
functions. }
const
BufMemSize = 4096;
EOF = ^Z;
type
Cache = record
active : boolean;
BildOffset : LongInt;
Buffer : array[0..BufMemSize-1] of byte;
FVarPtr : ^file;
FileOfs : LongInt;
BufPos : integer;
BufSize : integer;
end;
Procedure fc_Init(var fc : Cache;
var f : file; FPos : LongInt);
Procedure fc_Close(var fc : Cache);
Procedure fc_Done(var fc : Cache;
var f : file);
Procedure fc_ReadBlock(var fc : Cache);
Function fc_getc(var fc : Cache) : Byte;
{ Read a byte at the current buffer read-index, increment the buffer
read-index }
function fc_ungetc (var fc : Cache; ch : char) : Byte;
{ Read a byte at the current buffer read-index, increment the buffer
read-index }
procedure fc_WriteTo(var fc : Cache;
var Buf; Count : Word);
implementation
{$IFDEF USE_DOS}
uses
Dos;
{$ENDIF}
Procedure fc_Init(var fc : Cache;
var f : file; FPos : LongInt);
begin
with fc do
begin
active := false;
FVarPtr := @f;
FileOfs := FPos;
BufSize := 0;
BufPos := 0;
{$IFDEF USE_DOS}
if TFileRec(f).Mode <> fmClosed then
{$ENDIF}
begin
{$IFOPT I+} {$DEFINE IOCheck} {$I-} {$ENDIF}
Seek(f, FPos);
BlockRead(f, Buffer, BufMemSize, BufSize);
{$IFDEF IOCheck} {$I+} {$ENDIF}
if (IOResult = 0) and (BufSize <> 0) then
active := true;
end;
end;
end;
Procedure fc_Done(var fc : Cache;
var f : file);
begin
with fc do
if FVarPtr = @f then
begin
active := false;
FVarPtr := NIL;
FileOfs := 0;
BufSize := 0;
BufPos := 0;
end;
end;
Procedure fc_Close(var fc : Cache);
begin
with fc do
begin
if Assigned(FVarPtr) then
Close(FVarPtr^);
fc_Done(fc, FVarPtr^);
end;
end;
Procedure fc_ReadBlock(var fc : Cache);
Begin
with fc do
if active then
begin
{$I-}
Seek(FVarPtr^, FileOfs);
BlockRead(FVarPtr^, Buffer, BufMemSize, BufSize);
{$IFDEF IOCheck} {$I+} {$ENDIF}
BufPos := 0;
active := (IOResult = 0) and (BufSize <> 0);
end;
End;
Function fc_getc(var fc : Cache) : Byte;
{ Read a byte at the current buffer read-index, increment the buffer
read-index }
begin
with fc do
if active then
begin
fc_GetC := Buffer[BufPos];
Inc(BufPos);
if BufPos = BufSize then
begin
Inc(FileOfs, BufSize);
fc_ReadBlock(fc);
end;
end
else
fc_getc := Byte(EOF);
end;
function fc_ungetc (var fc : Cache; ch : char) : Byte;
{ Read a byte at the current buffer read-index, increment the buffer
read-index }
begin
with fc do
begin
fc_UnGetC := Byte(EOF);
if active and (FileOfs > 0) then
begin
if BufPos = 0 then
begin
Dec(FileOfs);
fc_ReadBlock(fc);
end;
if BufPos > 0 then
begin
Dec(BufPos);
fc_UnGetC := Buffer[BufPos];
end;
end;
end;
end;
procedure fc_WriteTo(var fc : Cache;
var Buf; Count : Word);
type
PByte = ^Byte;
var
ChunkSize : Word;
DestPtr : PByte;
Begin
with fc do
if active then
begin
ChunkSize := BufSize - BufPos;
DestPtr := PByte(@Buf);
if Count > ChunkSize then
begin
{ the amount we need to read straddles a buffer boundary,
we need two or more chunks. This implementation doesn't try
to read more than two chunks. }
Move(Buffer[BufPos], Buf, ChunkSize);
Inc(DestPtr, ChunkSize);
Dec(count, ChunkSize);
Inc(FileOfs, BufSize);
fc_ReadBlock(fc);
end;
{ we are now completely within the buffer boundary,
do a simple mem move }
Move(Buffer[BufPos], DestPtr^, count);
end;
End;
{ ---------------------- End File Cache -------------------------- }
end.
|