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
|
/*
** 2020-02-08 modified by Keith Medcalf who also disclaims all copyright
** on the modifications and hereby places this code in the public domain
**
** This file contains the implementation of an SQLite virtual table for
** reading VSV (Variably Separated Values), which are like CSV files,
** but subtly different. VSV supports a number of extensions to the
** CSV format as well as more processing options.
**
**
** Usage:
**
** create virtual table temp.vsv using vsv(...);
** select * from vsv;
**
** The parameters to the vsv module (the vsv(...) part) are as follows:
**
** filename=STRING the filename, passed to the Operating System
** data=STRING alternative data
** schema=STRING Alternate Schema to use
** columns=N columns parsed from the VSV file
** header=BOOL whether or not a header row is present
** skip=N number of leading data rows to skip
** rsep=STRING record separator
** fsep=STRING field separator
** validatetext=BOOL validate UTF-8 encoding of text fields
** affinity=AFFINITY affinity to apply to each returned value
** nulls=BOOL empty fields are returned as NULL
**
**
** Defaults:
**
** filename / data nothing. You must provide one or the other
** it is an error to provide both or neither
** schema nothing. If not provided then one will be
** generated for you from the header, or if no
** header is available then autogenerated using
** field names manufactured as cX where X is the
** column number
** columns nothing. If not specified then the number of
** columns is determined by counting the fields
** in the first record of the VSV file (which
** will be the header row if header is specified),
** the number of columns is not parsed from the
** schema even if one is provided
** header=no no header row in the VSV file
** skip=0 do not skip any data rows in the VSV file
** fsep=',' default field separator is a comma
** rsep='\n' default record separator is a newline
** validatetext=no do not validate text field encoding
** affinity=none do not apply affinity to each returned value
** nulls=off empty fields returned as zero-length
**
**
** Parameter types:
**
** STRING means a quoted string
** N means a whole number not containing a sign
** BOOL means something that evaluates as true or false
** it is case insensitive
** yes, no, true, false, 1, 0
** AFFINITY means an SQLite3 type specification
** it is case insensitive
** none, blob, text, integer, real, numeric
**
** STRING means a quoted string. The quote character may be either
** a single quote or a double quote. Two quote characters in a row
** will be replaced with a single quote character. STRINGS do not
** need to be quoted if it is obvious where they begin and end
** (that is, they do not contain a comma). Leading and trailing
** spaces will be trimmed from unquoted strings.
**
** filename =./this/filename.here, ...
** filename =./this/filename.here , ...
** filename = ./this/filename.here, ...
** filename = ./this/filename.here , ...
** filename = './this/filename.here', ...
** filename = "./this/filename.here", ...
**
** are all equivalent.
**
** BOOL defaults to true so the following specifications are all the
** same:
**
** header = true
** header = yes
** header = 1
** header
**
**
** Specific Parameters:
**
** The platform/compiler/OS fopen call is responsible for interpreting
** the filename. It may contain anything recognized by the OS.
**
** The separator string containing exactly one character, or a valid
** escape sequence. Recognized escape sequences are:
**
** \t horizontal tab, ascii character 9 (0x09)
** \n linefeed, ascii character 10 (0x0a)
** \v vertical tab, ascii character 11 (0x0b)
** \f form feed, ascii character 12 (0x0c)
** \xhh specific byte where hh is hexadecimal
**
** The validatetext setting will cause the validity of the field
** encoding (not its contents) to be verified. It effects how
** fields that are supposed to contain text will be returned to
** the SQLite3 library in order to prevent invalid utf8 data from
** being stored or processed as if it were valid utf8 text.
**
** The nulls option will cause fields that do not contain anything
** to return NULL rather than an empty result. Two separators
** side-by-each with no intervening characters at all will be
** returned as NULL if nulls is true and if nulls is false or
** the contents are explicity empty ("") then a 0 length blob
** (if affinity=blob) or 0 length text string.
**
** For the affinity setting, the following processing is applied to
** each value returned by the VSV virtual table:
**
** none no affinity is applied, all fields will be
** returned as text just like in the original
** csv module, embedded nulls will terminate
** the text. if validatetext is in effect then
** an error will be thrown if the field does
** not contain validly encoded text or contains
** embedded nulls
**
** blob all fields will be returned as blobs
** validatetext has no effect
**
** text all fields will be returned as text just
** like in the original csv module, embedded
** nulls will terminate the text.
** if validatetext is in effect then a blob
** will be returned if the field does not
** contain validly encoded text or the field
** contains embedded nulls
**
** integer if the field data looks like an integer,
** (regex "^ *(\+|-)?\d+ *$"),
** then an integer will be returned as
** provided by the compiler and platform
** runtime strtoll function
** otherwise the field will be processed as
** text as defined above
**
** real if the field data looks like a number,
** (regex "^ *(\+|-)?(\d+\.?\d*|\d*\.?\d+)([eE](\+|-)?\d+)? *$")
** then a double will be returned as
** provided by the compiler and platform
** runtime strtold function otherwise the
** field will be processed as text as
** defined above
**
** numeric if the field looks like an integer
** (see integer above) that integer will be
** returned
** if the field looks like a number
** (see real above) then the number will
** returned as an integer if it has no
** fractional part and
** (a) your platform/compiler supports
** long double and the number will fit in
** a 64-bit integer; or,
** (b) your platform/compiler does not
** support long double (treats it as a double)
** then a 64-bit integer will only be returned
** if the value would fit in a 6-byte varint,
** otherwise a double will be returned
**
** The nulls option will cause fields that do not contain anything
** to return NULL rather than an empty result. Two separators
** side-by-each with no intervening characters at all will be
** returned as NULL if nulls is true and if nulls is false or
** the contents are explicity empty ("") then a 0 length blob
** (if affinity=blob) or 0 length text string will be returned.
**
*/
/*
** 2016-05-28
**
** The author disclaims copyright to this source code. In place of
** a legal notice, here is a blessing:
**
** May you do good and not evil.
** May you find forgiveness for yourself and forgive others.
** May you share freely, never taking more than you give.
**
******************************************************************************
**
** This file contains the implementation of an SQLite virtual table for
** reading CSV files.
**
** Usage:
**
** .load ./csv
** CREATE VIRTUAL TABLE temp.csv USING csv(filename=FILENAME);
** SELECT * FROM csv;
**
** The columns are named "c1", "c2", "c3", ... by default. Or the
** application can define its own CREATE TABLE statement using the
** schema= parameter, like this:
**
** CREATE VIRTUAL TABLE temp.csv2 USING csv(
** filename = "../http.log",
** schema = "CREATE TABLE x(date,ipaddr,url,referrer,userAgent)"
** );
**
** Instead of specifying a file, the text of the CSV can be loaded using
** the data= parameter.
**
** If the columns=N parameter is supplied, then the CSV file is assumed to have
** N columns. If both the columns= and schema= parameters are omitted, then
** the number and names of the columns is determined by the first line of
** the CSV input.
**
*/
#include <sqlite3ext.h>
SQLITE_EXTENSION_INIT1
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include <stdarg.h>
#include <ctype.h>
#include <stdio.h>
#include <math.h>
#ifdef SQLITE_HAVE_ZLIB
#include <zlib.h>
#define fopen gzopen
#define fclose gzclose
#define fread gzfread
#define fseek gzseek
#define ftell gztell
#endif
#ifndef SQLITE_OMIT_VIRTUALTABLE
/*
** A macro to hint to the compiler that a function should not be
** inlined.
*/
#if defined(__GNUC__)
#define VSV_NOINLINE __attribute__((noinline))
#elif defined(_MSC_VER) && _MSC_VER>=1310
#define VSV_NOINLINE __declspec(noinline)
#else
#define VSV_NOINLINE
#endif
/*
** Max size of the error message in a VsvReader
*/
#define VSV_MXERR 200
/*
** Size of the VsvReader input buffer
*/
#define VSV_INBUFSZ 1024
/*
** A context object used when read a VSV file.
*/
typedef struct VsvReader VsvReader;
struct VsvReader
{
#ifdef SQLITE_HAVE_ZLIB
gzFile in; /* Read the VSV text from this compressed input stream */
#else
FILE *in; /* Read the VSV text from this input stream */
#endif
char *z; /* Accumulated text for a field */
int n; /* Number of bytes in z */
int nAlloc; /* Space allocated for z[] */
int nLine; /* Current line number */
int bNotFirst; /* True if prior text has been seen */
int cTerm; /* Character that terminated the most recent field */
int fsep; /* Field Seperator Character */
int rsep; /* Record Seperator Character */
int affinity; /* Perform Affinity Conversions */
int notNull; /* Have we seen data for field */
size_t iIn; /* Next unread character in the input buffer */
size_t nIn; /* Number of characters in the input buffer */
char *zIn; /* The input buffer */
char zErr[VSV_MXERR]; /* Error message */
};
/*
** Initialize a VsvReader object
*/
static void vsv_reader_init(VsvReader *p)
{
p->in = 0;
p->z = 0;
p->n = 0;
p->nAlloc = 0;
p->nLine = 0;
p->bNotFirst = 0;
p->nIn = 0;
p->zIn = 0;
p->notNull = 0;
p->zErr[0] = 0;
}
/*
** Close and reset a VsvReader object
*/
static void vsv_reader_reset(VsvReader *p)
{
if (p->in)
{
fclose(p->in);
sqlite3_free(p->zIn);
}
sqlite3_free(p->z);
vsv_reader_init(p);
}
/*
** Report an error on a VsvReader
*/
static void vsv_errmsg(VsvReader *p, const char *zFormat, ...)
{
va_list ap;
va_start(ap, zFormat);
sqlite3_vsnprintf(VSV_MXERR, p->zErr, zFormat, ap);
va_end(ap);
}
/*
** Open the file associated with a VsvReader
** Return the number of errors.
*/
static int vsv_reader_open(
VsvReader *p, /* The reader to open */
const char *zFilename, /* Read from this filename */
const char *zData /* ... or use this data */
)
{
if (zFilename)
{
p->zIn = sqlite3_malloc(VSV_INBUFSZ);
if (p->zIn==0)
{
vsv_errmsg(p, "out of memory");
return 1;
}
p->in = fopen(zFilename, "rb");
if (p->in==0)
{
sqlite3_free(p->zIn);
vsv_reader_reset(p);
vsv_errmsg(p, "cannot open '%s' for reading", zFilename);
return 1;
}
}
else
{
assert( p->in==0 );
p->zIn = (char*)zData;
p->nIn = strlen(zData);
}
return 0;
}
/*
** The input buffer has overflowed. Refill the input buffer, then
** return the next character
*/
static VSV_NOINLINE int vsv_getc_refill(VsvReader *p)
{
size_t got;
assert( p->iIn>=p->nIn ); /* Only called on an empty input buffer */
assert( p->in!=0 ); /* Only called if reading from a file */
got = fread(p->zIn, 1, VSV_INBUFSZ, p->in);
if (got==0)
{
return EOF;
}
p->nIn = got;
p->iIn = 1;
return p->zIn[0];
}
/*
** Return the next character of input. Return EOF at end of input.
*/
static int vsv_getc(VsvReader *p)
{
if (p->iIn >= p->nIn)
{
if (p->in!=0)
{
return vsv_getc_refill(p);
}
return EOF;
}
return((unsigned char*)p->zIn)[p->iIn++];
}
/*
** Increase the size of p->z and append character c to the end.
** Return 0 on success and non-zero if there is an OOM error
*/
static VSV_NOINLINE int vsv_resize_and_append(VsvReader *p, char c)
{
char *zNew;
int nNew = p->nAlloc*2 + 100;
zNew = sqlite3_realloc64(p->z, nNew);
if (zNew)
{
p->z = zNew;
p->nAlloc = nNew;
p->z[p->n++] = c;
return 0;
}
else
{
vsv_errmsg(p, "out of memory");
return 1;
}
}
/*
** Append a single character to the VsvReader.z[] array.
** Return 0 on success and non-zero if there is an OOM error
*/
static int vsv_append(VsvReader *p, char c)
{
if (p->n>=p->nAlloc-1)
{
return vsv_resize_and_append(p, c);
}
p->z[p->n++] = c;
return 0;
}
/*
** Read a single field of VSV text. Compatible with rfc4180 and extended
** with the option of having a separator other than ",".
**
** + Input comes from p->in.
** + Store results in p->z of length p->n. Space to hold p->z comes
** from sqlite3_malloc64().
** + Keep track of the line number in p->nLine.
** + Store the character that terminates the field in p->cTerm. Store
** EOF on end-of-file.
**
** Return 0 at EOF or on OOM. On EOF, the p->cTerm character will have
** been set to EOF.
*/
static char *vsv_read_one_field(VsvReader *p)
{
int c;
p->notNull = 0;
p->n = 0;
c = vsv_getc(p);
if (c==EOF)
{
p->cTerm = EOF;
return 0;
}
if (c=='"')
{
int pc, ppc;
int startLine = p->nLine;
p->notNull = 1;
pc = ppc = 0;
while (1)
{
c = vsv_getc(p);
if (c=='\n')
{
p->nLine++;
}
if (c=='"' && pc=='"')
{
pc = ppc;
ppc = 0;
continue;
}
if ( (c==p->fsep && pc=='"')
|| (c==p->rsep && pc=='"')
|| (p->rsep=='\n' && c=='\n' && pc=='\r' && ppc=='"')
|| (c==EOF && pc=='"')
)
{
do
{
p->n--;
}
while (p->z[p->n]!='"');
p->cTerm = (char)c;
break;
}
if (pc=='"' && p->rsep=='\n' && c!='\r')
{
vsv_errmsg(p, "line %d: unescaped %c character", p->nLine, '"');
break;
}
if (c==EOF)
{
vsv_errmsg(p, "line %d: unterminated %c-quoted field\n", startLine, '"');
p->cTerm = (char)c;
break;
}
if (vsv_append(p, (char)c))
{
return 0;
}
ppc = pc;
pc = c;
}
}
else
{
/*
** If this is the first field being parsed and it begins with the
** UTF-8 BOM (0xEF BB BF) then skip the BOM
*/
if ((c&0xff)==0xef && p->bNotFirst==0)
{
vsv_append(p, (char)c);
c = vsv_getc(p);
if ((c&0xff)==0xbb)
{
vsv_append(p, (char)c);
c = vsv_getc(p);
if ((c&0xff)==0xbf)
{
p->bNotFirst = 1;
p->n = 0;
return vsv_read_one_field(p);
}
}
}
while (c!=EOF && c!=p->rsep && c!=p->fsep)
{
if (c=='\n')
p->nLine++;
if (!p->notNull)
p->notNull = 1;
if (vsv_append(p, (char)c))
return 0;
c = vsv_getc(p);
}
if (c=='\n')
{
p->nLine++;
}
if (p->n>0 && (p->rsep=='\n' || p->fsep=='\n') && p->z[p->n-1]=='\r')
{
p->n--;
if (p->n==0)
{
p->notNull = 0;
}
}
p->cTerm = (char)c;
}
assert( p->z==0 || p->n<p->nAlloc );
if (p->z)
{
p->z[p->n] = 0;
}
p->bNotFirst = 1;
return p->z;
}
/*
** Forward references to the various virtual table methods implemented
** in this file.
*/
static int vsvtabCreate(sqlite3*, void*, int, const char*const*, sqlite3_vtab**,char**);
static int vsvtabConnect(sqlite3*, void*, int, const char*const*, sqlite3_vtab**,char**);
static int vsvtabBestIndex(sqlite3_vtab*,sqlite3_index_info*);
static int vsvtabDisconnect(sqlite3_vtab*);
static int vsvtabOpen(sqlite3_vtab*, sqlite3_vtab_cursor**);
static int vsvtabClose(sqlite3_vtab_cursor*);
static int vsvtabFilter(sqlite3_vtab_cursor*, int idxNum, const char *idxStr, int argc, sqlite3_value **argv);
static int vsvtabNext(sqlite3_vtab_cursor*);
static int vsvtabEof(sqlite3_vtab_cursor*);
static int vsvtabColumn(sqlite3_vtab_cursor*,sqlite3_context*,int);
static int vsvtabRowid(sqlite3_vtab_cursor*,sqlite3_int64*);
/*
** An instance of the VSV virtual table
*/
typedef struct VsvTable
{
sqlite3_vtab base; /* Base class. Must be first */
char *zFilename; /* Name of the VSV file */
char *zData; /* Raw VSV data in lieu of zFilename */
long iStart; /* Offset to start of data in zFilename */
int nCol; /* Number of columns in the VSV file */
int fsep; /* The field seperator for this VSV file */
int rsep; /* The record seperator for this VSV file */
int affinity; /* Perform affinity conversions */
int nulls; /* Process NULLs */
int validateUTF8; /* Validate UTF8 */
unsigned int tstFlags; /* Bit values used for testing */
} VsvTable;
/*
** Allowed values for tstFlags
*/
#define VSVTEST_FIDX 0x0001 /* Pretend that constrained searchs cost less*/
/*
** A cursor for the VSV virtual table
*/
typedef struct VsvCursor
{
sqlite3_vtab_cursor base; /* Base class. Must be first */
VsvReader rdr; /* The VsvReader object */
char **azVal; /* Value of the current row */
int *aLen; /* Allocation Length of each entry */
int *dLen; /* Data Length of each entry */
sqlite3_int64 iRowid; /* The current rowid. Negative for EOF */
} VsvCursor;
/*
** Transfer error message text from a reader into a VsvTable
*/
static void vsv_xfer_error(VsvTable *pTab, VsvReader *pRdr)
{
sqlite3_free(pTab->base.zErrMsg);
pTab->base.zErrMsg = sqlite3_mprintf("%s", pRdr->zErr);
}
/*
** This method is the destructor for a VsvTable object.
*/
static int vsvtabDisconnect(sqlite3_vtab *pVtab)
{
VsvTable *p = (VsvTable*)pVtab;
sqlite3_free(p->zFilename);
sqlite3_free(p->zData);
sqlite3_free(p);
return SQLITE_OK;
}
/*
** Skip leading whitespace. Return a pointer to the first non-whitespace
** character, or to the zero terminator if the string has only whitespace
*/
static const char *vsv_skip_whitespace(const char *z)
{
while (isspace((unsigned char)z[0]))
{
z++;
}
return z;
}
/*
** Remove trailing whitespace from the end of string z[]
*/
static void vsv_trim_whitespace(char *z)
{
size_t n = strlen(z);
while (n>0 && isspace((unsigned char)z[n]))
{
n--;
}
z[n] = 0;
}
/*
** Dequote the string
*/
static void vsv_dequote(char *z)
{
int j;
char cQuote = z[0];
size_t i, n;
if (cQuote!='\'' && cQuote!='"')
{
return;
}
n = strlen(z);
if (n<2 || z[n-1]!=z[0])
{
return;
}
for (i=1, j=0; i<n-1; i++)
{
if (z[i]==cQuote && z[i+1]==cQuote)
{
i++;
}
z[j++] = z[i];
}
z[j] = 0;
}
/*
** Check to see if the string is of the form: "TAG = VALUE" with optional
** whitespace before and around tokens. If it is, return a pointer to the
** first character of VALUE. If it is not, return NULL.
*/
static const char *vsv_parameter(const char *zTag, int nTag, const char *z)
{
z = vsv_skip_whitespace(z);
if (strncmp(zTag, z, nTag)!=0)
{
return 0;
}
z = vsv_skip_whitespace(z+nTag);
if (z[0]!='=')
{
return 0;
}
return vsv_skip_whitespace(z+1);
}
/*
** Decode a parameter that requires a dequoted string.
**
** Return 1 if the parameter is seen, or 0 if not. 1 is returned
** even if there is an error. If an error occurs, then an error message
** is left in p->zErr. If there are no errors, p->zErr[0]==0.
*/
static int vsv_string_parameter(
VsvReader *p, /* Leave the error message here, if there is one */
const char *zParam, /* Parameter we are checking for */
const char *zArg, /* Raw text of the virtual table argment */
char **pzVal /* Write the dequoted string value here */
)
{
const char *zValue;
zValue = vsv_parameter(zParam,(int)strlen(zParam),zArg);
if (zValue==0)
{
return 0;
}
p->zErr[0] = 0;
if (*pzVal)
{
vsv_errmsg(p, "more than one '%s' parameter", zParam);
return 1;
}
*pzVal = sqlite3_mprintf("%s", zValue);
if (*pzVal==0)
{
vsv_errmsg(p, "out of memory");
return 1;
}
vsv_trim_whitespace(*pzVal);
vsv_dequote(*pzVal);
return 1;
}
/*
** Return 0 if the argument is false and 1 if it is true. Return -1 if
** we cannot really tell.
*/
static int vsv_boolean(const char *z)
{
if (sqlite3_stricmp("yes",z)==0
|| sqlite3_stricmp("on",z)==0
|| sqlite3_stricmp("true",z)==0
|| (z[0]=='1' && z[1]==0)
)
{
return 1;
}
if (sqlite3_stricmp("no",z)==0
|| sqlite3_stricmp("off",z)==0
|| sqlite3_stricmp("false",z)==0
|| (z[0]=='0' && z[1]==0)
)
{
return 0;
}
return -1;
}
/*
** Check to see if the string is of the form: "TAG = BOOLEAN" or just "TAG".
** If it is, set *pValue to be the value of the boolean ("true" if there is
** not "= BOOLEAN" component) and return non-zero. If the input string
** does not begin with TAG, return zero.
*/
static int vsv_boolean_parameter(
const char *zTag, /* Tag we are looking for */
int nTag, /* Size of the tag in bytes */
const char *z, /* Input parameter */
int *pValue /* Write boolean value here */
)
{
int b;
z = vsv_skip_whitespace(z);
if (strncmp(zTag, z, nTag)!=0)
{
return 0;
}
z = vsv_skip_whitespace(z + nTag);
if (z[0]==0)
{
*pValue = 1;
return 1;
}
if (z[0]!='=')
{
return 0;
}
z = vsv_skip_whitespace(z+1);
b = vsv_boolean(z);
if (b>=0)
{
*pValue = b;
return 1;
}
return 0;
}
/*
** Convert the seperator character specification into the character code
** Return 1 signifies error, 0 for no error
**
** Recognized inputs:
** any single character
** escaped characters \f \n \t \v
** escaped hex byte \x1e \x1f etc (RS and US respectively)
**
*/
static int vsv_parse_sep_char(char *in, int dflt, int *out)
{
if (!in)
{
*out = dflt;
return 0;
}
switch (strlen(in))
{
case 0:
{
*out = dflt;
return 0;
}
case 1:
{
*out = in[0];
return 0;
}
case 2:
{
if (in[0] != '\\')
{
return 1;
}
switch (in[1])
{
case 'f':
{
*out = 12;
return 0;
}
case 'n':
{
*out = 10;
return 0;
}
case 't':
{
*out = 9;
return 0;
}
case 'v':
{
*out = 11;
return 0;
}
}
return 1;
}
case 4:
{
if (sqlite3_strnicmp(in, "\\x", 2) != 0)
{
return 1;
}
if (!isxdigit(in[2]) || !isxdigit(in[3]))
{
return 1;
}
*out = ((in[2] > '9' ? (in[2] & 0x0f) + 9 : in[2] & 0x0f) << 4) +
(in[3] > '9' ? (in[3] & 0x0f) + 9 : in[3] & 0x0f);
return 0;
}
}
return 0;
}
/*
** Parameters:
** filename=FILENAME Name of file containing VSV content
** data=TEXT Direct VSV content.
** schema=SCHEMA Alternative VSV schema.
** header=YES|NO First row of VSV defines the names of
** columns if "yes". Default "no".
** columns=N Assume the VSV file contains N columns.
** fsep=FSET Field Seperator
** rsep=RSEP Record Seperator
** skip=N skip N records of file (default 0)
** affinity=AFF affinity to apply to ALL columns
** default: none
** none text integer real numeric
**
** Only available if compiled with SQLITE_TEST:
**
** testflags=N Bitmask of test flags. Optional
**
** If schema= is omitted, then the columns are named "c0", "c1", "c2",
** and so forth. If columns=N is omitted, then the file is opened and
** the number of columns in the first row is counted to determine the
** column count. If header=YES, then the first row is skipped.
*/
static int vsvtabConnect(
sqlite3 *db,
void *pAux,
int argc, const char *const*argv,
sqlite3_vtab **ppVtab,
char **pzErr
)
{
VsvTable *pNew = 0; /* The VsvTable object to construct */
int affinity = -1; /* Affinity coercion */
int bHeader = -1; /* header= flags. -1 means not seen yet */
int validateUTF8 = -1; /* validateUTF8 flag */
int rc = SQLITE_OK; /* Result code from this routine */
int i, j; /* Loop counters */
#ifdef SQLITE_TEST
int tstFlags = 0; /* Value for testflags=N parameter */
#endif
int b; /* Value of a boolean parameter */
int nCol = -99; /* Value of the columns= parameter */
int nSkip = -1; /* Value of the skip= parameter */
int bNulls = -1; /* Process Nulls flag */
VsvReader sRdr; /* A VSV file reader used to store an error
** message and/or to count the number of columns */
static const char *azParam[] = {
"filename", "data", "schema", "fsep", "rsep"
};
char *azPValue[5]; /* Parameter values */
#define VSV_FILENAME (azPValue[0])
#define VSV_DATA (azPValue[1])
#define VSV_SCHEMA (azPValue[2])
#define VSV_FSEP (azPValue[3])
#define VSV_RSEP (azPValue[4])
assert( sizeof(azPValue)==sizeof(azParam) );
memset(&sRdr, 0, sizeof(sRdr));
memset(azPValue, 0, sizeof(azPValue));
for (i=3; i<argc; i++)
{
const char *z = argv[i];
const char *zValue;
for (j=0; j<sizeof(azParam)/sizeof(azParam[0]); j++)
{
if (vsv_string_parameter(&sRdr, azParam[j], z, &azPValue[j]))
{
break;
}
}
if (j<sizeof(azParam)/sizeof(azParam[0]))
{
if (sRdr.zErr[0])
{
goto vsvtab_connect_error;
}
}
else if (vsv_boolean_parameter("header",6,z,&b))
{
if (bHeader>=0)
{
vsv_errmsg(&sRdr, "more than one 'header' parameter");
goto vsvtab_connect_error;
}
bHeader = b;
}
else if (vsv_boolean_parameter("validatetext",12,z,&b))
{
if (validateUTF8>=0)
{
vsv_errmsg(&sRdr, "more than one 'validatetext' parameter");
goto vsvtab_connect_error;
}
validateUTF8 = b;
}
else if (vsv_boolean_parameter("nulls",5,z,&b))
{
if (bNulls>=0)
{
vsv_errmsg(&sRdr, "more than one 'nulls' parameter");
goto vsvtab_connect_error;
}
bNulls = b;
}
else
#ifdef SQLITE_TEST
if ((zValue = vsv_parameter("testflags",9,z))!=0)
{
tstFlags = (unsigned int)atoi(zValue);
}
else
#endif
if ((zValue = vsv_parameter("columns",7,z))!=0)
{
if (nCol>0)
{
vsv_errmsg(&sRdr, "more than one 'columns' parameter");
goto vsvtab_connect_error;
}
nCol = atoi(zValue);
if (nCol<=0)
{
vsv_errmsg(&sRdr, "column= value must be positive");
goto vsvtab_connect_error;
}
}
else if ((zValue = vsv_parameter("skip",4,z))!=0)
{
if (nSkip>0)
{
vsv_errmsg(&sRdr, "more than one 'skip' parameter");
goto vsvtab_connect_error;
}
nSkip = atoi(zValue);
if (nSkip<=0)
{
vsv_errmsg(&sRdr, "skip= value must be positive");
goto vsvtab_connect_error;
}
}
else if ((zValue = vsv_parameter("affinity",8,z))!=0)
{
if (affinity>-1)
{
vsv_errmsg(&sRdr, "more than one 'affinity' parameter");
goto vsvtab_connect_error;
}
if (sqlite3_strnicmp(zValue,"none",4)==0) affinity=0;
else if (sqlite3_strnicmp(zValue,"blob",4)==0) affinity=1;
else if (sqlite3_strnicmp(zValue,"text",4)==0) affinity=2;
else if (sqlite3_strnicmp(zValue,"integer",7)==0) affinity=3;
else if (sqlite3_strnicmp(zValue,"real",4)==0) affinity=4;
else if (sqlite3_strnicmp(zValue,"numeric",7)==0) affinity=5;
else
{
vsv_errmsg(&sRdr, "unknown affinity: '%s'", zValue);
goto vsvtab_connect_error;
}
}
else
{
vsv_errmsg(&sRdr, "bad parameter: '%s'", z);
goto vsvtab_connect_error;
}
}
if (affinity==-1)
{
affinity = 0;
}
if (bNulls==-1)
{
bNulls = 0;
}
if (validateUTF8==-1)
{
validateUTF8 = 0;
}
if ((VSV_FILENAME==0)==(VSV_DATA==0))
{
vsv_errmsg(&sRdr, "must specify either filename= or data= but not both");
goto vsvtab_connect_error;
}
if (vsv_parse_sep_char(VSV_FSEP, ',', &(sRdr.fsep)))
{
vsv_errmsg(&sRdr, "cannot parse fsep: '%s'", VSV_FSEP);
goto vsvtab_connect_error;
}
if (vsv_parse_sep_char(VSV_RSEP, '\n', &(sRdr.rsep)))
{
vsv_errmsg(&sRdr, "cannot parse rsep: '%s'", VSV_RSEP);
goto vsvtab_connect_error;
}
if ((nCol <= 0 || bHeader == 1) && vsv_reader_open(&sRdr, VSV_FILENAME, VSV_DATA))
{
goto vsvtab_connect_error;
}
pNew = sqlite3_malloc( sizeof(*pNew) );
*ppVtab = (sqlite3_vtab*)pNew;
if (pNew==0)
{
goto vsvtab_connect_oom;
}
memset(pNew, 0, sizeof(*pNew));
pNew->fsep = sRdr.fsep;
pNew->rsep = sRdr.rsep;
pNew->affinity = affinity;
pNew->validateUTF8 = validateUTF8;
pNew->nulls = bNulls;
if (VSV_SCHEMA==0)
{
sqlite3_str *pStr = sqlite3_str_new(0);
char *zSep = "";
int iCol = 0;
sqlite3_str_appendf(pStr, "CREATE TABLE x(");
if (nCol<0 && bHeader<1)
{
nCol = 0;
do
{
vsv_read_one_field(&sRdr);
nCol++;
}
while (sRdr.cTerm==sRdr.fsep);
}
if (nCol>0 && bHeader<1)
{
for (iCol=0; iCol<nCol; iCol++)
{
sqlite3_str_appendf(pStr, "%sc%d", zSep, iCol);
zSep = ",";
}
}
else
{
do
{
char *z = vsv_read_one_field(&sRdr);
if ((nCol>0 && iCol<nCol) || (nCol<0 && bHeader))
{
sqlite3_str_appendf(pStr,"%s\"%w\"", zSep, z);
zSep = ",";
iCol++;
}
}
while (sRdr.cTerm==sRdr.fsep);
if (nCol<0)
{
nCol = iCol;
}
else
{
while (iCol<nCol)
{
sqlite3_str_appendf(pStr,"%sc%d", zSep, ++iCol);
zSep = ",";
}
}
}
sqlite3_str_appendf(pStr, ")");
VSV_SCHEMA = sqlite3_str_finish(pStr);
if (VSV_SCHEMA==0)
{
goto vsvtab_connect_oom;
}
}
else if (nCol<0)
{
nCol = 0;
do
{
vsv_read_one_field(&sRdr);
nCol++;
}
while (sRdr.cTerm==sRdr.fsep);
}
else if (nSkip<1 && bHeader==1)
{
do
{
vsv_read_one_field(&sRdr);
}
while (sRdr.cTerm==sRdr.fsep);
}
pNew->nCol = nCol;
if (nSkip>0)
{
int tskip = nSkip + (bHeader==1);
vsv_reader_reset(&sRdr);
if (vsv_reader_open(&sRdr, VSV_FILENAME, VSV_DATA))
{
goto vsvtab_connect_error;
}
do
{
do
{
if (!vsv_read_one_field(&sRdr))
goto vsvtab_connect_error;
}
while (sRdr.cTerm==sRdr.fsep);
tskip--;
}
while (tskip>0 && sRdr.cTerm==sRdr.rsep);
if (tskip>0)
{
vsv_errmsg(&sRdr, "premature end of file during skip");
goto vsvtab_connect_error;
}
}
pNew->zFilename = VSV_FILENAME; VSV_FILENAME = 0;
pNew->zData = VSV_DATA; VSV_DATA = 0;
#ifdef SQLITE_TEST
pNew->tstFlags = tstFlags;
#endif
if (bHeader!=1 && nSkip<1)
{
pNew->iStart = 0;
}
else if (pNew->zData)
{
pNew->iStart = (int)sRdr.iIn;
}
else
{
pNew->iStart = (int)(ftell(sRdr.in) - sRdr.nIn + sRdr.iIn);
}
vsv_reader_reset(&sRdr);
rc = sqlite3_declare_vtab(db, VSV_SCHEMA);
if (rc)
{
vsv_errmsg(&sRdr, "bad schema: '%s' - %s", VSV_SCHEMA, sqlite3_errmsg(db));
goto vsvtab_connect_error;
}
for (i=0; i<sizeof(azPValue)/sizeof(azPValue[0]); i++)
{
sqlite3_free(azPValue[i]);
}
/*
** Rationale for DIRECTONLY:
** An attacker who controls a database schema could use this vtab
** to exfiltrate sensitive data from other files in the filesystem.
** And, recommended practice is to put all VSV virtual tables in the
** TEMP namespace, so they should still be usable from within TEMP
** views, so there shouldn't be a serious loss of functionality by
** prohibiting the use of this vtab from persistent triggers and views.
*/
sqlite3_vtab_config(db, SQLITE_VTAB_DIRECTONLY);
return SQLITE_OK;
vsvtab_connect_oom:
rc = SQLITE_NOMEM;
vsv_errmsg(&sRdr, "out of memory");
vsvtab_connect_error:
if (pNew)
{
vsvtabDisconnect(&pNew->base);
}
for (i=0; i<sizeof(azPValue)/sizeof(azPValue[0]); i++)
{
sqlite3_free(azPValue[i]);
}
if (sRdr.zErr[0])
{
sqlite3_free(*pzErr);
*pzErr = sqlite3_mprintf("%s", sRdr.zErr);
}
vsv_reader_reset(&sRdr);
if (rc==SQLITE_OK)
{
rc = SQLITE_ERROR;
}
return rc;
}
/*
** Reset the current row content held by a VsvCursor.
*/
static void vsvtabCursorRowReset(VsvCursor *pCur)
{
VsvTable *pTab = (VsvTable*)pCur->base.pVtab;
int i;
for (i=0; i<pTab->nCol; i++)
{
sqlite3_free(pCur->azVal[i]);
pCur->azVal[i] = 0;
pCur->aLen[i] = 0;
pCur->dLen[i] = -1;
}
}
/*
** The xConnect and xCreate methods do the same thing, but they must be
** different so that the virtual table is not an eponymous virtual table.
*/
static int vsvtabCreate(
sqlite3 *db,
void *pAux,
int argc, const char *const*argv,
sqlite3_vtab **ppVtab,
char **pzErr
)
{
return vsvtabConnect(db, pAux, argc, argv, ppVtab, pzErr);
}
/*
** Destructor for a VsvCursor.
*/
static int vsvtabClose(sqlite3_vtab_cursor *cur)
{
VsvCursor *pCur = (VsvCursor*)cur;
vsvtabCursorRowReset(pCur);
vsv_reader_reset(&pCur->rdr);
sqlite3_free(cur);
return SQLITE_OK;
}
/*
** Constructor for a new VsvTable cursor object.
*/
static int vsvtabOpen(sqlite3_vtab *p, sqlite3_vtab_cursor **ppCursor)
{
VsvTable *pTab = (VsvTable*)p;
VsvCursor *pCur;
size_t nByte;
nByte = sizeof(*pCur) + (sizeof(char*)+(2*sizeof(int)))*pTab->nCol;
pCur = sqlite3_malloc64( nByte );
if (pCur==0)
return SQLITE_NOMEM;
memset(pCur, 0, nByte);
pCur->azVal = (char**)&pCur[1];
pCur->aLen = (int*)&pCur->azVal[pTab->nCol];
pCur->dLen = (int*)&pCur->aLen[pTab->nCol];
pCur->rdr.fsep = pTab->fsep;
pCur->rdr.rsep = pTab->rsep;
pCur->rdr.affinity = pTab->affinity;
*ppCursor = &pCur->base;
if (vsv_reader_open(&pCur->rdr, pTab->zFilename, pTab->zData))
{
vsv_xfer_error(pTab, &pCur->rdr);
return SQLITE_ERROR;
}
return SQLITE_OK;
}
/*
** Advance a VsvCursor to its next row of input.
** Set the EOF marker if we reach the end of input.
*/
static int vsvtabNext(sqlite3_vtab_cursor *cur)
{
VsvCursor *pCur = (VsvCursor*)cur;
VsvTable *pTab = (VsvTable*)cur->pVtab;
int i = 0;
char *z;
do
{
z = vsv_read_one_field(&pCur->rdr);
if (z==0)
{
if (i<pTab->nCol)
pCur->dLen[i] = -1;
}
else if (i<pTab->nCol)
{
if (pCur->aLen[i] < pCur->rdr.n+1)
{
char *zNew = sqlite3_realloc64(pCur->azVal[i], pCur->rdr.n+1);
if (zNew==0)
{
z = 0;
vsv_errmsg(&pCur->rdr, "out of memory");
vsv_xfer_error(pTab, &pCur->rdr);
break;
}
pCur->azVal[i] = zNew;
pCur->aLen[i] = pCur->rdr.n+1;
}
if (!pCur->rdr.notNull && pTab->nulls)
{
pCur->dLen[i] = -1;
}
else
{
pCur->dLen[i] = pCur->rdr.n;
memcpy(pCur->azVal[i], z, pCur->rdr.n+1);
}
i++;
}
}
while (pCur->rdr.cTerm==pCur->rdr.fsep);
if ((pCur->rdr.cTerm==EOF && i==0))
{
pCur->iRowid = -1;
}
else
{
pCur->iRowid++;
while (i<pTab->nCol)
{
pCur->dLen[i] = -1;
i++;
}
}
return SQLITE_OK;
}
/*
**
** Determine affinity of field
**
** ignore leading space
** then may have + or -
** then may have digits or . (if . found then type=real)
** then may have digits (if another . then not number)
** then may have e (if found then type=real)
** then may have + or -
** then may have digits
** then may have trailing space
*/
static int vsv_isValidNumber(char *arg)
{
char *start;
char *stop;
int isValid = 0;
int hasDigit = 0;
start = arg;
stop = arg + strlen(arg) - 1;
while (start <= stop && *start==' ') // strip spaces from begining
{
start++;
}
while (start <= stop && *stop==' ') // strip spaces from end
{
stop--;
}
if (start > stop)
{
goto vsv_end_isValidNumber;
}
if (start <= stop && (*start=='+' || *start=='-')) // may have + or -
{
start++;
}
if (start <= stop && isdigit(*start)) // must have a digit to be valid
{
hasDigit = 1;
isValid = 1;
}
while (start <= stop && isdigit(*start)) // bunch of digits
{
start++;
}
if (start <= stop && *start=='.') // may have .
{
isValid = 2;
start++;
}
if (start <= stop && isdigit(*start))
{
hasDigit = 1;
}
while (start <= stop && isdigit(*start)) // bunch of digits
{
start++;
}
if (!hasDigit) // no digits then invalid
{
isValid = 0;
goto vsv_end_isValidNumber;
}
if (start <= stop && (*start=='e' || *start=='E')) // may have 'e' or 'E'
{
isValid = 3;
start++;
}
if (start <= stop && isValid == 3 && (*start == '+' || *start == '-'))
{
start++;
}
if (start <= stop && isValid == 3 && isdigit(*start))
{
isValid = 2;
}
while (start <= stop && isdigit(*start)) // bunch of digits
{
start++;
}
if (isValid == 3)
{
isValid = 0;
}
vsv_end_isValidNumber:
if (start <= stop)
{
isValid = 0;
}
return isValid;
}
/*
** Validate UTF-8
** Return -1 if invalid else length
*/
static long long vsv_utf8IsValid(char *string)
{
long long length = 0;
unsigned char *start;
int trailing = 0;
unsigned char c;
start = (unsigned char *)string;
while ((c = *start))
{
if (trailing)
{
if ((c & 0xC0) == 0x80)
{
trailing--;
start++;
length++;
continue;
}
else
{
length = -1;
break;
}
}
if ((c & 0x80) == 0)
{
start++;
length++;
continue;
}
if ((c & 0xE0) == 0xC0)
{
trailing = 1;
start++;
length++;
continue;
}
if ((c & 0xF0) == 0xE0)
{
trailing = 2;
start++;
length++;
continue;
}
if ((c & 0xF8) == 0xF0)
{
trailing = 3;
start++;
length++;
continue;
}
length = -1;
break;
}
return length;
}
/*
** Return values of columns for the row at which the VsvCursor
** is currently pointing.
*/
static int vsvtabColumn(
sqlite3_vtab_cursor *cur, /* The cursor */
sqlite3_context *ctx, /* First argument to sqlite3_result_...() */
int i /* Which column to return */
)
{
VsvCursor *pCur = (VsvCursor*)cur;
VsvTable *pTab = (VsvTable*)cur->pVtab;
long long dLen = pCur->dLen[i];
long long length = 0;
if (i>=0 && i<pTab->nCol && pCur->azVal[i]!=0 && dLen>-1)
{
switch (pTab->affinity)
{
case 0:
{
if (pTab->validateUTF8)
{
length = vsv_utf8IsValid(pCur->azVal[i]);
if (length == dLen)
{
sqlite3_result_text(ctx, pCur->azVal[i], dLen, SQLITE_TRANSIENT);
}
else
{
sqlite3_result_error(ctx, "Invalid UTF8 Data", -1);
}
}
else
{
sqlite3_result_text(ctx, pCur->azVal[i], -1, SQLITE_TRANSIENT);
}
break;
}
case 1:
{
sqlite3_result_blob(ctx, pCur->azVal[i], dLen, SQLITE_TRANSIENT);
break;
}
case 2:
{
if (pTab->validateUTF8)
{
length = vsv_utf8IsValid(pCur->azVal[i]);
if (length < dLen)
{
sqlite3_result_blob(ctx, pCur->azVal[i], dLen, SQLITE_TRANSIENT);
}
else
{
sqlite3_result_text(ctx, pCur->azVal[i], length, SQLITE_TRANSIENT);
}
}
else
{
sqlite3_result_text(ctx, pCur->azVal[i], -1, SQLITE_TRANSIENT);
}
break;
}
case 3:
{
switch (vsv_isValidNumber(pCur->azVal[i]))
{
case 1:
{
sqlite3_result_int64(ctx, strtoll(pCur->azVal[i], 0, 10));
break;
}
default:
{
if (pTab->validateUTF8)
{
length = vsv_utf8IsValid(pCur->azVal[i]);
if (length < dLen)
{
sqlite3_result_blob(ctx, pCur->azVal[i], dLen, SQLITE_TRANSIENT);
}
else
{
sqlite3_result_text(ctx, pCur->azVal[i], length, SQLITE_TRANSIENT);
}
}
else
{
sqlite3_result_text(ctx, pCur->azVal[i], -1, SQLITE_TRANSIENT);
}
break;
}
}
break;
}
case 4:
{
switch (vsv_isValidNumber(pCur->azVal[i]))
{
case 1:
case 2:
{
sqlite3_result_double(ctx, strtod(pCur->azVal[i], 0));
break;
}
default:
{
if (pTab->validateUTF8)
{
length = vsv_utf8IsValid(pCur->azVal[i]);
if (length < dLen)
{
sqlite3_result_blob(ctx, pCur->azVal[i], dLen, SQLITE_TRANSIENT);
}
else
{
sqlite3_result_text(ctx, pCur->azVal[i], length, SQLITE_TRANSIENT);
}
}
else
{
sqlite3_result_text(ctx, pCur->azVal[i], -1, SQLITE_TRANSIENT);
}
break;
}
}
break;
}
case 5:
{
switch (vsv_isValidNumber(pCur->azVal[i]))
{
case 1:
{
sqlite3_result_int64(ctx, strtoll(pCur->azVal[i], 0, 10));
break;
}
case 2:
{
long double dv, fp, ip;
dv = strtold(pCur->azVal[i], 0);
fp = modfl(dv, &ip);
if (sizeof(long double)>sizeof(double))
{
if (fp==0.0L && dv >= -9223372036854775808.0L && dv <= 9223372036854775807.0L)
{
sqlite3_result_int64(ctx, (long long)dv);
}
else
{
sqlite3_result_double(ctx, (double)dv);
}
}
else
{
// Only convert if it will fit in a 6-byte varint
if (fp==0.0L && dv >= -140737488355328.0L && dv <= 140737488355328.0L)
{
sqlite3_result_int64(ctx, (long long)dv);
}
else
{
sqlite3_result_double(ctx, (double)dv);
}
}
break;
}
default:
{
if (pTab->validateUTF8)
{
length = vsv_utf8IsValid(pCur->azVal[i]);
if (length < dLen)
{
sqlite3_result_blob(ctx, pCur->azVal[i], dLen, SQLITE_TRANSIENT);
}
else
{
sqlite3_result_text(ctx, pCur->azVal[i], length, SQLITE_TRANSIENT);
}
}
else
{
sqlite3_result_text(ctx, pCur->azVal[i], -1, SQLITE_TRANSIENT);
}
break;
}
}
}
}
}
return SQLITE_OK;
}
/*
** Return the rowid for the current row.
*/
static int vsvtabRowid(sqlite3_vtab_cursor *cur, sqlite_int64 *pRowid)
{
VsvCursor *pCur = (VsvCursor*)cur;
*pRowid = pCur->iRowid;
return SQLITE_OK;
}
/*
** Return TRUE if the cursor has been moved off of the last
** row of output.
*/
static int vsvtabEof(sqlite3_vtab_cursor *cur)
{
VsvCursor *pCur = (VsvCursor*)cur;
return pCur->iRowid<0;
}
/*
** Only a full table scan is supported. So xFilter simply rewinds to
** the beginning.
*/
static int vsvtabFilter(
sqlite3_vtab_cursor *pVtabCursor,
int idxNum, const char *idxStr,
int argc, sqlite3_value **argv
)
{
VsvCursor *pCur = (VsvCursor*)pVtabCursor;
VsvTable *pTab = (VsvTable*)pVtabCursor->pVtab;
pCur->iRowid = 0;
/* Ensure the field buffer is always allocated. Otherwise, if the
** first field is zero bytes in size, this may be mistaken for an OOM
** error in csvtabNext(). */
if( vsv_append(&pCur->rdr, 0) ) return SQLITE_NOMEM;
if (pCur->rdr.in==0)
{
assert( pCur->rdr.zIn==pTab->zData );
assert( pTab->iStart>=0 );
assert( (size_t)pTab->iStart<=pCur->rdr.nIn );
pCur->rdr.iIn = pTab->iStart;
}
else
{
fseek(pCur->rdr.in, pTab->iStart, SEEK_SET);
pCur->rdr.iIn = 0;
pCur->rdr.nIn = 0;
}
return vsvtabNext(pVtabCursor);
}
/*
** Only a forward full table scan is supported. xBestIndex is mostly
** a no-op. If VSVTEST_FIDX is set, then the presence of equality
** constraints lowers the estimated cost, which is fiction, but is useful
** for testing certain kinds of virtual table behavior.
*/
static int vsvtabBestIndex(
sqlite3_vtab *tab,
sqlite3_index_info *pIdxInfo
)
{
pIdxInfo->estimatedCost = 1000000;
#ifdef SQLITE_TEST
if ((((VsvTable*)tab)->tstFlags & VSVTEST_FIDX)!=0)
{
/* The usual (and sensible) case is to always do a full table scan.
** The code in this branch only runs when testflags=1. This code
** generates an artifical and unrealistic plan which is useful
** for testing virtual table logic but is not helpful to real applications.
**
** Any ==, LIKE, or GLOB constraint is marked as usable by the virtual
** table (even though it is not) and the cost of running the virtual table
** is reduced from 1 million to just 10. The constraints are *not* marked
** as omittable, however, so the query planner should still generate a
** plan that gives a correct answer, even if they plan is not optimal.
*/
int i;
int nConst = 0;
for (i=0; i<pIdxInfo->nConstraint; i++)
{
unsigned char op;
if (pIdxInfo->aConstraint[i].usable==0) continue;
op = pIdxInfo->aConstraint[i].op;
if (op==SQLITE_INDEX_CONSTRAINT_EQ
|| op==SQLITE_INDEX_CONSTRAINT_LIKE
|| op==SQLITE_INDEX_CONSTRAINT_GLOB
)
{
pIdxInfo->estimatedCost = 10;
pIdxInfo->aConstraintUsage[nConst].argvIndex = nConst+1;
nConst++;
}
}
}
#endif
return SQLITE_OK;
}
static sqlite3_module VsvModule = {
0, /* iVersion */
vsvtabCreate, /* xCreate */
vsvtabConnect, /* xConnect */
vsvtabBestIndex, /* xBestIndex */
vsvtabDisconnect, /* xDisconnect */
vsvtabDisconnect, /* xDestroy */
vsvtabOpen, /* xOpen - open a cursor */
vsvtabClose, /* xClose - close a cursor */
vsvtabFilter, /* xFilter - configure scan constraints */
vsvtabNext, /* xNext - advance a cursor */
vsvtabEof, /* xEof - check for end of scan */
vsvtabColumn, /* xColumn - read data */
vsvtabRowid, /* xRowid - read data */
0, /* xUpdate */
0, /* xBegin */
0, /* xSync */
0, /* xCommit */
0, /* xRollback */
0, /* xFindMethod */
0, /* xRename */
};
#ifdef SQLITE_TEST
/*
** For virtual table testing, make a version of the VSV virtual table
** available that has an xUpdate function. But the xUpdate always returns
** SQLITE_READONLY since the VSV file is not really writable.
*/
static int vsvtabUpdate(sqlite3_vtab *p,int n,sqlite3_value**v,sqlite3_int64*x)
{
return SQLITE_READONLY;
}
static sqlite3_module VsvModuleFauxWrite = {
0, /* iVersion */
vsvtabCreate, /* xCreate */
vsvtabConnect, /* xConnect */
vsvtabBestIndex, /* xBestIndex */
vsvtabDisconnect, /* xDisconnect */
vsvtabDisconnect, /* xDestroy */
vsvtabOpen, /* xOpen - open a cursor */
vsvtabClose, /* xClose - close a cursor */
vsvtabFilter, /* xFilter - configure scan constraints */
vsvtabNext, /* xNext - advance a cursor */
vsvtabEof, /* xEof - check for end of scan */
vsvtabColumn, /* xColumn - read data */
vsvtabRowid, /* xRowid - read data */
vsvtabUpdate, /* xUpdate */
0, /* xBegin */
0, /* xSync */
0, /* xCommit */
0, /* xRollback */
0, /* xFindMethod */
0, /* xRename */
};
#endif /* SQLITE_TEST */
#endif /* !defined(SQLITE_OMIT_VIRTUALTABLE) */
/*
** This routine is called when the extension is loaded. The new
** VSV virtual table module is registered with the calling database
** connection.
*/
#ifndef SQLITE_CORE
#ifdef _WIN32
__declspec(dllexport)
#endif
#endif
int sqlite3_vsv_init(
sqlite3 *db,
char **pzErrMsg,
const sqlite3_api_routines *pApi
)
{
#ifndef SQLITE_OMIT_VIRTUALTABLE
int rc;
SQLITE_EXTENSION_INIT2(pApi);
rc = sqlite3_create_module(db, "vsv", &VsvModule, 0);
#ifdef SQLITE_TEST
if (rc==SQLITE_OK)
{
rc = sqlite3_create_module(db, "vsv_wr", &VsvModuleFauxWrite, 0);
}
#endif
return rc;
#else
return SQLITE_OK;
#endif
}
|