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
|
unit dbf_idxcur;
interface
{$I dbf_common.inc}
uses
SysUtils,
Classes,
db,
dbf_cursor,
dbf_idxfile,
dbf_prsdef,
{$ifndef WINDOWS}
dbf_wtil,
{$endif}
dbf_common;
type
//====================================================================
//=== Index support
//====================================================================
TIndexCursor = class(TVirtualCursor)
private
FIndexFile: TIndexFile;
protected
function GetPhysicalRecNo: Integer; override;
function GetSequentialRecNo: Integer; override;
function GetSequentialRecordCount: Integer; override;
procedure SetPhysicalRecNo(RecNo: Integer); override;
procedure SetSequentialRecNo(RecNo: Integer); override;
procedure VariantStrToBuffer(Key: Variant; ABuffer: TRecordBuffer);
public
constructor Create(DbfIndexFile: TIndexFile);
destructor Destroy; override;
function Next: Boolean; override;
function Prev: Boolean; override;
procedure First; override;
procedure Last; override;
procedure Insert(RecNo: Integer; Buffer: TRecordBuffer);
procedure Update(RecNo: Integer; PrevBuffer, NewBuffer: TRecordBuffer);
{$ifdef SUPPORT_VARIANTS}
function VariantToBuffer(Key: Variant; ABuffer: TRecordBuffer): TExpressionType;
{$endif}
function CheckUserKey(Key: PChar; StringBuf: PChar): PChar;
property IndexFile: TIndexFile read FIndexFile;
end;
//====================================================================
// TIndexCursor = class;
//====================================================================
PIndexPosInfo = ^TIndexPage;
//====================================================================
implementation
{$ifdef WINDOWS}
uses
Windows;
{$endif}
//==========================================================
//============ TIndexCursor
//==========================================================
constructor TIndexCursor.Create(DbfIndexFile: TIndexFile);
begin
inherited Create(DbfIndexFile);
FIndexFile := DbfIndexFile;
end;
destructor TIndexCursor.Destroy; {override;}
begin
inherited Destroy;
end;
procedure TIndexCursor.Insert(RecNo: Integer; Buffer: TRecordBuffer);
begin
TIndexFile(PagedFile).Insert(RecNo,Buffer);
// TODO SET RecNo and Key
end;
procedure TIndexCursor.Update(RecNo: Integer; PrevBuffer, NewBuffer: TRecordBuffer);
begin
TIndexFile(PagedFile).Update(RecNo, PrevBuffer, NewBuffer);
end;
procedure TIndexCursor.First;
begin
TIndexFile(PagedFile).First;
end;
procedure TIndexCursor.Last;
begin
TIndexFile(PagedFile).Last;
end;
function TIndexCursor.Prev: Boolean;
begin
Result := TIndexFile(PagedFile).Prev;
end;
function TIndexCursor.Next: Boolean;
begin
Result := TIndexFile(PagedFile).Next;
end;
function TIndexCursor.GetPhysicalRecNo: Integer;
begin
Result := TIndexFile(PagedFile).PhysicalRecNo;
end;
procedure TIndexCursor.SetPhysicalRecNo(RecNo: Integer);
begin
TIndexFile(PagedFile).PhysicalRecNo := RecNo;
end;
function TIndexCursor.GetSequentialRecordCount: Integer;
begin
Result := TIndexFile(PagedFile).SequentialRecordCount;
end;
function TIndexCursor.GetSequentialRecNo: Integer;
begin
Result := TIndexFile(PagedFile).SequentialRecNo;
end;
procedure TIndexCursor.SetSequentialRecNo(RecNo: Integer);
begin
TIndexFile(PagedFile).SequentialRecNo := RecNo;
end;
{$ifdef SUPPORT_VARIANTS}
procedure TIndexCursor.VariantStrToBuffer(Key: Variant; ABuffer: TRecordBuffer);
var
currLen: Integer;
StrKey: string;
begin
StrKey := Key;
currLen := TranslateString(GetACP, FIndexFile.CodePage, PAnsiChar(StrKey), PAnsiChar(ABuffer), -1);
// we have null-terminated string, pad with spaces if string too short
FillChar(ABuffer[currLen], TIndexFile(PagedFile).KeyLen-currLen, ' ');
end;
function TIndexCursor.VariantToBuffer(Key: Variant; ABuffer: TRecordBuffer): TExpressionType;
// assumes ABuffer is large enough ie. at least max key size
begin
if (TIndexFile(PagedFile).KeyType='N') then
begin
PDouble(ABuffer)^ := Key;
if (TIndexFile(PagedFile).IndexVersion <> xBaseIII) then
begin
// make copy of userbcd to buffer
Move(TIndexFile(PagedFile).PrepareKey(ABuffer, etFloat)[0], ABuffer[0], 11);
end;
Result := etInteger;
end else begin
VariantStrToBuffer(Key, ABuffer);
Result := etString;
end;
end;
{$endif}
function TIndexCursor.CheckUserKey(Key: PChar; StringBuf: PChar): PChar;
var
keyLen, userLen: Integer;
begin
// default is to use key
Result := Key;
// if key is double, then no check
if (TIndexFile(PagedFile).KeyType = 'N') then
begin
// nothing needs to be done
end else begin
// check if string long enough then no copying needed
userLen := StrLen(Key);
keyLen := TIndexFile(PagedFile).KeyLen;
if userLen < keyLen then
begin
// copy string
Move(Key^, StringBuf[0], userLen);
// add spaces to searchstring
FillChar(StringBuf[userLen], keyLen - userLen, ' ');
// set buffer to temporary buffer
Result := StringBuf;
end;
end;
end;
end.
|