summaryrefslogtreecommitdiff
path: root/support/dktools/dk4dbi.c
blob: f7c3a349adeac3c4aa90c2557d3a6e77ad477626 (plain)
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
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
/*
	WARNING: This file was generated by dkct.
	Changes you make here will be lost if dkct is run again!
	You should modify the original source and run dkct on it.
	Original source: dk4dbi.ctr
*/

/*
Copyright (C) 2015-2017, Dirk Krause

Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:

* Redistributions of source code must retain the above copyright notice,
  this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above opyright notice,
  this list of conditions and the following disclaimer in the documentation
  and/or other materials provided with the distribution.
* Neither the name of the author nor the names of contributors may be used
  to endorse or promote products derived from this software without specific
  prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``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 COPYRIGHT OWNER 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.
*/

/**	@file dk4dbi.c The dk4dbi module.
*/


#line 556 "dk4dbi.ctr"

#include "dk4conf.h"

#if DK4_HAVE_ERRNO_H
#ifndef ERRNO_H_INCLUDED
#include <errno.h>
#define	ERRNO_H_INCLUDED 1
#endif
#endif

#if DK4_HAVE_SYS_STAT_H
#ifndef SYS_STAT_H_INCLUDED
#include <sys/stat.h>
#define	SYS_STAT_H_INCLUDED 1
#endif
#endif

#include "dk4dbi.h"
#include "dk4mem.h"
#include "dk4memrs.h"
#include "dk4strd.h"
#include "dk4fopd.h"
#include "dk4numco.h"
#include "dk4isadm.h"
#include "dk4fopt.h"
#include "dk4mpl.h"
#include "dk4delfile.h"
#include "dk4stat.h"
#include "dk4statd.h"





#line 589 "dk4dbi.ctr"



/**	One storage entry.
*/
typedef struct {
  void		*kd;	/**< Key data. */
  void		*vd;	/**< Value data. */
  size_t	 ks;	/**< Key size. */
  size_t	 vs;	/**< Value size. */
} dk4_dbi_datum_t;



/**	Backend type names.
*/
static const dkChar *dk4dbi_type_names[] = {
/* 0 */
dkT("mem"),

/* 1 */
dkT("bdb"),

/* 2 */
dkT("ndbm"),

NULL


#line 611 "dk4dbi.ctr"
};



/**	File name suffixes for NDBM files.
*/
static const dkChar *dk4dbi_ndbm_suffixes[] = {
dkT(".dir"), dkT(".pag")
};



/**	Maximum size of key or value.
*/
static const unsigned long dk4dbi_max_size = 4294967295UL;



/**	Delete one record from an in-memory database,
	release resources.
	@param	ptr	Record to delete
	@param	options	The database options.
	@return	1 on success, 0 on error.
*/
static
int
dk4dbi_datum_delete(dk4_dbi_datum_t *ptr, int options)
{
  int		 back = 0;
  

#line 641 "dk4dbi.ctr"
  if (NULL != ptr) {
    back = 1;
    if (0 != (DK4_DB_OPT_RESET_KEY & options)) {
      if ((NULL != ptr->kd) && ((size_t)0UL < ptr->ks)) {
        

#line 646 "dk4dbi.ctr"
        if (0 == dk4mem_reset_secure(ptr->kd, ptr->ks, NULL)) {
	  back = 0;
	}
      }
    }
    if (0 != (DK4_DB_OPT_RESET_VALUE & options)) {
      if ((NULL != ptr->vd) && ((size_t)0UL < ptr->vs)) {
        

#line 654 "dk4dbi.ctr"
        if (0 == dk4mem_reset_secure(ptr->vd, ptr->vs, NULL)) {
	  back = 0;
	}
      }
    }
    dk4mem_release(ptr->kd);
    dk4mem_release(ptr->vd);
    ptr->ks = ptr->vs = (size_t)0UL;
    dk4mem_free(ptr);
  }
  

#line 665 "dk4dbi.ctr"
  return back;
}



/**	Allocate memory for a new record.
	@param	ks
	@param	vs
	@param	erp
	@return	Pointer to new record structure on success, NULL on error.

	Error codes:
	- DK4_E_MEMORY_ALLOCATION_FAILED<br>
	  with mem.elsize and mem.nelem
	  set if there is not enough memory available.
*/
static
dk4_dbi_datum_t *
dk4dbi_datum_new(
  size_t	 ks,
  size_t	 vs,
  dk4_er_t	*erp
)
{
  dk4_dbi_datum_t	*back	= NULL;
  

#line 691 "dk4dbi.ctr"
  back = dk4mem_new(dk4_dbi_datum_t,1,erp);
  if (NULL != back) {
    back->kd = back->vd = NULL;
    back->ks = back->vs = (size_t)0UL;
    back->kd = dk4mem_new(char,ks,erp);
    back->vd = dk4mem_new(char,vs,erp);
    if ((NULL != back->kd) && (NULL != back->vd)) {
      back->ks = ks; back->vs = vs;
    } else {
      dk4mem_release(back->kd);
      dk4mem_release(back->vd);
      dk4mem_free(back);
      back = NULL;
    }
  } 

#line 706 "dk4dbi.ctr"
  return back;
}




/**	Write in-memory database contents back to file.
	@param	db	Database to save.
	@param	erp	Error report, may be NULL.
	@return	1 on success, 0 on error.

	Error codes:
	- DK4_E_SYNTAX<br>
	  if the database file name does not refer to a regular file,
	- DK4_E_SEC_CHECK<br>
	  with failed check id in iDetails1 if access is denied by additional
	  security checks,
	- DK4_E_OPEN_WRITE_FAILED<br>
	  with errno value in iDetails1 if fopen() or fwrite() failed,
	- DK4_E_CLOSE_FAILED<br>
	  with errno value in iDetails1 if fclose() failed,
	- DK4_E_WRITE_FAILD<br>
	  if fwrite() failed.
*/
static
int
dk4dbi_mem_to_file(
  dk4_dbi_t	*db,
  dk4_er_t	*erp
)
{
  FILE			*fipo	= NULL;			/* Write text ile */
  dk4_dbi_datum_t	*rp	= NULL;			/* Current record */
  unsigned char		 uc[8];				/* Sizes byte array */
  size_t		 nbw	= 0;			/* Number of bytes */
  int			 tests	= DK4_FOPEN_SC_USER;	/* Security checks */
  int			 back	= 0;

  

#line 745 "dk4dbi.ctr"
  if (dk4isadmin()) { tests = DK4_FOPEN_SC_PRIVILEGED; }
  fipo = dk4fopen(db->fn, dkT("wb"), tests, erp);
  if (NULL != fipo) {		

#line 748 "dk4dbi.ctr"
    back = 1;
    dk4sto_it_reset((db->dt).mem.i);
    do {
      rp = (dk4_dbi_datum_t *)dk4sto_it_next((db->dt).mem.i);
      if (NULL != rp) {		

#line 753 "dk4dbi.ctr"
	uc[0] = (unsigned char)(((unsigned long)(rp->ks) >> 24) & 0x000000FFUL);
	uc[1] = (unsigned char)(((unsigned long)(rp->ks) >> 16) & 0x000000FFUL);
	uc[2] = (unsigned char)(((unsigned long)(rp->ks) >>  8) & 0x000000FFUL);
	uc[3] = (unsigned char)(((unsigned long)(rp->ks)      ) & 0x000000FFUL);
	uc[4] = (unsigned char)(((unsigned long)(rp->vs) >> 24) & 0x000000FFUL);
	uc[5] = (unsigned char)(((unsigned long)(rp->vs) >> 16) & 0x000000FFUL);
	uc[6] = (unsigned char)(((unsigned long)(rp->vs) >>  8) & 0x000000FFUL);
	uc[7] = (unsigned char)(((unsigned long)(rp->vs)      ) & 0x000000FFUL);
	nbw = fwrite(uc, 1, 8, fipo);
	if (8 == nbw) {		

#line 763 "dk4dbi.ctr"
	  nbw = fwrite(rp->kd, 1, rp->ks, fipo);
	  if (rp->ks == nbw) {	

#line 765 "dk4dbi.ctr"
	    nbw = fwrite(rp->vd, 1, rp->vs, fipo);
	    if (rp->vs == nbw) {	

#line 767 "dk4dbi.ctr"
	    } else {
	      back = 0;		

#line 769 "dk4dbi.ctr"
	      dk4error_set_simple_error_code(erp, DK4_E_WRITE_FAILED);
	    }
	  } else {		

#line 772 "dk4dbi.ctr"
	    back = 0;
	    dk4error_set_simple_error_code(erp, DK4_E_WRITE_FAILED);
	  }
	} else {		

#line 776 "dk4dbi.ctr"
	  back = 0;
	  dk4error_set_simple_error_code(erp, DK4_E_WRITE_FAILED);
	}
      }
    } while (NULL != rp);
    if (0 != fclose(fipo)) {	

#line 782 "dk4dbi.ctr"
      back = 0;
      dk4error_set_idetails(erp, DK4_E_CLOSE_FAILED, errno);
    }
  } else {			

#line 786 "dk4dbi.ctr"
  }
  if (0 != back) {
    db->uc = 0;
  }
  

#line 791 "dk4dbi.ctr"
  return back;
}



/**	Read in-memory database contents back from file.
	@param	db	Database to restore.
	@param	erp	Error report, may be NULL.
	@return	1 on success, 0 on error.

	Error codes:
	- DK4_E_SYNTAX<br>
	  if
	  - the database file name does not refer to a regular file
	  - or the file contents is not an in-memory database
	  - or key/value sizes in the file are in conflict with size restrictions,
	- DK4_E_SEC_CHECK<br>
	  with failed check id in iDetails1 if access is denied by additional
	  security checks,
	- DK4_E_MEMORY_ALLOCATION_FAILED<br>
	  with mem.elsize and mem.nelem
	  set if there is not enough memory available,
	- DK4_E_OPEN_READ_FAILED with errno value in iDetails1 if fopen()
	  or fread() failed.
*/
static
int
dk4dbi_mem_from_file(
  dk4_dbi_t	*db,
  dk4_er_t	*erp
)
{
  dk4_stat_t		 stb;			/* File stat buffer */
  FILE			*fipo	= NULL;		/* Input file */
  dk4_dbi_datum_t	*rp	= NULL;		/* Current record to process */
  unsigned char		 uc[8];			/* Buffer to read sizes */
  size_t		 nbr	= 0;		/* Number of bytes read */
  size_t		 ks	= 0;		/* Key size */
  size_t		 vs	= 0;		/* Value size */
  unsigned long		 ul1	= 0UL;		/* Key size */
  unsigned long		 ul2	= 0UL;		/* Value size */
  int			 back	= 0;		/* Result */
  int			 cc	= 1;		/* Flag: Can continue */
  

#line 835 "dk4dbi.ctr"
  fipo = dk4fopen(db->fn, dkT("rb"), 0, erp);
  if (NULL != fipo) {
    back = 1;
    do {
      nbr = fread(uc, 1, 8, fipo);
      if (8 == nbr) {		

#line 841 "dk4dbi.ctr"
        ul1 = ((((unsigned long)(uc[0])) << 24) & 0xFF000000UL)
	    | ((((unsigned long)(uc[1])) << 16) & 0x00FF0000UL)
	    | ((((unsigned long)(uc[2])) <<  8) & 0x0000FF00UL)
	    | ((((unsigned long)(uc[3]))      ) & 0x000000FFUL);
        ul2 = ((((unsigned long)(uc[4])) << 24) & 0xFF000000UL)
	    | ((((unsigned long)(uc[5])) << 16) & 0x00FF0000UL)
	    | ((((unsigned long)(uc[6])) <<  8) & 0x0000FF00UL)
	    | ((((unsigned long)(uc[7]))      ) & 0x000000FFUL);
	if ((dk4_um_t)(SIZE_MAX) >= (dk4_um_t)ul1) {
	  if ((dk4_um_t)(SIZE_MAX) >= (dk4_um_t)ul2) {
	    ks = (size_t)ul1; vs = (size_t)ul2;
	    if (
	      (((size_t)0UL == db->km) || (db->km >= ks))
	      && (((size_t)0UL == db->vm) || (db->vm >= vs))
	      && ((size_t)0UL < ks) && ((size_t)0UL < vs)
	    )
	    {
	      rp = dk4dbi_datum_new(ks, vs, erp);
	      if (NULL != rp) {	

#line 860 "dk4dbi.ctr"
	        nbr = fread(rp->kd, 1, rp->ks, fipo);
		if (nbr == rp->ks) {
		  nbr = fread(rp->vd, 1, rp->vs, fipo);
		  if (nbr == rp->vs) {
		    if (0 == dk4sto_add((db->dt).mem.s, rp, erp)) {
		      cc = 0;	

#line 866 "dk4dbi.ctr"
		      back = 0;
		      dk4dbi_datum_delete(rp, 0);
		    }
		  } else {	

#line 870 "dk4dbi.ctr"
		    cc = 0;
		    back = 0;
		    dk4error_set_simple_error_code(erp, DK4_E_SYNTAX);
		    dk4dbi_datum_delete(rp, 0);
		  }
		} else {	

#line 876 "dk4dbi.ctr"
		  cc = 0;
		  back = 0;
		  dk4error_set_simple_error_code(erp, DK4_E_SYNTAX);
		  dk4dbi_datum_delete(rp, 0);
		}
	      } else {		

#line 882 "dk4dbi.ctr"
	        cc = 0;
		back = 0;
	      }
	    }
	    else
	    {			

#line 888 "dk4dbi.ctr"
	      cc = 0;
	      back = 0;
	      dk4error_set_simple_error_code(erp, DK4_E_SYNTAX);
	    }
	  } else {		

#line 893 "dk4dbi.ctr"
	    cc = 0;
	    back = 0;
	    dk4error_set_simple_error_code(erp, DK4_E_SYNTAX);
	  }
	} else {		

#line 898 "dk4dbi.ctr"
	  cc = 0;
	  back = 0;
	  dk4error_set_simple_error_code(erp, DK4_E_SYNTAX);
	}
      } else {			

#line 903 "dk4dbi.ctr"
        cc = 0;
	if (0 != nbr) {
	  back = 0;
	  dk4error_set_simple_error_code(erp, DK4_E_SYNTAX);
	}
      }
    } while (0 != cc);
    (void)fclose(fipo);
  } else {			

#line 912 "dk4dbi.ctr"
    if (0 == dk4stat(&stb, db->fn, NULL)) {
      back = 1;			

#line 914 "dk4dbi.ctr"
    }
  }
  

#line 917 "dk4dbi.ctr"
  return back;
}



/**	Compare two entries.
	@param	l	Left record.
	@param	r	Right record.
	@param	cr	Comparison criteria, ignored.
	@return	1 if l>r, 0 if l==r, -1 if l<r.
*/
static
int
dk4dbi_datum_compare(const void *l, const void *r, int cr)
{
  dk4_dbi_datum_t	*pl;		/* Left pointer */
  dk4_dbi_datum_t	*pr;		/* Right pointer */
  int			 back	= 0;
  

#line 936 "dk4dbi.ctr"
  if (NULL != l) {
    if (NULL != r) {
      pl = (dk4_dbi_datum_t *)l;
      pr = (dk4_dbi_datum_t *)r;
      if (NULL != pl->kd) {
        if (NULL != pr->kd) {
	  if (pl->ks > pr->ks) {
	    back = 1;
	  } else {
	    if (pl->ks < pr->ks) {
	      back = -1;
	    } else {
	      if (0 < pl->ks) {
	        back = DK4_MEMCMP(pl->kd, pr->kd, pl->ks);
	        if (-1 > back) back = -1;
	        if ( 1 < back) back =  1;
	      }
	    }
	  }
	} else {
	  back = 1;
	}
      } else {
        if (NULL != pr->kd) { back = -1; }
      }
    } else {
      back = 1;
    }
  } else {
    if (NULL != r) { back = -1; }
  }
  

#line 968 "dk4dbi.ctr"
  return back;
}



/**	Delete base database structure, release resources.
	@param	ptr	Database structure to release.
*/
static
void
dk4dbi_delete_base(dk4_dbi_t *ptr)
{
  

#line 981 "dk4dbi.ctr"
  if (NULL != ptr) {
    dk4mem_release(ptr->fn);
    dk4mem_free(ptr);
  }
  

#line 986 "dk4dbi.ctr"
}



/**	Allocate memory for a database.
	@param	fn	File name.
	@param	tp	Backend type.
	@param	wa	Flag: Write access required.
	@param	erp	Error report, may be NULL.
	@return	Pointer to memory on success, NULL on error.

	Error codes:
	- DK4_E_MATH_OVERFLOW<br>
	  on numeric overflow when calculating size,
	- DK4_E_MEMORY_ALLOCATION_FAILED<br>
	  with mem.elsize and mem.nelem
	  set if there is not enough memory available.
*/
static
dk4_dbi_t *
dk4dbi_new_base(
  const dkChar	*fn,
  int		 tp,
  int		 wa,
  size_t	 km,
  size_t	 vm,
  dk4_er_t	*erp
)
{
  dk4_dbi_t	*back	= NULL;
  

#line 1017 "dk4dbi.ctr"
  back = dk4mem_new(dk4_dbi_t,1,erp);
  if (NULL != back) {
    back->tp = tp;
    back->wa = wa;
    back->op = 0;
    back->uc = 0;
    back->km = km;
    back->vm = vm;
    switch (tp) {
      case DK4_DB_BE_MEMORY : {
        (back->dt).mem.s = NULL;
	(back->dt).mem.i = NULL;
      } break;
      case DK4_DB_BE_BDB : {
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
        (back->dt).bdb.db = NULL;
#endif
      } break;
      case DK4_DB_BE_NDBM : {
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
        (back->dt).ndbm.dbm = NULL;
#endif
      } break;
    }
    back->fn = dk4str_dup(fn, erp);
    if (NULL == back->fn) {	

#line 1043 "dk4dbi.ctr"
      dk4mem_free(back);
      back = NULL;
    }
  }
  

#line 1048 "dk4dbi.ctr"
  return back;
}



/**	Close database, release resources.
	NOTE: Only release in-memory specific things, the
	dk4dbi_close() function calls dk4dbi_delete_base()
	to release the base components.
	@param	db	Database to close.
	@param	erp	Error report, may be NULL.
	@return	1 on success, 0 on error.

	Error codes:
	- DK4_E_SYNTAX<br>
	  if the database file name does not refer to a regular file,
	- DK4_E_SEC_CHECK<br>
	  with failed check id in iDetails1 if access is denied by additional
	  security checks,
	- DK4_E_OPEN_WRITE_FAILED<br>
	  with errno value in iDetails1 if fopen() or fwrite() failed,
	- DK4_E_CLOSE_FAILED<br>
	  with errno value in iDetails1 if fclose() failed,
	- DK4_E_WRITE_FAILD<br>
	  if fwrite() failed.
*/
static
int
dk4dbi_close_mem(
  dk4_dbi_t	*db,
  dk4_er_t	*erp
)
{
  dk4_dbi_datum_t	*rp;		/* Current record */
  int			 back	= 1;
  

#line 1084 "dk4dbi.ctr"
  if ((NULL != (db->dt).mem.s) && (NULL != (db->dt).mem.i)) {
    /*
	Write records to file if there are unsaved changes.
    */
    

#line 1089 "dk4dbi.ctr"
    if ((0 != db->wa) && (0 != db->uc)) {
      if (0 == dk4dbi_mem_to_file(db, erp)) {
        back = 0;
      }
    }
    /*
	Release memory used for the records.
    */
    dk4sto_it_reset((db->dt).mem.i);
    do {
      rp = (dk4_dbi_datum_t *)dk4sto_it_next((db->dt).mem.i);
      if (NULL != rp) {
        if (0 == dk4dbi_datum_delete(rp, db->op)) {
	  back = 0;
	}
      }
    } while (NULL != rp);
  }
  if (NULL != (db->dt).mem.i) {
    dk4sto_it_close((db->dt).mem.i);
  }
  if (NULL != (db->dt).mem.s) {
    dk4sto_close((db->dt).mem.s);
  } 

#line 1113 "dk4dbi.ctr"
  return back;
}



/**	Open in-memory database.
	@param	fn	File name.
	@param	wa	Flag: Write access required.
	@param	tr	Flag: Truncate existing database.
	@param	km	Maximum key size.
	@param	vm	Maximum value size.
	@param	erp	Error report, may be NULL.
	@return	Pointer to new database structure on success, NULL on error.

	Error codes:
	- DK4_E_MATH_OVERFLOW<br>
	  on numeric overflow when calculating size,
	- DK4_E_MEMORY_ALLOCATION_FAILED<br>
	  with mem.elsize and mem.nelem
	  set if there is not enough memory available,
	- DK4_E_SYNTAX<br>
	  if
	  - the database file name does not refer to a regular file
	  - or the file contents is not an in-memory database
	  - or key/value sizes in the file are in conflict with size restrictions,
	- DK4_E_SEC_CHECK<br>
	  with failed check id in iDetails1 if access is denied by additional
	  security checks,
	- DK4_E_OPEN_READ_FAILED with errno value in iDetails1 if fopen()
	  or fread() failed,
	- DK4_E_OPEN_WRITE_FAILED<br>
	  with errno value in iDetails1 if fopen() or fwrite() failed,
	- DK4_E_CLOSE_FAILED<br>
	  with errno value in iDetails1 if fclose() failed.
*/
static
dk4_dbi_t *
dk4dbi_open_mem(
  const dkChar	*fn,
  int		 wa,
  int		 tr,
  size_t	 km,
  size_t	 vm,
  dk4_er_t	*erp
)
{
  dk4_dbi_t	*back	= NULL;
  

#line 1161 "dk4dbi.ctr"
  if (0 != tr) {
    (void)dk4delete_file(fn, NULL);
  }
  back = dk4dbi_new_base(fn, DK4_DB_BE_MEMORY, wa, km, vm, erp);
  if (NULL != back) {
    (back->dt).mem.s = NULL;
    (back->dt).mem.i = NULL;
    (back->dt).mem.s = dk4sto_open(erp);
    if (NULL != (back->dt).mem.s) {
      dk4sto_set_comp((back->dt).mem.s, dk4dbi_datum_compare, 0);
      (back->dt).mem.i = dk4sto_it_open((back->dt).mem.s, erp);
    }
    if ((NULL != (back->dt).mem.s) && (NULL != (back->dt).mem.i)) {
      if (0 == tr) {	/* Do not truncate */
        if (0 == dk4dbi_mem_from_file(back, erp)) {
          (void)dk4dbi_close_mem(back, NULL);
	  back = NULL;
        }
      } else {		/* Truncate */
        if (0 == dk4dbi_mem_to_file(back, erp)) {
	  (void)dk4dbi_close_mem(back, NULL);
	  back = NULL;
	}
      }
    } else {
      (void)dk4dbi_close_mem(back, NULL);
      back = NULL;
    }
  }
  

#line 1191 "dk4dbi.ctr"
  return back;
}



#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)


/**	Close database, release resources.
	NOTE: Only release in-memory specific things, the
	dk4dbi_close() function calls dk4dbi_delete_base()
	to release the base components.
	@param	db	Database to close.
	@param	erp	Error report, may be NULL.
	@return	1 on success, 0 on error.

	Error codes:
	- DK4_E_SYNTAX<br>
	  if the database file name does not refer to a regular file,
	- DK4_E_SEC_CHECK<br>
	  with failed check id in iDetails1 if access is denied by additional
	  security checks,
	- DK4_E_OPEN_WRITE_FAILED<br>
	  with errno value in iDetails1 if fopen() or fwrite() failed,
	- DK4_E_CLOSE_FAILED<br>
	  with errno value in iDetails1 if fclose() failed,
	- DK4_E_WRITE_FAILD<br>
	  if fwrite() failed.
*/
static
int
dk4dbi_close_bdb(
  dk4_dbi_t	*db,
  dk4_er_t	*erp
)
{
  int			 back	= 1;
  if (NULL != (db->dt).bdb.db) {
    if ((0 != db->wa) && (0 != db->uc)) {
      if (0 != ((db->dt).bdb.db)->sync((db->dt).bdb.db, 0)) {
        back = 0;
      }
    }
    ((db->dt).bdb.db)->close((db->dt).bdb.db, 0);
    (db->dt).bdb.db = NULL;
  }
  return back;
}



/**	Open BDB database.
	@param	fn	File name.
	@param	wa	Flag: Write access required.
	@param	tr	Flag: Truncate existing database.
	@param	km	Maximum key size.
	@param	vm	Maximum value size.
	@param	erp	Error report, may be NULL.
	@return	Pointer to new database structure on success, NULL on error.

	Error codes:
	- DK4_E_MATH_OVERFLOW<br>
	  on numeric overflow when calculating size,
	- DK4_E_MEMORY_ALLOCATION_FAILED<br>
	  with mem.elsize and mem.nelem
	  set if there is not enough memory available,
	- DK4_E_OPEN_WRITE_FAILED<br>
	  if the database can not be opened for writing,
	- DK4_E_OPEN_READ_FAILED<br>
	  if the database can not be opened or reading,
	- DK4_E_NOT_SUPPORTED<br>
	  when attempting to provide a wchar_t file name on
	  non-Windows systems.
*/
static
dk4_dbi_t *
dk4dbi_open_bdb(
  const dkChar	*fn,
  int		 wa,
  int		 tr,
  size_t	 km,
  size_t	 vm,
  dk4_er_t	*erp
)
{
#if DK4_CHAR_SIZE > 1
#if DK4_ON_WINDOWS
  dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
  return NULL;
#else
  dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
  return NULL;
#endif
#else
  dk4_dbi_t	*back	= NULL;
  int		 res	= 0;
  int		 flags	= 0;
  

#line 1289 "dk4dbi.ctr"
  back = dk4dbi_new_base(fn, DK4_DB_BE_BDB, wa, km, vm, erp);
  if (NULL != back) {
    if (0 != tr) {
      (void)dk4delete_file(fn, NULL);
    }
    res = db_create(&((back->dt).bdb.db), NULL, 0);
    if (0 == res) {
      ((back->dt).bdb.db)->set_errfile((back->dt).bdb.db, NULL);
      flags = ((0 != wa)
      	       ? ((0 != tr) ? ((DB_CREATE) || (DB_TRUNCATE)) : (DB_CREATE))
	       : (DB_RDONLY));
      res = ((back->dt).bdb.db)->open(
        (back->dt).bdb.db, NULL, back->fn, NULL, DB_BTREE, flags, 0600
      );
      if (0 != res) {
        ((back->dt).bdb.db)->close((back->dt).bdb.db, 0);
	(back->dt).bdb.db = NULL;
	dk4dbi_delete_base(back);
	back = NULL;
	dk4error_set_simple_error_code(
	  erp,
	  ((0 != wa) ? (DK4_E_OPEN_WRITE_FAILED) : (DK4_E_OPEN_READ_FAILED))
	);
      }
    } else {
      (back->dt).bdb.db = NULL;
      dk4dbi_delete_base(back);
      back = NULL;
      dk4error_set_simple_error_code(
        erp,
	((0 != wa) ? (DK4_E_OPEN_WRITE_FAILED) : (DK4_E_OPEN_READ_FAILED))
      );
    }
  }
  

#line 1324 "dk4dbi.ctr"
  return back;
#endif
}

#endif
/* if DK4_HAVE_DB_H */



#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)



/**	Close database, release resources.
	NOTE: Only release in-memory specific things, the
	dk4dbi_close() function calls dk4dbi_delete_base()
	to release the base components.
	@param	db	Database to close.
	@param	erp	Error report, may be NULL.
	@return	1 on success, 0 on error.

	Error codes:
	- DK4_E_SYNTAX<br>
	  if the database file name does not refer to a regular file,
	- DK4_E_SEC_CHECK<br>
	  with failed check id in iDetails1 if access is denied by additional
	  security checks,
	- DK4_E_OPEN_WRITE_FAILED<br>
	  with errno value in iDetails1 if fopen() or fwrite() failed,
	- DK4_E_CLOSE_FAILED<br>
	  with errno value in iDetails1 if fclose() failed,
	- DK4_E_WRITE_FAILD<br>
	  if fwrite() failed.
*/
static
int
dk4dbi_close_ndbm(
  dk4_dbi_t	*db,
  dk4_er_t	*erp
)
{
  int			 back	= 1;
  if (NULL != (db->dt).ndbm.dbm) {
    dbm_close((db->dt).ndbm.dbm);
    (db->dt).ndbm.dbm = NULL;
  }
  return back;
}



static
void
dk4dbi_truncate_ndbm(const dkChar *fn)
{
  dkChar	 buf[DK4_MAX_PATH];
  const size_t	 szbuf = DK4_SIZEOF(buf,dkChar);

  if (0 != dk4str_cpy_s(buf, szbuf, fn, NULL)) {
    if (0 != dk4str_cat_s(buf, szbuf, dk4dbi_ndbm_suffixes[0], NULL)) {
      (void)dk4delete_file(buf, NULL);
    }
  }
  if (0 != dk4str_cpy_s(buf, szbuf, fn, NULL)) {
    if (0 != dk4str_cat_s(buf, szbuf, dk4dbi_ndbm_suffixes[1], NULL)) {
      (void)dk4delete_file(buf, NULL);
    }
  }
}



/**	Open NDBM database.
	@param	fn	File name.
	@param	wa	Flag: Write access required.
	@param	tr	Flag: Truncate existing database.
	@param	km	Maximum key size.
	@param	vm	Maximum value size.
	@param	erp	Error report, may be NULL.
	@return	Pointer to new database structure on success, NULL on error.
*/
static
dk4_dbi_t *
dk4dbi_open_ndbm(
  const dkChar	*fn,
  int		 wa,
  int		 tr,
  size_t	 km,
  size_t	 vm,
  dk4_er_t	*erp
)
{
  dk4_dbi_t	*back	= NULL;
  int		 flags	= 0;	/* Flags for opening the DB */

  

#line 1420 "dk4dbi.ctr"

  if (0 != tr) {
    dk4dbi_truncate_ndbm(fn);
  }
  back = dk4dbi_new_base(fn, DK4_DB_BE_NDBM, wa, km, vm, erp);
  if (NULL != back) {
    flags = O_CREAT
    	    | ((0 != wa)
    	       ? ((0 != tr) ? (O_RDWR | O_TRUNC) : (O_RDWR))
	       : (O_RDONLY));
    (back->dt).ndbm.dbm = dbm_open(fn, flags, 0600);
    if (NULL == (back->dt).ndbm.dbm) {
      dk4dbi_delete_base(back);
      back = NULL;
      dk4error_set_simple_error_code(
        erp,
	((0 != wa) ? (DK4_E_OPEN_WRITE_FAILED) : (DK4_E_OPEN_READ_FAILED))
      );
    }
  }
  

#line 1441 "dk4dbi.ctr"
  return back;
}

#endif
/* if DK4_HAVE_NDBM_H */



dk4_dbi_t *
dk4dbi_open_with_type(
  const dkChar	*fn,
  int		 tp,
  int		 wa,
  int		 tr,
  size_t	 km,
  size_t	 vm,
  dk4_er_t	*erp
)
{
  dk4_dbi_t	*back	= NULL;
  

#line 1462 "dk4dbi.ctr"
  if (NULL != fn) {
    switch (tp) {
      case DK4_DB_BE_MEMORY : {
        back = dk4dbi_open_mem(fn, wa, tr, km, vm, erp);
      } break;
      case DK4_DB_BE_BDB : {
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
	back = dk4dbi_open_bdb(fn, wa, tr, km, vm, erp);
#else
	dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
      } break;
      case DK4_DB_BE_NDBM : {
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
	back = dk4dbi_open_ndbm(fn, wa, tr, km, vm, erp);
#else
	dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
      } break;
      default : {
        dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
      } break;
    }
  } else {
    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
  }
  

#line 1489 "dk4dbi.ctr"
  return back;
}



dk4_dbi_t *
dk4dbi_open(
  const dkChar	*fn,
  int		 wa,
  int		 tr,
  size_t	 km,
  size_t	 vm,
  dk4_er_t	*erp
)
{
  dk4_dbi_t	*back	= NULL;
  dkChar	*mycopy	= NULL;			/* Private copy of fn */
  dkChar	*colon	= NULL;			/* First colon in mycopy */
  const dkChar	*fnp	= NULL;			/* File name pointer */
  int		 tp	= DK4_DB_BE_MEMORY ;	/* Database type */

  

#line 1511 "dk4dbi.ctr"
  if (NULL != fn) {
    mycopy = dk4str_dup(fn, erp);
    if (NULL != mycopy) {
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
      tp = DK4_DB_BE_NDBM;
#endif
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
      tp = DK4_DB_BE_BDB;
#endif
      fnp = fn;
      colon = dk4str_chr(mycopy, dkT(':'));
      if (NULL != colon) {
        if (dkT(':') == colon[1]) {
	  fnp = &(colon[2]);
	  *colon = dkT('\0');
	  tp = dk4str_array_index(dk4dbi_type_names, mycopy, 0);
	  if (DK4_DB_BE_UNKNOWN == tp) {
	    dk4error_set_simple_error_code(erp, DK4_E_SYNTAX);
	  }
	}
      }
      if (DK4_DB_BE_UNKNOWN != tp) {
        back = dk4dbi_open_with_type(fnp, tp, wa, tr, km, vm, erp);
      }
      dk4mem_free(mycopy);
    }
  } else {
    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
  }
  

#line 1541 "dk4dbi.ctr"
  return back;
}



const dkChar *
dk4dbi_filename_part(const dkChar *filename)
{
  const dkChar	*back	= NULL;
  if (NULL != filename) {
    back = dk4str_chr(filename, dkT(':'));
    if (NULL != back) {
      back++;
      if (dkT(':') == *back) {
        back++;
      } else {
        back = filename;
      }
    } else {
      back = filename;
    }
  }
  return back;
}



int
dk4dbi_close(
  dk4_dbi_t	*db,
  dk4_er_t	*erp
)
{
  int		 back	= 0;
  

#line 1576 "dk4dbi.ctr"
  if (NULL != db) {
    switch (db->tp) {
      case DK4_DB_BE_MEMORY : {
        back = dk4dbi_close_mem(db, erp);
      } break;
      case DK4_DB_BE_BDB : {
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
        back = dk4dbi_close_bdb(db, erp);
#else
	dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
      } break;
      case DK4_DB_BE_NDBM : {
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
	back = dk4dbi_close_ndbm(db, erp);
#else
	dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
      } break;
    }
    dk4dbi_delete_base(db);
  } else {
    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
  }
  

#line 1601 "dk4dbi.ctr"
  return back;
}



int
dk4dbi_set_option(
  dk4_dbi_t	*db,
  int		 opt,
  int		 val
)
{
  int		 back	= 0;
  if (NULL != db) {
    switch (opt) {
      case DK4_DB_OPT_RESET_KEY :
      case DK4_DB_OPT_RESET_VALUE :
      {
        if (0 != val) {
	  db->op |= opt;
	} else {
	  db->op &= (~(opt));
	}
	back = 1;
      } break;
    }
  }
  return back;
}



int
dk4dbi_delete(
  dk4_dbi_t	*db,
  const void	*kp,
  size_t	 ks,
  dk4_er_t	*erp
)
{
  int			 back	= 0;
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
  DBT			 k;		/* Key */
#endif
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
  datum			 datk;		/* Key */
#endif
  dk4_dbi_datum_t	 dat;		/* Key for comparison */
  dk4_dbi_datum_t	*rp;		/* Result found in db */

  

#line 1652 "dk4dbi.ctr"
  if ((NULL != db) && (NULL != kp) && ((size_t)0UL < ks)) {
    if ((0 != db->wa) && (((size_t)0UL == db->km) || (db->km >= ks))) {
      switch (db->tp) {
        case DK4_DB_BE_MEMORY : {
	  db->uc = 1;
          dat.kd = (void *)kp; dat.ks = ks;
	  rp = (dk4_dbi_datum_t *)dk4sto_it_find_like(
	    (db->dt).mem.i, &dat, 0
	  );
	  if (NULL != rp) {
	    back = dk4sto_remove((db->dt).mem.s, rp, erp);
	    if (0 != back) {
	      if (0 == dk4dbi_datum_delete(rp, db->op)) {
	        back = 0;
	      }
	    } else {
	      dk4error_set_simple_error_code(erp, DK4_E_NOT_FOUND);
	    }
	  } else {
	    dk4error_set_simple_error_code(erp, DK4_E_NOT_FOUND);
	  }
        } break;
        case DK4_DB_BE_BDB : {
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
          if (NULL != (db->dt).bdb.db) {
	    db->uc = 1;
	    DK4_MEMRES(&k, sizeof(DBT));
	    k.data = (void *)kp; k.size = ks;
	    if (0 == ((db->dt).bdb.db)->del((db->dt).bdb.db, NULL, &k, 0)) {
	      back = 1;
	    } else {
	      dk4error_set_simple_error_code(erp, DK4_E_WRITE_FAILED);
	    }
	  } else {
	    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
	  }
#else
	  dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
        } break;
        case DK4_DB_BE_NDBM : {
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
          if (NULL != (db->dt).ndbm.dbm) {
	    db->uc = 1;
	    DK4_MEMRES(&datk, sizeof(datum));
	    datk.dptr = (char *)kp; datk.dsize = ks;
	    if (0 == dbm_delete((db->dt).ndbm.dbm, datk)) {
	      back = 1;
	    } else {
	      dk4error_set_simple_error_code(erp, DK4_E_WRITE_FAILED);
	    }
	  } else {
	    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
	  }
#else
	  dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
        } break;
      }
    } else {
      dk4error_set_simple_error_code(erp, DK4_E_SYNTAX);
    }
  } else {
    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
  }
  

#line 1718 "dk4dbi.ctr"
  return back;
}



int
dk4dbi_set(
  dk4_dbi_t	*db,
  const void	*kp,
  size_t	 ks,
  const void	*vp,
  size_t	 vs,
  dk4_er_t	*erp
)
{
  dk4_dbi_datum_t	 dat;		/* Key for comparison */
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
  DBT			 k;		/* Key */
  DBT			 v;		/* Value */
#endif
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
  datum			 datk;		/* Key */
  datum			 datv;		/* Value */
#endif
  dk4_dbi_datum_t	*rp	= NULL;	/* Result record */
  char			*nb	= NULL;	/* New value buffer */
  int			 back	= 0;

  

#line 1747 "dk4dbi.ctr"
  if ((NULL != db) && (NULL != kp) && ((size_t)0UL < ks)) {	

#line 1748 "dk4dbi.ctr"
    if ((NULL != vp) && ((size_t)0UL < vs)) {			

#line 1749 "dk4dbi.ctr"
      if(
        (((size_t)0UL == db->km) || (db->km >= ks))
	&& (((size_t)0UL == db->vm) || (db->vm >= vs))
	&& (0 != db->wa)
      )
      {						

#line 1755 "dk4dbi.ctr"
        switch (db->tp) {
          case DK4_DB_BE_MEMORY : {		

#line 1757 "dk4dbi.ctr"
	    db->uc = 1;
            dat.kd = (void *)kp; dat.ks = ks;
	    rp = (dk4_dbi_datum_t *)dk4sto_it_find_like(
	      (db->dt).mem.i, &dat, 0
	    );
	    if (NULL != rp) {
	      nb = dk4mem_new(char,vs,erp);
	      if (NULL != nb) {
	        back = 1;
	        if (NULL != rp->vd) {
		  if (0 != (DK4_DB_OPT_RESET_VALUE & (db->op))) {
		    if ((size_t)0UL < rp->vs) {
		      back = dk4mem_reset_secure(rp->vd, rp->vs, NULL);
		    }
		  }
		  dk4mem_free(rp->vd);
		}
		rp->vd = nb;
		DK4_MEMCPY(rp->vd,vp,vs);
		rp->vs = vs;
	      }
	    } else {
	      rp = dk4dbi_datum_new(ks, vs, erp);
	      if (NULL != rp) {
		DK4_MEMCPY(rp->kd,kp,ks);
		DK4_MEMCPY(rp->vd,vp,vs);
		if (0 != dk4sto_add((db->dt).mem.s, rp, erp)) {
		  back = 1;
		} else {
		  dk4dbi_datum_delete(rp, db->op);
		}
	      }
	    }
          } break;
          case DK4_DB_BE_BDB : {		

#line 1792 "dk4dbi.ctr"
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
	    

#line 1794 "dk4dbi.ctr"
	    if (NULL != (db->dt).bdb.db) {	

#line 1795 "dk4dbi.ctr"
	      db->uc = 1;
              DK4_MEMRES(&k, sizeof(DBT));
	      DK4_MEMRES(&v, sizeof(DBT));
	      k.data = (void *)kp; v.data = (void *)vp;
	      k.size = ks; v.size = vs;
	      

#line 1801 "dk4dbi.ctr"
	      ((db->dt).bdb.db)->del((db->dt).bdb.db, NULL, &k, 0);
	      DK4_MEMRES(&k, sizeof(DBT));
	      k.data = (void *)kp; k.size = ks;
	      

#line 1805 "dk4dbi.ctr"
	      if (0 == ((db->dt).bdb.db)->put((db->dt).bdb.db,NULL,&k,&v,0)) {
	        back = 1;			

#line 1807 "dk4dbi.ctr"
	      } else {				

#line 1808 "dk4dbi.ctr"
	        dk4error_set_simple_error_code(erp, DK4_E_WRITE_FAILED);
	      }
	    } else {				

#line 1811 "dk4dbi.ctr"
	      dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
	    }
#else
	    dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
          } break;
          case DK4_DB_BE_NDBM : {		

#line 1818 "dk4dbi.ctr"
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
            if (NULL != (db->dt).ndbm.dbm) {
	      db->uc = 1;
	      DK4_MEMRES(&datk, sizeof(datum));
	      DK4_MEMRES(&datv, sizeof(datum));
	      datk.dptr = (char *)kp; datk.dsize = ks;
	      datv.dptr = (char *)vp; datv.dsize = vs;
	      if (0 == dbm_store((db->dt).ndbm.dbm, datk, datv, DBM_INSERT)) {
	        back = 1;
	      } else {
	        DK4_MEMRES(&datk, sizeof(datum));
	        DK4_MEMRES(&datv, sizeof(datum));
	        datk.dptr = (char *)kp; datk.dsize = ks;
	        datv.dptr = (char *)vp; datv.dsize = vs;
		if (0 == dbm_store((db->dt).ndbm.dbm,datk,datv,DBM_REPLACE)) {
		  back = 1;
		} else {
		  dk4error_set_simple_error_code(erp, DK4_E_WRITE_FAILED);
		}
	      }
	    } else {
	      dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
	    }
#else
	    dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
          } break;
        }
      }
      else
      {						

#line 1849 "dk4dbi.ctr"
        dk4error_set_simple_error_code(erp, DK4_E_SYNTAX);
      }
    } else {					

#line 1852 "dk4dbi.ctr"
      back = dk4dbi_delete(db, kp, ks, erp);
    }
  } else {					

#line 1855 "dk4dbi.ctr"
    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
  }
  

#line 1858 "dk4dbi.ctr"
  return back;
}



int
dk4dbi_sync(
  dk4_dbi_t	*db,
  dk4_er_t	*erp
)
{
  int		 back	= 0;
  

#line 1871 "dk4dbi.ctr"
  if (NULL != db) {
    switch (db->tp) {
      case DK4_DB_BE_MEMORY : {
        if ((0 != db->wa) && (0 != db->uc)) {
	  back = dk4dbi_mem_to_file(db, erp);
	} else {
	  back = 1;
	}
      } break;
      case DK4_DB_BE_BDB : {
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
        if (NULL != (db->dt).bdb.db) {
	  if ((0 != db->wa) && (0 != db->uc)) {
	    if (0 == ((db->dt).bdb.db)->sync((db->dt).bdb.db, 0)) {
	      back = 1;
	      db->uc = 0;
	    } else {
	      dk4error_set_simple_error_code(erp, DK4_E_WRITE_FAILED);
	    }
	  } else {
	    back = 1;
	  }
	} else {
	  dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
	}
#else
	dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
      } break;
      case DK4_DB_BE_NDBM : {
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
        if (NULL != (db->dt).ndbm.dbm) {
	  back = 1;
	} else {
	  dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
	}
#else
	dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
      } break;
    }
  } else {
    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
  }
  

#line 1916 "dk4dbi.ctr"
  return back;
}



int
dk4dbi_get(
  dk4_dbi_t	*db,
  const void	*kp,
  size_t	 ks,
  void		*vp,
  size_t	*vs,
  dk4_er_t	*erp
)
{
  dk4_dbi_datum_t	 dat;		/* Key for comparison */
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
  DBT			 k;		/* Key */
  DBT			 v;		/* Value */
#endif
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
  datum			 datk;		/* Key */
  datum			 datv;		/* Value */
#endif
  dk4_dbi_datum_t	*rp;		/* Search result pointer */
  int			 back	= 0;

  

#line 1944 "dk4dbi.ctr"
  if (
    (NULL != db) && (NULL != kp) && ((size_t)0 < ks)
    && (NULL != vp) && (NULL != vs)
  )
  {
    if ((size_t)0UL < *vs) {
      if (((size_t)0UL == db->km) || (db->km >= ks)) {
        switch (db->tp) {
          case DK4_DB_BE_MEMORY : {		

#line 1953 "dk4dbi.ctr"
            dat.kd = (void *)kp; dat.ks = ks;
	    rp = (dk4_dbi_datum_t *)dk4sto_it_find_like(
	      (db->dt).mem.i, &dat, 0
	    );
	    if (NULL != rp) {
	      if ((NULL != rp->vd) && ((size_t)0UL < rp->vs)) {
	        if (*vs >= rp->vs) {
		  DK4_MEMCPY(vp,rp->vd,rp->vs);
		  *vs = rp->vs;
		  back = 1;
		} else {
		  dk4error_set_simple_error_code(erp, DK4_E_BUFFER_TOO_SMALL);
		}
	      } else {
	        dk4error_set_simple_error_code(erp, DK4_E_NOT_FOUND);
	      }
	    } else {
	      dk4error_set_simple_error_code(erp, DK4_E_NOT_FOUND);
	    }
          } break;
          case DK4_DB_BE_BDB : {		

#line 1974 "dk4dbi.ctr"
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
	    

#line 1976 "dk4dbi.ctr"
            if (NULL != (db->dt).bdb.db) {	

#line 1977 "dk4dbi.ctr"
              DK4_MEMRES(&k, sizeof(DBT));
	      DK4_MEMRES(&v, sizeof(DBT));
	      k.data = (void *)kp; k.size = ks;
	      v.data = (void *)vp; v.ulen = *vs; v.flags = DB_DBT_USERMEM;
	      if (0 == ((db->dt).bdb.db)->get((db->dt).bdb.db,NULL,&k,&v,0)) {
		*vs = v.size;			

#line 1983 "dk4dbi.ctr"
		back = 1;
	      } else {				

#line 1985 "dk4dbi.ctr"
	        dk4error_set_simple_error_code(erp, DK4_E_NOT_FOUND);
	      }
	    } else {				

#line 1988 "dk4dbi.ctr"
	      dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
	    }
#else
	    

#line 1992 "dk4dbi.ctr"
	    dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
          } break;
          case DK4_DB_BE_NDBM : {		

#line 1996 "dk4dbi.ctr"
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
            if (NULL != (db->dt).ndbm.dbm) {
	      DK4_MEMRES(&datk, sizeof(datum));
	      DK4_MEMRES(&datv, sizeof(datum));
	      datk.dptr = (char *)kp; datk.dsize = ks;
	      datv = dbm_fetch((db->dt).ndbm.dbm, datk);
	      if ((NULL != datv.dptr) && (0 < datv.dsize)) {
	        if (*vs >= datv.dsize) {
		  DK4_MEMCPY(vp,datv.dptr,datv.dsize);
		  *vs = datv.dsize;
		  back = 1;
		} else {
		  dk4error_set_simple_error_code(erp, DK4_E_BUFFER_TOO_SMALL);
		}
	      } else {
	        dk4error_set_simple_error_code(erp, DK4_E_NOT_FOUND);
	      }
	    } else {
	      dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
	    }
#else
	    dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
#endif
          } break;
        }
      } else {					

#line 2022 "dk4dbi.ctr"
        dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
      }
    } else {					

#line 2025 "dk4dbi.ctr"
      dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
    }
  } else {					

#line 2028 "dk4dbi.ctr"
    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
  }
  

#line 2031 "dk4dbi.ctr"
  return back;
}



int
dk4dbi_traverse(
  dk4_dbi_t		*db,
  void			*obj,
  dk4dbi_traverse_fct_t	*fct
)
{
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
  DBT			 dbtk;		/* Key */
  DBT			 dbtv;		/* Value */
  DBC			*cp	= NULL;	/* Cursor for traversal */
#endif
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
  datum			 datk;		/* Key */
  datum			 datv;		/* Value */
#endif
  dk4_dbi_datum_t	*dddt	= NULL;	/* Pointer for traversal */
  int			 res	=  0;	/* Operation result */
  int			 first	=  1;	/* Flag: Retrieving first record */
  int			 back	= -1;

  

#line 2058 "dk4dbi.ctr"
  if ((NULL != db) && (NULL != fct)) {
    switch (db->tp) {
      case DK4_DB_BE_MEMORY : {
        back = 1;
        dk4sto_it_reset((db->dt).mem.i);
	do {
	  dddt = dk4sto_it_next((db->dt).mem.i);
	  if (NULL != dddt) {
	    res = (*fct)(obj, dddt->kd, dddt->ks, dddt->vd, dddt->vs);
	    if (res < back) { back = res; }
	  }
	} while((NULL != dddt) && (-1 < back));
      } break;
      case DK4_DB_BE_BDB : {
#if DK4_HAVE_DB_H		&& (DK4_CHAR_SIZE == 1)
	res = ((db->dt).bdb.db)->cursor((db->dt).bdb.db, NULL, &cp, 0);
	if (0 == res) {
	  if (NULL != cp) {
	    back = 1;
	    DK4_MEMRES(&dbtk, sizeof(DBT));
	    DK4_MEMRES(&dbtv, sizeof(DBT));
	    do {
#if DK4_HAVE_DB_CURSOR_C_GET
	      res = cp->c_get(
	        cp, &dbtk, &dbtv, ((0 != first) ? (DB_FIRST) : (DB_NEXT))
	      );
#else
	      res = cp->get(
	        cp, &dbtk, &dbtv, ((0 != first) ? (DB_FIRST) : (DB_NEXT))
	      );
#endif
	      first = 0;
	      if (0 == res) {
	        res = (*fct)(obj, dbtk.data, dbtk.size, dbtv.data, dbtv.size);
		if (res < back) { back = res; }
	      } else {
	        res = -1;	/* Failed to obtain a record, stop */
	      }
	    } while((-1 < res) && (-1 < back));
	    cp->c_close(cp);
	  } else {			

#line 2099 "dk4dbi.ctr"
	  }
	} else {			

#line 2101 "dk4dbi.ctr"
	}
#endif
      } break;
      case DK4_DB_BE_NDBM : {
#if DK4_HAVE_NDBM_H		&& (DK4_CHAR_SIZE == 1)
	back = 1;
	do {
	  if (0 != first) {
	    datk = dbm_firstkey((db->dt).ndbm.dbm);
	    first = 0;
	  } else {
	    datk = dbm_nextkey((db->dt).ndbm.dbm);
	  }
	  if ((NULL != datk.dptr) && (0 < datk.dsize)) {
	    datv = dbm_fetch((db->dt).ndbm.dbm, datk);
	    if ((NULL != datv.dptr) && (0 < datv.dsize)) {
	      res = (*fct)(obj, datk.dptr, datk.dsize, datv.dptr, datv.dsize);
	      if (res < back) { back = res; }
	    } else {
	      res = -1;
	    }
	  } else {
	    res = -1;
	  }
	} while((-1 < res) && (-1 < back));
#endif
      } break;
    }
  } 

#line 2130 "dk4dbi.ctr"
  return back;
}




#if !DK4_ON_WINDOWS
#if DK4_CHAR_SIZE == 1
#if DK4_HAVE_CHOWN && DK4_HAVE_CHMOD

/**	Change ownership and mode for a file.
	@param	fn	File name.
	@param	user	New owner.
	@param	group	New owner group.
	@param	mode	New file permissions.
	@param	erp	Error report, may be NULL.
	@return	1 on success, 0 on error.

	Error codes:
	- DK4_E_SYSTEM<br>
	  with errno value in iDetails1 if chown
	  or chmod failed.
*/
static
int
dk4dbi_change_file_owner_and_mode(
  const dkChar	*fn,
  uid_t		 user,
  gid_t		 group,
  mode_t	 mode,
  dk4_er_t	*erp
)
{
  int		 back	= 0;

  

#line 2166 "dk4dbi.ctr"
  errno = 0;
  if (0 == chown(fn, user, group)) {
    errno = 0;
    if (0 == chmod(fn, mode)) {
      back = 1;
    } else {
      dk4error_set_idetails(erp, DK4_E_SYSTEM, errno);
    }
  } else {
    dk4error_set_idetails(erp, DK4_E_SYSTEM, errno);
  } 

#line 2177 "dk4dbi.ctr"
  return back;
}


int
dk4dbi_change_owner_and_mode(
  dk4_dbi_t	*db,
  uid_t		 user,
  gid_t		 group,
  mode_t	 mode,
  dk4_er_t	*erp
)
{
  dkChar	 buf[DK4_MAX_PATH];		/* File names construction */
  const size_t	 szbuf = DK4_SIZEOF(buf,dkChar);	/* Buffer size */
  int		 back	= 0;

  

#line 2195 "dk4dbi.ctr"
  if (NULL != db) {
    switch (db->tp) {
      case DK4_DB_BE_MEMORY :
      case DK4_DB_BE_BDB :
      {
        back = dk4dbi_change_file_owner_and_mode(
	  db->fn, user, group, mode, erp
	);
      } break;
      case DK4_DB_BE_NDBM : {
        if (0 != dk4str_cpy_s(buf, szbuf, db->fn, erp)) {
	  if (0 != dk4str_cat_s(buf, szbuf, dk4dbi_ndbm_suffixes[0], erp)) {
	    back = dk4dbi_change_file_owner_and_mode(buf,user,group,mode,erp);
	    (void)dk4str_cpy_s(buf, szbuf, db->fn, erp);
	    if (0 != dk4str_cat_s(buf, szbuf, dk4dbi_ndbm_suffixes[1], erp)) {
	      if (0 ==
	          dk4dbi_change_file_owner_and_mode(buf,user,group,mode,erp)
	      )
	      {
	        back = 0;
	      }
	    }
	  }
	}
      } break;
      default : {
        dk4error_set_simple_error_code(erp, DK4_E_NOT_SUPPORTED);
      } break;
    }
  } else {
    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
  } 

#line 2227 "dk4dbi.ctr"
  return back;
}

#endif
/* if DK4_HAVE_CHOWN && DK4_HAVE_CHMOD */
#endif
/* if DK4_CHAR_SIZE == 1 */
#endif
/* if !DK4_ON_WINDOWS */



size_t
dk4dbi_get_key_max(
  const dk4_dbi_t	*db,
  dk4_er_t		*erp
)
{
  size_t	back = 0;
  

#line 2247 "dk4dbi.ctr"
  if (NULL != db) {
    back = db->km;
  } else {
    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
  } 

#line 2252 "dk4dbi.ctr"
  return back;
}



size_t
dk4dbi_get_val_max(
  const dk4_dbi_t	*db,
  dk4_er_t		*erp
)
{
  size_t	 back = 0;
  

#line 2265 "dk4dbi.ctr"
  if (NULL != db) {
    back = db->vm;
  } else {
    dk4error_set_simple_error_code(erp, DK4_E_INVALID_ARGUMENTS);
  } 

#line 2270 "dk4dbi.ctr"
  return back;
}



int
dk4dbi_get_type(const dk4_dbi_t *db)
{
  int		 back	= DK4_DB_BE_UNKNOWN;
  if (NULL != db) {
    back = db->tp;
  }
  return back;
}