-
Notifications
You must be signed in to change notification settings - Fork 2
/
HISTLIST.PAS
341 lines (298 loc) · 9.25 KB
/
HISTLIST.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
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
{/////////////////////////////////////////////////////////////////////////
//
// Dos Navigator Version 1.51 Copyright (C) 1991-99 RIT Research Labs
//
// This programs is free for commercial and non-commercial use as long as
// the following conditions are aheared to.
//
// Copyright remains RIT Research Labs, and as such any Copyright notices
// in the code are not to be removed. If this package is used in a
// product, RIT Research Labs should be given attribution as the RIT Research
// Labs of the parts of the library used. This can be in the form of a textual
// message at program startup or in documentation (online or textual)
// provided with the package.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are
// met:
//
// 1. Redistributions of source code must retain the copyright
// notice, this list of conditions and the following disclaimer.
// 2. Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
// 3. All advertising materials mentioning features or use of this software
// must display the following acknowledgement:
// "Based on Dos Navigator by RIT Research Labs."
//
// THIS SOFTWARE IS PROVIDED BY RIT RESEARCH LABS "AS IS" AND ANY EXPRESS
// OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
// WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
// DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
// ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
// DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
// GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER
// IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
// OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
// ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
//
// The licence and distribution terms for any publically available
// version or derivative of this code cannot be changed. i.e. this code
// cannot simply be copied and put under another distribution licence
// (including the GNU Public Licence).
//
//////////////////////////////////////////////////////////////////////////}
unit HistList;
{-----------------------------------------------------}
{ This module is based on Turbo Vision HistList Unit }
{ Copyright (c) 1990 by Borland International }
{-----------------------------------------------------}
{$O+,F+,X+,I-,S-}
{****************************************************************************
History buffer structure:
Byte Byte String Byte Byte String
+-------------------------+-------------------------+--...--+
| 0 | Id | History string | 0 | Id | History string | |
+-------------------------+-------------------------+--...--+
***************************************************************************}
interface
uses Objects;
const
HistoryBlock: Pointer = nil;
HistorySize: Word = 2048;
HistoryUsed: Word = 0;
MaxHistorySize: Word = 20;
procedure HistoryAdd(Id: Byte; const Str: String);
function HistoryCount(Id: Byte): Word;
function HistoryStr(Id: Byte; Index: Integer): String;
procedure DeleteHistoryStr(Id: Byte; Index: Integer);
procedure ClearHistory;
procedure InitHistory;
procedure DoneHistory;
procedure StoreHistory(var S: TStream);
procedure LoadHistory(var S: TStream);
var
CurId: Byte;
CurString: PString;
implementation
uses Memory;
{ Advance CurString to next string with an ID of CurId }
procedure AdvanceStringPointer; near; assembler;
asm
PUSH DS
MOV CX,HistoryUsed
MOV BL,CurId
LDS SI,CurString
MOV DX,DS
MOV AX,DS
OR AX,SI
JZ @@3
CLD
JMP @@2
@@1: LODSW
CMP AH,BL { BL = CurId }
JE @@3
@@2: LODSB
XOR AH,AH
ADD SI,AX
CMP SI,CX { CX = HistoryUsed }
JB @@1
XOR SI,SI
MOV DX,SI
@@3: POP DS
MOV CurString.Word[0],SI
MOV CurString.Word[2],DX
end;
{ Deletes the current string from the table }
procedure DeleteString; near; assembler;
asm
PUSH DS
MOV CX,HistoryUsed
CLD
LES DI,CurString
MOV SI,DI
DEC DI
DEC DI
PUSH ES
POP DS
MOV AL,BYTE PTR [SI]
XOR AH,AH
INC AX
ADD SI,AX
SUB CX,SI
REP MOVSB
POP DS
MOV HistoryUsed,DI
end;
{ Insert a string into the table }
procedure InsertString(Id: Byte; const Str: String); near; assembler;
asm
PUSH DS
STD
{ Position ES:DI to the end the buffer }
{ ES:DX to beginning of buffer }
LES DX,HistoryBlock
MOV DI,HistoryUsed
LDS SI,Str
MOV BL,[SI]
INC BL
INC BL
INC BL
XOR BH,BH
POP DS
PUSH DS
@@1: MOV AX,DI
ADD AX,BX
SUB AX,DX { DX = HistoryBlock.Word[0] }
CMP AX,HistorySize
JB @@2
{ Drop the last string off the end of the list }
DEC DI
XOR AL,AL
MOV CX,0FFFFH
REPNE SCASB
INC DI
JMP @@1
{ Move the table down the size of the string }
@@2: MOV SI,DI
ADD DI,BX
MOV HistoryUsed,DI
PUSH ES
POP DS
MOV CX,SI
SUB CX,DX { DX = HistoryBlock.Word[0] }
REP MOVSB
{ Copy the string into the position }
CLD
MOV DI,DX { DX = HistoryBlock.Word[0] }
INC DI
MOV AH,Id
XOR AL,AL
STOSW
LDS SI,Str
LODSB
STOSB
MOV CL,AL
XOR CH,CH
REP MOVSB
POP DS
end;
procedure StartId(Id: Byte); near;
begin
CurId := Id;
CurString := HistoryBlock;
end;
function HistoryCount(Id: Byte): Word;
var
Count: Word;
begin
StartId(Id);
Count := 0;
AdvanceStringPointer;
while CurString <> nil do
begin
Inc(Count);
AdvanceStringPointer;
end;
HistoryCount := Count;
end;
procedure HistoryAdd(Id: Byte; const Str: String);
var C: Char;
I,J: Integer;
begin
if Str = '' then Exit;
if HistoryUsed < 3 then HistoryUsed := 1;
I := 0;
StartId(Id);
C := ' ';
{ Delete duplicates }
AdvanceStringPointer;
while CurString <> nil do
begin
if Str = Copy(CurString^, 1, Length(CurString^)-1) then
begin
C := CurString^[Length(CurString^)];
DeleteString;
Dec(I);
end;
Inc(I);
AdvanceStringPointer;
end;
if I > MaxHistorySize - 1 then
for J := I-1 downto 0 do
begin
HistoryStr(ID, J);
if CurString = nil then Break;
if CurString^[Length(CurString^)] <> '+' then
begin
DeleteString; Dec(I); Inc(J);
if I < MaxHistorySize then Break;
end;
end;
{
if HistoryUsed < Length(Str) + 4 then
begin
CurString := HistoryBlock;
Inc(LongInt(CurString), PtrRec(HistoryBlock).Ofs+1);
while (LongInt(CurString)-LongInt(HistoryBlock) < HistoryUsed)
and (HistoryUsed < Length(Str) + 4) do
begin
if CurString^[Length(CurString^)] <> '+' then DeleteString;
Inc(LongInt(CurString), Length(CurString^)+3);
end;
end;
}
CurString := nil;
InsertString(Id, Str + C);
end;
function HistoryStr(Id: Byte; Index: Integer): String;
var
I: Integer;
begin
StartId(Id);
for I := 0 to Index do AdvanceStringPointer;
if CurString <> nil then
HistoryStr := Copy(CurString^, 1, Length(CurString^)-1) else
HistoryStr := '';
end;
procedure ClearHistory;
begin
FillChar(HistoryBlock^, HistorySize, 0);
PChar(HistoryBlock)^ := #0;
HistoryUsed := PtrRec(HistoryBlock).Ofs + 1;
end;
procedure StoreHistory(var S: TStream);
var
Size: Word;
begin
Size := HistoryUsed - PtrRec(HistoryBlock).Ofs;
S.Write(Size, SizeOf(Word));
S.Write(HistoryBlock^, Size);
end;
procedure LoadHistory(var S: TStream);
var
Size, I: Word;
begin
S.Read(Size, SizeOf(Word));
if HistoryBlock = nil then InitHistory;
if HistorySize < Size then I := Size - HistorySize else I := 0;
S.Read(HistoryBlock^, Size - I);
S.Seek(S.GetPos + I);
HistoryUsed := PtrRec(HistoryBlock).Ofs + Size;
end;
procedure InitHistory;
begin
HistoryBlock := MemAllocSeg(HistorySize);
ClearHistory;
end;
procedure DoneHistory;
begin
FreeMem(HistoryBlock, HistorySize);
end;
procedure DeleteHistoryStr(Id: Byte; Index: Integer);
begin
HistoryStr(ID, Index);
if CurString <> nil then DeleteString;
end;
end.