forked from artzub/tdbf
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathdbf_fields.pas
591 lines (544 loc) · 15 KB
/
dbf_fields.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
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
unit dbf_fields;
interface
{$I dbf_common.inc}
uses
Classes,
SysUtils,
db,
dbf_common,
dbf_str;
type
PDbfFieldDef = ^TDbfFieldDef;
TDbfFieldDef = class(TCollectionItem)
private
FFieldName: AnsiString;
FFieldType: TFieldType;
FNativeFieldType: TDbfFieldType;
FDefaultBuf: PAnsiChar;
FMinBuf: PAnsiChar;
FMaxBuf: PAnsiChar;
FSize: Integer;
FPrecision: Integer;
FHasDefault: Boolean;
FHasMin: Boolean;
FHasMax: Boolean;
FAllocSize: Integer;
FCopyFrom: Integer;
FOffset: Integer;
FAutoInc: Cardinal;
FRequired: Boolean;
FIsLockField: Boolean;
FNullPosition: integer;
function GetDbfVersion: TXBaseVersion;
procedure SetNativeFieldType(lFieldType: TDbfFieldType);
procedure SetFieldType(lFieldType: TFieldType);
procedure SetSize(lSize: Integer);
procedure SetPrecision(lPrecision: Integer);
procedure VCLToNative;
procedure NativeToVCL;
procedure FreeBuffers;
protected
function GetDisplayName: string; override;
procedure AssignTo(Dest: TPersistent); override;
property DbfVersion: TXBaseVersion read GetDbfVersion;
public
constructor Create(ACollection: TCollection); override;
destructor Destroy; override;
procedure Assign(Source: TPersistent); override;
procedure AssignDb(DbSource: TFieldDef);
procedure CheckSizePrecision;
procedure SetDefaultSize;
procedure AllocBuffers;
function IsBlob: Boolean;
property DefaultBuf: PAnsiChar read FDefaultBuf;
property MinBuf: PAnsiChar read FMinBuf;
property MaxBuf: PAnsiChar read FMaxBuf;
property HasDefault: Boolean read FHasDefault write FHasDefault;
property HasMin: Boolean read FHasMin write FHasMin;
property HasMax: Boolean read FHasMax write FHasMax;
property Offset: Integer read FOffset write FOffset;
property AutoInc: Cardinal read FAutoInc write FAutoInc;
property IsLockField: Boolean read FIsLockField write FIsLockField;
property CopyFrom: Integer read FCopyFrom write FCopyFrom;
published
property FieldName: AnsiString read FFieldName write FFieldName;
property FieldType: TFieldType read FFieldType write SetFieldType;
property NativeFieldType: TDbfFieldType read FNativeFieldType write SetNativeFieldType;
property NullPosition: integer read FNullPosition write FNullPosition;
property Size: Integer read FSize write SetSize;
property Precision: Integer read FPrecision write SetPrecision;
property Required: Boolean read FRequired write FRequired;
end;
TDbfFieldDefs = class(TCollection)
private
FOwner: TPersistent;
FDbfVersion: TXBaseVersion;
function GetItem(Idx: Integer): TDbfFieldDef;
protected
function GetOwner: TPersistent; override;
public
constructor Create(Owner: TPersistent);
{$ifdef SUPPORT_DEFAULT_PARAMS}
procedure Add(const Name: AnsiString; DataType: TFieldType; Size: Integer = 0; Required: Boolean = False);
{$else}
procedure Add(const Name: AnsiString; DataType: TFieldType; Size: Integer; Required: Boolean);
{$endif}
function AddFieldDef: TDbfFieldDef;
property Items[Idx: Integer]: TDbfFieldDef read GetItem;
property DbfVersion: TXBaseVersion read FDbfVersion write FDbfVersion;
end;
implementation
uses
dbf_dbffile; // for dbf header structures
{$I dbf_struct.inc}
// I keep changing that fields...
// Last time has been asked by Venelin Georgiev
// Is he going to be the last ?
const
(*
The theory until now was :
ftSmallint 16 bits = -32768 to 32767
123456 = 6 digit max theorically
DIGITS_SMALLINT = 6;
ftInteger 32 bits = -2147483648 to 2147483647
12345678901 = 11 digits max
DIGITS_INTEGER = 11;
ftLargeInt 64 bits = -9223372036854775808 to 9223372036854775807
12345678901234567890 = 20 digits max
DIGITS_LARGEINT = 20;
But in fact if I accept 6 digits into a ftSmallInt then tDbf will not
being able to handles fields with 999999 (6 digits).
So I now oversize the field type in order to accept anithing coming from the
database.
ftSmallint 16 bits = -32768 to 32767
-999 to 9999
4 digits max theorically
DIGITS_SMALLINT = 4;
ftInteger 32 bits = -2147483648 to 2147483647
-99999999 to 999999999 12345678901 = 11 digits max
DIGITS_INTEGER = 9;
ftLargeInt 64 bits = -9223372036854775808 to 9223372036854775807
-99999999999999999 to 999999999999999999
DIGITS_LARGEINT = 18;
*)
DIGITS_SMALLINT = 4;
DIGITS_INTEGER = 9;
DIGITS_LARGEINT = 18;
//====================================================================
// DbfFieldDefs
//====================================================================
function TDbfFieldDefs.GetItem(Idx: Integer): TDbfFieldDef;
begin
Result := TDbfFieldDef(inherited GetItem(Idx));
end;
constructor TDbfFieldDefs.Create(Owner: TPersistent);
begin
inherited Create(TDbfFieldDef);
FOwner := Owner;
end;
function TDbfFieldDefs.AddFieldDef: TDbfFieldDef;
begin
Result := TDbfFieldDef(inherited Add);
end;
function TDbfFieldDefs.GetOwner: TPersistent; {override;}
begin
Result := FOwner;
end;
procedure TDbfFieldDefs.Add(const Name: AnsiString; DataType: TFieldType; Size: Integer; Required: Boolean);
var
FieldDef: TDbfFieldDef;
begin
FieldDef := AddFieldDef;
FieldDef.FieldName := Name;
FieldDef.FieldType := DataType;
if Size <> 0 then
FieldDef.Size := Size;
FieldDef.Required := Required;
end;
//====================================================================
// DbfFieldDef
//====================================================================
constructor TDbfFieldDef.Create(ACollection: TCollection); {virtual}
begin
inherited;
FDefaultBuf := nil;
FMinBuf := nil;
FMaxBuf := nil;
FAllocSize := 0;
FCopyFrom := -1;
FPrecision := 0;
FHasDefault := false;
FHasMin := false;
FHasMax := false;
FNullPosition := -1;
end;
destructor TDbfFieldDef.Destroy; {override}
begin
FreeBuffers;
inherited;
end;
procedure TDbfFieldDef.Assign(Source: TPersistent);
var
DbfSource: TDbfFieldDef;
begin
if Source is TDbfFieldDef then
begin
// copy from another TDbfFieldDef
DbfSource := TDbfFieldDef(Source);
FFieldName := DbfSource.FieldName;
FFieldType := DbfSource.FieldType;
FNativeFieldType := DbfSource.NativeFieldType;
FSize := DbfSource.Size;
FPrecision := DbfSource.Precision;
FRequired := DbfSource.Required;
FCopyFrom := DbfSource.Index;
FIsLockField := DbfSource.IsLockField;
FNullPosition := DbfSource.NullPosition;
// copy default,min,max
AllocBuffers;
if DbfSource.DefaultBuf <> nil then
Move(DbfSource.DefaultBuf^, FDefaultBuf^, FAllocSize*3);
FHasDefault := DbfSource.HasDefault;
FHasMin := DbfSource.HasMin;
FHasMax := DbfSource.HasMax;
// do we need offsets?
FOffset := DbfSource.Offset;
FAutoInc := DbfSource.AutoInc;
{$ifdef SUPPORT_FIELDDEF_TPERSISTENT}
end else if Source is TFieldDef then begin
AssignDb(TFieldDef(Source));
{$endif}
end else
inherited Assign(Source);
end;
procedure TDbfFieldDef.AssignDb(DbSource: TFieldDef);
begin
// copy from Db.TFieldDef
FFieldName := AnsiString(DbSource.Name);
FFieldType := DbSource.DataType;
FSize := DbSource.Size;
FPrecision := DbSource.Precision;
FRequired := DbSource.Required;
{$ifdef SUPPORT_FIELDDEF_INDEX}
FCopyFrom := DbSource.Index;
{$endif}
FIsLockField := false;
// convert VCL fieldtypes to native DBF fieldtypes
VCLToNative;
// for integer / float fields try fill in size/precision
if FSize = 0 then
SetDefaultSize
else
CheckSizePrecision;
// VCL does not have default value support
AllocBuffers;
FHasDefault := false;
FHasMin := false;
FHasMax := false;
FOffset := 0;
FAutoInc := 0;
end;
procedure TDbfFieldDef.AssignTo(Dest: TPersistent);
var
DbDest: TFieldDef;
begin
{$ifdef SUPPORT_FIELDDEF_TPERSISTENT}
// copy to VCL fielddef?
if Dest is TFieldDef then
begin
DbDest := TFieldDef(Dest);
// VCL TFieldDef does not know how to handle TDbfFieldDef!
// what a shame :-)
{$ifdef SUPPORT_FIELDDEF_ATTRIBUTES}
DbDest.Attributes := [];
DbDest.ChildDefs.Clear;
DbDest.DataType := FFieldType;
DbDest.Required := FRequired;
DbDest.Size := FSize;
DbDest.Name := string(FFieldName);
{$endif}
end else
{$endif}
inherited AssignTo(Dest);
end;
function TDbfFieldDef.GetDbfVersion: TXBaseVersion;
begin
Result := TDbfFieldDefs(Collection).DbfVersion;
end;
procedure TDbfFieldDef.SetFieldType(lFieldType: tFieldType);
begin
FFieldType := lFieldType;
VCLToNative;
SetDefaultSize;
end;
procedure TDbfFieldDef.SetNativeFieldType(lFieldType: tDbfFieldType);
begin
// get uppercase field type
if (lFieldType >= 'a') and (lFieldType <= 'z') then
lFieldType := AnsiChar(Chr(Ord(lFieldType)-32));
FNativeFieldType := lFieldType;
NativeToVCL;
CheckSizePrecision;
end;
procedure TDbfFieldDef.SetSize(lSize: Integer);
begin
FSize := lSize;
CheckSizePrecision;
end;
procedure TDbfFieldDef.SetPrecision(lPrecision: Integer);
begin
FPrecision := lPrecision;
CheckSizePrecision;
end;
procedure TDbfFieldDef.NativeToVCL;
begin
case FNativeFieldType of
// OH 2000-11-15 dBase7 support.
// Add the new fieldtypes
'+' :
if DbfVersion = xBaseVII then
FFieldType := ftAutoInc;
'I' : FFieldType := ftInteger;
'O' : FFieldType := ftFloat;
'@', 'T':
FFieldType := ftDateTime;
'C',
#$91 {Russian 'C'}
: FFieldType := ftString;
'L' : FFieldType := ftBoolean;
'F', 'N':
begin
if (FPrecision = 0) then
begin
if FSize <= DIGITS_SMALLINT then
FFieldType := ftSmallInt
else
if FSize <= DIGITS_INTEGER then
FFieldType := ftInteger
else
{$ifdef SUPPORT_INT64}
FFieldType := ftLargeInt;
{$else}
FFieldType := ftFloat;
{$endif}
end else begin
FFieldType := ftFloat;
end;
end;
'D' : FFieldType := ftDate;
'M' : FFieldType := ftMemo;
'B' :
if DbfVersion = xFoxPro then
FFieldType := ftFloat
else
FFieldType := ftBlob;
'G' : FFieldType := ftDBaseOle;
'Y' :
if DbfGlobals.CurrencyAsBCD then
FFieldType := ftBCD
else
FFieldType := ftCurrency;
'0' : FFieldType := ftBytes; { Visual FoxPro ``_NullFlags'' }
else
FNativeFieldType := #0;
FFieldType := ftUnknown;
end; //case
end;
procedure TDbfFieldDef.VCLToNative;
begin
FNativeFieldType := #0;
case FFieldType of
ftAutoInc : FNativeFieldType := '+';
ftDateTime :
if DbfVersion = xBaseVII then
FNativeFieldType := '@'
else
if DbfVersion = xFoxPro then
FNativeFieldType := 'T'
else
FNativeFieldType := 'D';
{$ifdef SUPPORT_FIELDTYPES_V4}
ftFixedChar,
ftWideString,
{$endif}
ftString : FNativeFieldType := 'C';
ftBoolean : FNativeFieldType := 'L';
ftFloat, ftSmallInt, ftWord
{$ifdef SUPPORT_INT64}
, ftLargeInt
{$endif}
: FNativeFieldType := 'N';
ftDate : FNativeFieldType := 'D';
ftMemo : FNativeFieldType := 'M';
ftBlob : FNativeFieldType := 'B';
ftDBaseOle : FNativeFieldType := 'G';
ftInteger :
if DbfVersion = xBaseVII then
FNativeFieldType := 'I'
else
FNativeFieldType := 'N';
ftBCD, ftCurrency:
if DbfVersion = xFoxPro then
FNativeFieldType := 'Y';
end;
if FNativeFieldType = #0 then
raise EDbfError.CreateFmt(STRING_INVALID_VCL_FIELD_TYPE, [GetDisplayName, Ord(FFieldType)]);
end;
procedure TDbfFieldDef.SetDefaultSize;
begin
// choose default values for variable size fields
case FFieldType of
ftFloat:
begin
FSize := 18;
FPrecision := 8;
end;
ftCurrency, ftBCD:
begin
FSize := 8;
FPrecision := 4;
end;
ftSmallInt, ftWord:
begin
FSize := DIGITS_SMALLINT;
FPrecision := 0;
end;
ftInteger, ftAutoInc:
begin
if DbfVersion = xBaseVII then
FSize := 4
else
FSize := DIGITS_INTEGER;
FPrecision := 0;
end;
{$ifdef SUPPORT_INT64}
ftLargeInt:
begin
FSize := DIGITS_LARGEINT;
FPrecision := 0;
end;
{$endif}
ftString {$ifdef SUPPORT_FIELDTYPES_V4}, ftFixedChar, ftWideString{$endif}:
begin
FSize := 30;
FPrecision := 0;
end;
end; // case fieldtype
// set sizes for fields that are restricted to single size/precision
CheckSizePrecision;
end;
procedure TDbfFieldDef.CheckSizePrecision;
begin
case FNativeFieldType of
'C':
begin
if FSize < 0 then
FSize := 0;
if DbfVersion = xFoxPro then
begin
if FSize >= $FFFF then
FSize := $FFFF;
end else begin
if FSize >= $FF then
FSize := $FF;
end;
FPrecision := 0;
end;
'L':
begin
FSize := 1;
FPrecision := 0;
end;
'N','F':
begin
// floating point
if FSize < 1 then FSize := 1;
if FSize >= 20 then FSize := 20;
if FPrecision > FSize-2 then FPrecision := FSize-2;
if FPrecision < 0 then FPrecision := 0;
end;
'D':
begin
FSize := 8;
FPrecision := 0;
end;
'B':
begin
if DbfVersion <> xFoxPro then
begin
FSize := 10;
FPrecision := 0;
end;
end;
'M','G':
begin
if DbfVersion = xFoxPro then
begin
if (FSize <> 4) and (FSize <> 10) then
FSize := 4;
end else
FSize := 10;
FPrecision := 0;
end;
'+','I':
begin
FSize := 4;
FPrecision := 0;
end;
'@', 'O':
begin
FSize := 8;
FPrecision := 0;
end;
'T':
begin
if DbfVersion = xFoxPro then
FSize := 8
else
FSize := 14;
FPrecision := 0;
end;
'Y':
begin
FSize := 8;
FPrecision := 4;
end;
else
// Nothing
end; // case
end;
function TDbfFieldDef.GetDisplayName: string; {override;}
begin
Result := string(FieldName);
end;
function TDbfFieldDef.IsBlob: Boolean; {override;}
begin
Result := FNativeFieldType in ['M','G','B'];
end;
procedure TDbfFieldDef.FreeBuffers;
begin
if FDefaultBuf <> nil then
begin
// one buffer for all
FreeMemAndNil(Pointer(FDefaultBuf));
FMinBuf := nil;
FMaxBuf := nil;
end;
FAllocSize := 0;
end;
procedure TDbfFieldDef.AllocBuffers;
begin
// size changed?
if FAllocSize <> FSize then
begin
// free old buffers
FreeBuffers;
// alloc new
GetMem(FDefaultBuf, FSize*3);
FMinBuf := FDefaultBuf + FSize;
FMaxBuf := FMinBuf + FSize;
// store allocated size
FAllocSize := FSize;
end;
end;
end.