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
|
/*
* @file blobtoxy.c
* SQLite extension module for read-only BLOB to X/Y mapping
* using SQLite 3.3.x virtual table API plus some useful
* scalar and aggregate functions.
*
* $Id: blobtoxy.c,v 1.17 2011/07/04 05:43:59 chw Exp chw $
*
* Copyright (c) 2007-2011 Christian Werner <chw@ch-werner.de>
*
* See the file "license.terms" for information on usage
* and redistribution of this file and for a
* DISCLAIMER OF ALL WARRANTIES.
*
* Usage:
*
* Master (non-virtual) table:
*
* CREATE TABLE t(
* key INTEGER PRIMARY KEY,
* data BLOB,
* scale DOUBLE,
* offset DOUBLE,
* foo TEXT,
* bar TEXT
* );
*
* BLOB to X/Y mapping:
*
* CREATE VIRTUAL TABLE t1
* USING blobtoxy (t, key, data, short_le, x_scale, x_offset,
* y_scale, y_offset, "foo, bar");
* CREATE VIRTUAL TABLE t2
* USING blobtoxy (t, key, data, uchar, null, null, null, null, 'bar');
* CREATE VIRTUAL TABLE t3
* USING blobtoxy (t, key, data, int_be, 10.0, null, 10.0, null, "foo");
* CREATE VIRTUAL TABLE t4
* USING blobtoxy (t, key, data, float, null, -10, null, 10);
*
* Arguments to "blobtoxy" module:
*
* 0. master table name (required)
* 1. key column in master table (required)
* 2. blob column in master table (required)
* 3. type code (optional), defaults to "char"
* 4. X scale column in master table (optional),
* may be specified as integer or float constant, too,
* to explicitely omit scale, use an empty string ('')
* or 'null'
* 5. X offset column in master table (optional),
* may be specified as integer or float constant, too,
* to explicitely omit offset, use an empty string ('')
* or 'null'
* 6. Y scale column in master table (optional), see point 4.
* 7. Y offset column in master table (optional), see point 5.
* 8. other columns of the master table to appear in the
* result set (optional), must be specified as a
* single or double quoted string with comma
* separated column names as a sequence of named
* columns as it would be written in a SELECT
* statement
*
* Supported data types:
*
* "char" -> BLOB is a signed char array
* "uchar" -> BLOB is an unsigned char array
* "short_le" -> BLOB is a short array little endian
* "short_be" -> BLOB is a short array big endian
* "ushort_le" -> BLOB is an unsigned short array little endian
* "ushort_be" -> BLOB is an unsigned short array big endian
* "int_le" -> BLOB is a int array little endian
* "int_be" -> BLOB is a int array big endian
* "uint_le" -> BLOB is an unsigned int array little endian
* "uint_be" -> BLOB is an unsigned int array big endian
* "float" -> BLOB is a float array
* "double" -> BLOB is a double array
*
* Columns of "blobtoxy" mapped virtual table:
*
* "key" Key column for JOINing with master table
* "x" index within BLOB.
* This value is optionally translated by
* the "x_scale" and "x_offset" columns
* i.e. x' = x * x_scale + x_offset, yielding
* a floating point result.
* "y" BLOB's value at "x"-unscaled-index
* This value is optionally translated by
* the "y_scale" and "y_offset" columns
* i.e. y' = y * y_scale + y_offset, yielding
* a floating point result.
* ... Other columns, see above
*
* If the "key" field of the master table is an integer data
* type, it is used as the ROWID of the mapped virtual table.
* Otherwise the ROWID is a 0-based counter of the output rows.
*
*
* Exported SQLite functions (svg|tk)_path[_from_blob], blt_vec_(x|y)
*
* Scalar context:
*
* svg_path_from_blob(data, type, x_scale, x_offset, y_scale, y_offset)
* tk_path_from_blob(data, type, x_scale, x_offset, y_scale, y_offset)
* blt_vec_(x|y)(data, type, x_scale, x_offset, y_scale, y_offset)
* tk3d_path_from_blob(data, type, x_scale, x_offset, y_scale, y_offset,
* z_value, z_scale, z_offset)
*
* Like BLOB to X/Y mapping but produces SVG or Tk Canvas
* path/polyline as a string, e.g.
*
* SVG: "M 1 1 L 2 2 L 3 7 L 4 1
* Tk Canvas: "1 1 2 2 3 7 4 1"
* BLT Vector X: "1 2 3 4"
* BLT Vector Y: "1 2 7 1"
* Tk 3D Canvas: "1 1 0 2 2 0 3 7 0 4 1 0"
*
* Arguments:
*
* 0. blob data (required); this parameter is always
* interpreted as blob. It must contain at least
* two elements, otherwise the function's result
* is NULL to indicate that nothing need be drawn
* 1. type code (optional), defaults to "char"
* 2. X scale (optional), see above
* 3. X offset (optional), see above
* 4. Y scale (optional), see above
* 5. Y offset (optional), see above
* 6. Z value (optional)
* 8. Z scale (optional)
* 9. Z offset (optional)
*
* Aggregate context:
*
* svg_path(xdata, ydata, x_scale, x_offset, y_scale, y_offset)
* tk_path(xdata, ydata, x_scale, x_offset, y_scale, y_offset)
* blt_vec(data, scale, offset)
* tk3d_path(xdata, ydata, x_scale, x_offset, y_scale, y_offset,
* zdata, z_scale, z_offset)
*
* Same behaviour except that xdata/ydata/data/zdata are interpreted
* directly as numeric values.
*
*
* Exported SQLite function subblob
*
* subblob(data, start, length, size, skip)
*
* Works somewhat like substr, e.g.
*
* select quote(subblob(X'0A0B0C0D0E0F0001',2,2,1,3))
* -> X'0B0F'
*
* Arguments:
*
* 0. blob data (required); this parameter is always
* interpreted as blob.
* 1. start offset (required) in bytes as in substr
* function (1-based, negative offsets count from end)
* 2. length (required) in bytes to be copied
* 3. size (optional) of items in bytes to be copied
* in combination with skip argument
* 4. skip (optional) in bytes after one item of
* size argument has been copied
*
*
* Exported SQLite function rownumber
*
* rownumber(any)
*
* Returns the row number counting from 0 in simple
* selects. An arbitrary dummy but constant argument
* must be provided to this function in order to satisfy
* some needs of the SQLite3 C API, e.g.
*
* rownumber(0), rownumber('foo') right
* rownumber(column_name) wrong, will yield always 0
*
*/
#ifdef STANDALONE
#include <sqlite3.h>
#else
#include <sqlite3ext.h>
SQLITE_EXTENSION_INIT1
#endif
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <stdio.h>
#ifdef _WIN32
#define strcasecmp _stricmp
#define strncasecmp _strnicmp
#define vsnprintf _vsnprintf
#endif
#define TYPE_CODE(num, type) (((num) << 8) | (sizeof (type)))
#define TYPE_SIZE(code) ((code) & 0xFF)
#define TYPE_CHAR TYPE_CODE( 0, char)
#define TYPE_UCHAR TYPE_CODE( 1, short)
#define TYPE_SHORT_LE TYPE_CODE( 2, short)
#define TYPE_USHORT_LE TYPE_CODE( 3, short)
#define TYPE_SHORT_BE TYPE_CODE( 4, short)
#define TYPE_USHORT_BE TYPE_CODE( 5, short)
#define TYPE_INT_LE TYPE_CODE( 6, int)
#define TYPE_UINT_LE TYPE_CODE( 7, int)
#define TYPE_INT_BE TYPE_CODE( 8, int)
#define TYPE_UINT_BE TYPE_CODE( 9, int)
#define TYPE_FLOAT TYPE_CODE(10, float)
#define TYPE_DOUBLE TYPE_CODE(11, double)
typedef struct b2xy_table {
sqlite3_vtab base; /* SQLite's base virtual table struct */
sqlite3 *db; /* Open database */
char *master_table; /* Table where to fetch BLOB from */
char *fq_master_table; /* Fully qualified master_table */
char *key_column; /* Name of key column */
char *blob_column; /* Name of BLOB column */
char *x_scale_column; /* Name of column giving X scale or NULL */
char *x_offset_column; /* Name of column giving X offset or NULL */
char *y_scale_column; /* Name of column giving Y scale or NULL */
char *y_offset_column; /* Name of column giving Y offset or NULL */
char *other_columns; /* Other columns or empty string */
int type; /* Data type of BLOB */
int argc; /* Number arguments from b2xy_create() call */
char **argv; /* Argument vector from b2xy_create() call */
} b2xy_table;
typedef struct b2xy_cursor {
sqlite3_vtab_cursor base; /* SQLite's base cursor struct */
b2xy_table *table; /* Link to table struct */
sqlite3_stmt *select; /* Prepared SELECT statement or NULL */
sqlite3_value *key; /* Value of current key */
int fix_cols; /* Fixed number of columns of result set */
int num_cols; /* Total number of columns of result set */
char *val; /* Value of current BLOB */
int val_len; /* Length of current BLOB */
int x_scale_col; /* Column number of X scale or 0 */
int x_offset_col; /* Column number of X offset or 0 */
double x_scale, x_offset; /* Current X scale and offset */
int y_scale_col; /* Column number of Y scale or 0 */
int y_offset_col; /* Column number of Y offset or 0 */
double y_scale, y_offset; /* Current X scale and offset */
int do_x_scale; /* If true, use X scale and offset */
int do_y_scale; /* If true, use Y scale and offset */
int type; /* Data type of BLOB */
int index; /* Current index in BLOB */
int rowid_from_key; /* When true, ROWID used from key column */
sqlite_int64 rowid; /* Current ROWID */
} b2xy_cursor;
static int
string_to_type(const char *str)
{
if (strcasecmp(str, "char") == 0) {
return TYPE_CHAR;
}
if (strcasecmp(str, "uchar") == 0) {
return TYPE_UCHAR;
}
if (strcasecmp(str, "short_le") == 0) {
return TYPE_SHORT_LE;
}
if (strcasecmp(str, "ushort_le") == 0) {
return TYPE_USHORT_LE;
}
if (strcasecmp(str, "short_be") == 0) {
return TYPE_SHORT_BE;
}
if (strcasecmp(str, "ushort_be") == 0) {
return TYPE_USHORT_BE;
}
if (strcasecmp(str, "int_le") == 0) {
return TYPE_INT_LE;
}
if (strcasecmp(str, "uint_le") == 0) {
return TYPE_UINT_LE;
}
if (strcasecmp(str, "int_be") == 0) {
return TYPE_INT_BE;
}
if (strcasecmp(str, "uint_be") == 0) {
return TYPE_UINT_BE;
}
if (strcasecmp(str, "float") == 0) {
return TYPE_FLOAT;
}
if (strcasecmp(str, "double") == 0) {
return TYPE_DOUBLE;
}
return 0;
}
static int
b2xy_destroy(sqlite3_vtab *vtab)
{
b2xy_table *bt = (b2xy_table *) vtab;
sqlite3_free(bt);
return SQLITE_OK;
}
static int
b2xy_create(sqlite3 *db, void *userdata, int argc,
const char *const*argv, sqlite3_vtab **vtabret, char **errp)
{
int rc = SQLITE_NOMEM;
b2xy_table *bt;
int i, size, type = TYPE_CHAR;
/*
* argv[0] - module name
* argv[1] - database name
* argv[2] - table name (virtual table)
* argv[3] - master table name (required)
* argv[4] - key column (required)
* argv[5] - blob column (required)
* argv[6] - type code (optional)
* argv[7] - X scale column (optional)
* argv[8] - X offset column (optional)
* argv[9] - Y scale column (optional)
* argv[10] - Y offset column (optional)
* argv[11] - other columns (optional)
*/
if (argc < 6) {
*errp = sqlite3_mprintf("need at least 3 arguments");
return SQLITE_ERROR;
}
if (argc > 6) {
type = string_to_type(argv[6]);
if (!type) {
*errp = sqlite3_mprintf("unsupported type %Q", argv[6]);
return SQLITE_ERROR;
}
}
if (argc > 11) {
if (argv[11][0] != '"' && argv[11][0] != '\'') {
*errp = sqlite3_mprintf("other columns must be quoted");
return SQLITE_ERROR;
}
}
size = sizeof (char *) * argc;
for (i = 0; i < argc; i++) {
size += argv[i] ? (strlen(argv[i]) + 1) : 0;
}
/* additional space for '"' + argv[1] '"."' + argv[3] + '"' */
size += argv[1] ? (strlen(argv[1]) + 3) : 3;
size += argv[3] ? (strlen(argv[3]) + 3) : 0;
bt = sqlite3_malloc(sizeof (b2xy_table) + size);
if (bt) {
char *p, *key_type = 0, *x_type, *y_type, *other_types = 0;
memset(bt, 0, sizeof (b2xy_table) + size);
bt->db = db;
bt->type = type;
bt->argc = argc;
bt->argv = (char **) (bt + 1);
p = (char *) (bt->argv + argc);
for (i = 0; i < argc; i++) {
if (argv[i]) {
bt->argv[i] = p;
strcpy(p, argv[i]);
p += strlen(p) + 1;
}
}
bt->master_table = bt->argv[3];
bt->fq_master_table = p;
p[0] = '\0';
if (bt->argv[1]) {
strcat(p, "\"");
strcat(p, bt->argv[1]);
strcat(p, "\".");
}
if (bt->argv[3]) {
strcat(p, "\"");
strcat(p, bt->argv[3]);
strcat(p, "\"");
}
bt->key_column = bt->argv[4];
bt->blob_column = bt->argv[5];
if (bt->argc > 7 && bt->argv[7][0]) {
bt->x_scale_column = bt->argv[7];
if (strcasecmp(bt->x_scale_column, "null") == 0) {
bt->x_scale_column = 0;
}
}
if (bt->argc > 8 && bt->argv[8][0]) {
bt->x_offset_column = bt->argv[8];
if (strcasecmp(bt->x_offset_column, "null") == 0) {
bt->x_offset_column = 0;
}
}
if (bt->argc > 9 && bt->argv[9][0]) {
bt->y_scale_column = bt->argv[9];
if (strcasecmp(bt->y_scale_column, "null") == 0) {
bt->y_scale_column = 0;
}
}
if (bt->argc > 10 && bt->argv[10][0]) {
bt->y_offset_column = bt->argv[10];
if (strcasecmp(bt->y_offset_column, "null") == 0) {
bt->y_offset_column = 0;
}
}
if (bt->argc > 11) {
p = bt->argv[11];
p[0] = ',';
bt->other_columns = p;
p += strlen(p) - 1;
if (*p == '"' || *p == '\'') {
*p = '\0';
}
} else {
bt->other_columns = "";
}
/* find out types of key and x/y columns */
if (bt->x_scale_column || bt->x_offset_column ||
bt->type == TYPE_FLOAT || bt->type == TYPE_DOUBLE) {
x_type = " DOUBLE";
} else {
x_type = " INTEGER";
}
if (bt->y_scale_column || bt->y_offset_column ||
bt->type == TYPE_FLOAT || bt->type == TYPE_DOUBLE) {
y_type = " DOUBLE";
} else {
y_type = " INTEGER";
}
p = sqlite3_mprintf("PRAGMA %Q.table_info(%Q)",
bt->argv[1] ? bt->argv[1] : "MAIN",
bt->master_table);
if (p) {
int nrows = 0, ncols = 0;
char **rows = 0;
rc = sqlite3_get_table(db, p, &rows, &nrows, &ncols, 0);
sqlite3_free(p);
if (rc == SQLITE_OK) {
for (i = 1; ncols >= 3 && i <= nrows; i++) {
p = rows[i * ncols + 1];
if (p && strcasecmp(bt->key_column, p) == 0) {
key_type = sqlite3_mprintf(" %s", rows[i * ncols + 2]);
break;
}
}
}
if (rows) {
sqlite3_free_table(rows);
}
}
/* find out types of other columns */
p = 0;
if (bt->other_columns[0]) {
p = sqlite3_mprintf("SELECT %s FROM %s WHERE 0",
bt->other_columns + 1, bt->fq_master_table);
}
if (p) {
sqlite3_stmt *stmt = 0;
#if defined(HAVE_SQLITE3PREPAREV2) && HAVE_SQLITE3PREPAREV2
rc = sqlite3_prepare_v2(db, p, -1, &stmt, 0);
#else
rc = sqlite3_prepare(db, p, -1, &stmt, 0);
#endif
sqlite3_free(p);
if (rc == SQLITE_OK && stmt) {
sqlite3_step(stmt);
for (i = 0; i < sqlite3_column_count(stmt); i++) {
p = sqlite3_mprintf("%s%s\"%s\" %s",
other_types ? other_types : "",
other_types ? "," : "",
sqlite3_column_name(stmt, i),
sqlite3_column_decltype(stmt, i));
sqlite3_free(other_types);
other_types = 0;
if (p) {
other_types = p;
} else {
break;
}
}
sqlite3_finalize(stmt);
if (other_types) {
p = sqlite3_mprintf(",%s", other_types);
sqlite3_free(other_types);
other_types = p;
}
}
}
p = sqlite3_mprintf("CREATE TABLE \"%s\"(key%s CONSTRAINT fk "
"REFERENCES \"%s\"(\"%s\"),x%s,y%s%s)",
argv[2], key_type ? key_type : "",
bt->master_table, bt->key_column,
x_type, y_type,
other_types ? other_types : bt->other_columns);
if (key_type) {
sqlite3_free(key_type);
}
if (other_types) {
sqlite3_free(other_types);
}
if (p) {
rc = sqlite3_declare_vtab(db, p);
sqlite3_free(p);
}
if (rc != SQLITE_OK) {
b2xy_destroy((sqlite3_vtab *) bt);
bt = 0;
}
}
*vtabret = (sqlite3_vtab *) bt;
return rc;
}
static int
b2xy_open(sqlite3_vtab *vtab, sqlite3_vtab_cursor **curret)
{
int rc = SQLITE_NOMEM;
b2xy_table *bt = (b2xy_table *) vtab;
b2xy_cursor *bc;
bc = sqlite3_malloc(sizeof (b2xy_cursor));
if (bc) {
memset(bc, 0, sizeof(b2xy_cursor));
bc->table = bt;
bc->type = bt->type;
*curret = (sqlite3_vtab_cursor *) bc;
rc = SQLITE_OK;
}
return rc;
}
static int
b2xy_close(sqlite3_vtab_cursor *cur)
{
b2xy_cursor *bc = (b2xy_cursor *) cur;
sqlite3_finalize(bc->select);
sqlite3_free(bc);
return SQLITE_OK;
}
static int
b2xy_column(sqlite3_vtab_cursor *cur, sqlite3_context *ctx, int i)
{
b2xy_cursor *bc = (b2xy_cursor *) cur;
char *p;
double v;
switch (i) {
case 0:
sqlite3_result_value(ctx, bc->key);
break;
case 1:
if (bc->do_x_scale) {
v = bc->index * bc->x_scale + bc->x_offset;
sqlite3_result_double(ctx, v);
} else {
sqlite3_result_int(ctx, bc->index);
}
break;
case 2:
if (!bc->val || bc->index * TYPE_SIZE(bc->type) >= bc->val_len) {
goto put_null;
}
p = bc->val + bc->index * TYPE_SIZE(bc->type);
switch (bc->type) {
case TYPE_CHAR:
if (bc->do_y_scale) {
v = p[0];
goto scale_it;
}
sqlite3_result_int(ctx, p[0]);
break;
case TYPE_UCHAR:
if (bc->do_y_scale) {
v = p[0] & 0xFF;
goto scale_it;
}
sqlite3_result_int(ctx, p[0] & 0xFF);
break;
case TYPE_SHORT_LE:
if (bc->do_y_scale) {
v = (p[0] & 0xFF) | (p[1] << 8);
goto scale_it;
}
sqlite3_result_int(ctx, (p[0] & 0xFF) | (p[1] << 8));
break;
case TYPE_USHORT_LE:
if (bc->do_y_scale) {
v = (p[0] & 0xFF) | ((p[1] & 0xFF) << 8);
goto scale_it;
}
sqlite3_result_int(ctx, (p[0] & 0xFF) | ((p[1] & 0xFF) << 8));
break;
case TYPE_SHORT_BE:
if (bc->do_y_scale) {
v = (p[1] & 0xFF) | (p[0] << 8);
goto scale_it;
}
sqlite3_result_int(ctx, (p[1] & 0xFF) | (p[0] << 8));
break;
case TYPE_USHORT_BE:
if (bc->do_y_scale) {
v = (p[1] & 0xFF) | ((p[0] & 0xFF) << 8);
goto scale_it;
}
sqlite3_result_int(ctx, (p[1] & 0xFF) | ((p[0] & 0xFF) << 8));
break;
case TYPE_INT_LE:
if (bc->do_y_scale) {
v = (p[0] & 0xFF) | ((p[1] & 0xFF) << 8) |
((p[2] & 0xFF) << 16) | (p[3] << 24);
goto scale_it;
}
sqlite3_result_int64(ctx, (p[0] & 0xFF) |
((p[1] & 0xFF) << 8) |
((p[2] & 0xFF) << 16) |
(p[3] << 24));
break;
case TYPE_UINT_LE:
if (bc->do_y_scale) {
v = (p[0] & 0xFF) | ((p[1] & 0xFF) << 8) |
((p[2] & 0xFF) << 16) | ((p[3] & 0xFF) << 24);
goto scale_it;
}
sqlite3_result_int64(ctx, (p[0] & 0xFF) |
((p[1] & 0xFF) << 8) |
((p[2] & 0xFF) << 16) |
((p[3] & 0xFF) << 24));
break;
case TYPE_INT_BE:
if (bc->do_y_scale) {
v = (p[3] & 0xFF) | ((p[2] & 0xFF) << 8) |
((p[1] & 0xFF) << 16) | (p[0] << 24);
goto scale_it;
}
sqlite3_result_int64(ctx, (p[3] & 0xFF) |
((p[2] & 0xFF) << 8) |
((p[1] & 0xFF) << 16) |
(p[0] << 24));
break;
case TYPE_UINT_BE:
if (bc->do_y_scale) {
v = (p[3] & 0xFF) | ((p[2] & 0xFF) << 8) |
((p[1] & 0xFF) << 16) | ((p[0] & 0xFF) << 24);
goto scale_it;
}
sqlite3_result_int64(ctx, (p[3] & 0xFF) |
((p[2] & 0xFF) << 8) |
((p[1] & 0xFF) << 16) |
((p[0] & 0xFF) << 24));
break;
case TYPE_FLOAT:
v = ((float *) p)[0];
goto scale_it;
case TYPE_DOUBLE:
v = ((double *) p)[0];
if (bc->do_y_scale) {
scale_it:
v = v * bc->y_scale + bc->y_offset;
}
sqlite3_result_double(ctx, v);
break;
default:
put_null:
sqlite3_result_null(ctx);
break;
}
break;
default:
i += bc->fix_cols - 3;
if (i < 0 || i >= bc->num_cols) {
sqlite3_result_null(ctx);
} else {
sqlite3_result_value(ctx, sqlite3_column_value(bc->select, i));
}
break;
}
return SQLITE_OK;
}
static int
b2xy_rowid(sqlite3_vtab_cursor *cur, sqlite_int64 *rowidp)
{
b2xy_cursor *bc = (b2xy_cursor *) cur;
*rowidp = bc->rowid;
return SQLITE_OK;
}
static int
b2xy_eof(sqlite3_vtab_cursor *cur)
{
b2xy_cursor *bc = (b2xy_cursor *) cur;
return bc->select ? 0 : 1;
}
static int
b2xy_next(sqlite3_vtab_cursor *cur)
{
b2xy_cursor *bc = (b2xy_cursor *) cur;
b2xy_table *bt = bc->table;
if (!bc->select) {
return SQLITE_OK;
}
if (bc->val) {
bc->index += 1;
}
refetch:
if (!bc->val || bc->index * TYPE_SIZE(bc->type) >= bc->val_len) {
int rc = sqlite3_step(bc->select);
if (rc == SQLITE_SCHEMA) {
rc = sqlite3_step(bc->select);
}
if (rc != SQLITE_ROW) {
sqlite3_finalize(bc->select);
bc->select = 0;
return SQLITE_OK;
}
bc->rowid_from_key = 0;
bc->index = 0;
bc->val = (char *) sqlite3_column_blob(bc->select, 1);
bc->val_len = sqlite3_column_bytes(bc->select, 1);
if (!bc->val || bc->val_len <= 0) {
goto refetch;
}
bc->key = sqlite3_column_value(bc->select, 0);
if (sqlite3_column_type(bc->select, 0) == SQLITE_INTEGER) {
bc->rowid_from_key = 1;
bc->rowid = sqlite3_column_int64(bc->select, 0);
}
bc->do_x_scale = 0;
bc->x_scale = 1.0;
bc->x_offset = 0.0;
if (bt->x_scale_column) {
bc->x_scale = sqlite3_column_double(bc->select, bc->x_scale_col);
bc->do_x_scale++;
}
if (bt->x_offset_column) {
bc->x_offset = sqlite3_column_double(bc->select, bc->x_offset_col);
bc->do_x_scale++;
}
bc->do_y_scale = 0;
bc->y_scale = 1.0;
bc->y_offset = 0.0;
if (bt->y_scale_column) {
bc->y_scale = sqlite3_column_double(bc->select, bc->y_scale_col);
bc->do_y_scale++;
}
if (bt->y_offset_column) {
bc->y_offset = sqlite3_column_double(bc->select, bc->y_offset_col);
bc->do_y_scale++;
}
}
if (!bc->rowid_from_key) {
bc->rowid++;
}
return SQLITE_OK;
}
static int
b2xy_filter(sqlite3_vtab_cursor *cur, int idxNum, const char *idxStr,
int argc, sqlite3_value **argv)
{
b2xy_cursor *bc = (b2xy_cursor *) cur;
b2xy_table *bt = bc->table;
char *query, *tmp, *op = 0;
int rc;
bc->rowid_from_key = 0;
bc->rowid = 0;
if (bc->select) {
sqlite3_finalize(bc->select);
bc->select = 0;
}
bc->fix_cols = 2;
query = sqlite3_mprintf("select \"%s\",\"%s\"", bt->key_column,
bt->blob_column);
if (!query) {
return SQLITE_NOMEM;
}
if (bt->x_scale_column) {
tmp = sqlite3_mprintf("%s,\"%s\"", query, bt->x_scale_column);
sqlite3_free(query);
if (!tmp) {
return SQLITE_NOMEM;
}
query = tmp;
bc->x_scale_col = bc->fix_cols;
bc->fix_cols++;
}
if (bt->x_offset_column) {
tmp = sqlite3_mprintf("%s,\"%s\"", query, bt->x_offset_column);
sqlite3_free(query);
if (!tmp) {
return SQLITE_NOMEM;
}
query = tmp;
bc->x_offset_col = bc->fix_cols;
bc->fix_cols++;
}
if (bt->y_scale_column) {
tmp = sqlite3_mprintf("%s,\"%s\"", query, bt->y_scale_column);
sqlite3_free(query);
if (!tmp) {
return SQLITE_NOMEM;
}
query = tmp;
bc->y_scale_col = bc->fix_cols;
bc->fix_cols++;
}
if (bt->y_offset_column) {
tmp = sqlite3_mprintf("%s,\"%s\"", query, bt->y_offset_column);
sqlite3_free(query);
if (!tmp) {
return SQLITE_NOMEM;
}
query = tmp;
bc->y_offset_col = bc->fix_cols;
bc->fix_cols++;
}
tmp = sqlite3_mprintf("%s%s from %s", query, bt->other_columns,
bt->fq_master_table);
sqlite3_free(query);
if (!tmp) {
return SQLITE_NOMEM;
}
query = tmp;
if (idxNum && argc > 0) {
switch (idxNum) {
case SQLITE_INDEX_CONSTRAINT_EQ:
op = "=";
break;
case SQLITE_INDEX_CONSTRAINT_GT:
op = ">";
break;
case SQLITE_INDEX_CONSTRAINT_LE:
op = "<=";
break;
case SQLITE_INDEX_CONSTRAINT_LT:
op = "<";
break;
case SQLITE_INDEX_CONSTRAINT_GE:
op = ">=";
break;
case SQLITE_INDEX_CONSTRAINT_MATCH:
op = "like";
break;
}
if (op) {
tmp = sqlite3_mprintf("%s where \"%s\" %s ?",
query, bt->key_column, op);
sqlite3_free(query);
if (!tmp) {
return SQLITE_NOMEM;
}
query = tmp;
}
}
if (idxStr) {
tmp = sqlite3_mprintf("%s %s", query, idxStr);
sqlite3_free(query);
if (!tmp) {
return SQLITE_NOMEM;
}
query = tmp;
}
bc->num_cols = bc->fix_cols;
#if defined(HAVE_SQLITE3PREPAREV2) && HAVE_SQLITE3PREPAREV2
rc = sqlite3_prepare_v2(bt->db, query, -1, &bc->select, 0);
#else
rc = sqlite3_prepare(bt->db, query, -1, &bc->select, 0);
if (rc == SQLITE_SCHEMA) {
rc = sqlite3_prepare(bt->db, query, -1, &bc->select, 0);
}
#endif
sqlite3_free(query);
if (rc == SQLITE_OK) {
bc->num_cols = sqlite3_column_count(bc->select);
if (op) {
sqlite3_bind_value(bc->select, 1, argv[0]);
}
}
return (rc == SQLITE_OK) ? b2xy_next(cur) : rc;
}
static int
b2xy_bestindex(sqlite3_vtab *tab, sqlite3_index_info *info)
{
b2xy_table *bt = (b2xy_table *) tab;
int i, key_order = 0, consumed = 0;
/* preset to not using index */
info->idxNum = 0;
/*
* Only when the key column of the master table
* (0th column in virtual table) is used in a
* constraint, a WHERE condition in the xFilter
* function can be coded. This is indicated by
* setting "idxNum" to the "op" value of that
* constraint.
*/
for (i = 0; i < info->nConstraint; ++i) {
if (info->aConstraint[i].usable) {
if (info->aConstraint[i].iColumn == 0 &&
info->aConstraint[i].op != 0) {
info->idxNum = info->aConstraint[i].op;
info->aConstraintUsage[i].argvIndex = 1;
info->aConstraintUsage[i].omit = 1;
info->estimatedCost = 1.0;
break;
}
}
}
/*
* ORDER BY can be optimized, when our X column
* is not present or to be sorted ascending.
* Additionally when the key column is to be sorted
* an ORDER BY is sent to the xFilter function.
*/
for (i = 0; i < info->nOrderBy; i++) {
if (info->aOrderBy[i].iColumn == 0) {
key_order = info->aOrderBy[i].desc ? -1 : 1;
consumed++;
} else if (info->aOrderBy[i].iColumn == 1 &&
!info->aOrderBy[i].desc) {
consumed++;
}
}
if (consumed) {
/* check for other ORDER BY columns */
for (i = 0; i < info->nOrderBy; i++) {
if (info->aOrderBy[i].iColumn == 1 &&
info->aOrderBy[i].desc) {
consumed = 0;
} else if (info->aOrderBy[i].iColumn > 1) {
consumed = 0;
}
}
}
if (consumed && key_order) {
info->idxStr = sqlite3_mprintf("ORDER BY \"%s\" %s",
bt->key_column,
key_order < 0 ? "DESC" : "ASC");
info->needToFreeIdxStr = 1;
}
info->orderByConsumed = consumed;
return SQLITE_OK;
}
static int
b2xy_rename(sqlite3_vtab *tab, const char *newname)
{
return SQLITE_OK;
}
static const sqlite3_module b2xy_module = {
1, /* iVersion */
b2xy_create, /* xCreate */
b2xy_create, /* xConnect */
b2xy_bestindex, /* xBestIndex */
b2xy_destroy, /* xDisconnect */
b2xy_destroy, /* xDestroy */
b2xy_open, /* xOpen */
b2xy_close, /* xClose */
b2xy_filter, /* xFilter */
b2xy_next, /* xNext */
b2xy_eof, /* xEof */
b2xy_column, /* xColumn */
b2xy_rowid, /* xRowid */
0, /* xUpdate */
0, /* xBegin */
0, /* xSync */
0, /* xCommit */
0, /* xRollback */
0, /* xFindFunction */
b2xy_rename, /* xRename */
};
typedef struct {
int max, idx;
char *str;
} strbuf;
static int
init_strbuf(strbuf *sb)
{
int n = 1024;
if (sb->max <= 0 || !sb->str) {
sb->str = sqlite3_malloc(n);
if (!sb->str) {
return SQLITE_NOMEM;
}
sb->max = n;
}
sb->idx = 0;
return SQLITE_OK;
}
static int
expand_strbuf(strbuf *sb)
{
int n;
char *str;
if (sb->max <= 0 || !sb->str) {
return init_strbuf(sb);
}
n = sb->max * 2;
str = sqlite3_realloc(sb->str, n);
if (!str) {
return SQLITE_NOMEM;
}
sb->max = n;
sb->str = str;
return SQLITE_OK;
}
static void
drop_strbuf(strbuf *sb)
{
if (sb->str) {
sqlite3_free(sb->str);
sb->str = 0;
}
sb->max = 0;
}
static int
print_strbuf(strbuf *sb, const char *fmt, ...)
{
int i, n, rc;
va_list ap;
va_start(ap, fmt);
for (i = 0; i < 2; i++) {
if (sb->max - (sb->idx + 1) < 256) {
rc = expand_strbuf(sb);
if (rc != SQLITE_OK) {
return rc;
}
}
rc = SQLITE_NOMEM;
n = vsnprintf(sb->str + sb->idx, sb->max - sb->idx, fmt, ap);
if (n >= 0 && (sb->idx + n) < (sb->max - 1)) {
sb->idx += n;
rc = SQLITE_OK;
break;
}
}
va_end(ap);
return rc;
}
#define PATH_MODE_TK ((void *) 0)
#define PATH_MODE_SVG ((void *) 1)
#define PATH_MODE_BLT_X ((void *) 2)
#define PATH_MODE_BLT_Y ((void *) 3)
#define PATH_MODE_BLT ((void *) 4)
#define PATH_MODE_TK3D ((void *) 5)
static void
common_path_func(sqlite3_context *ctx, int nargs, sqlite3_value **args)
{
void *mode = sqlite3_user_data(ctx);
char *data;
int i, linebreak, size, type = TYPE_CHAR;
int do_x_scale = 0, do_y_scale = 0, do_z_scale = 0;
double x_scale, x_offset, y_scale, y_offset, z0, z_scale, z_offset;
strbuf sb;
/*
* args[0] - blob data (required)
* args[1] - type (optional)
* args[2] - X scale (optional)
* args[3] - X offset (optional)
* args[4] - Y scale (optional)
* args[5] - Y offset (optional)
* args[6] - Z value (optional)
* args[7] - Z scale (optional)
* args[8] - Z offset (optional)
*/
if (nargs < 1) {
sqlite3_result_error(ctx, "need at least 1 argument", -1);
return;
}
if (nargs > 1) {
type = string_to_type((const char *) sqlite3_value_text(args[1]));
if (!type) {
sqlite3_result_error(ctx, "bad type name", -1);
return;
}
}
data = (char *) sqlite3_value_blob(args[0]);
size = sqlite3_value_bytes(args[0]) / TYPE_SIZE(type);
if (!data ||
(mode != PATH_MODE_BLT_X && mode != PATH_MODE_BLT_Y && size < 2) ||
size < 1) {
goto nullorempty;
}
x_scale = 1;
x_offset = 0;
if (nargs > 2) {
x_scale = sqlite3_value_double(args[2]);
do_x_scale++;
}
if (nargs > 3) {
x_offset = sqlite3_value_double(args[3]);
do_x_scale++;
}
y_scale = 1;
y_offset = 0;
if (nargs > 4) {
y_scale = sqlite3_value_double(args[4]);
do_y_scale++;
}
if (nargs > 5) {
y_offset = sqlite3_value_double(args[5]);
do_y_scale++;
}
z0 = 0;
z_scale = 1;
z_offset = 0;
if (mode == PATH_MODE_TK3D && nargs > 6) {
z0 = sqlite3_value_double(args[6]);
}
if (mode == PATH_MODE_TK3D && nargs > 7) {
z_scale = sqlite3_value_double(args[7]);
do_z_scale++;
}
if (mode == PATH_MODE_TK3D && nargs > 8) {
z_offset = sqlite3_value_double(args[8]);
do_z_scale++;
}
memset(&sb, 0, sizeof (sb));
if (init_strbuf(&sb) != SQLITE_OK) {
goto nullorempty;
}
linebreak = 100;
for (i = 0; i < size; i++, data += TYPE_SIZE(type)) {
double x, y = 0, z = z0;
char *fmt;
if (do_z_scale) {
z = z0 * z_scale + z_offset;
}
if (do_x_scale) {
x = i * x_scale + x_offset;
} else {
x = i;
}
switch (type) {
case TYPE_CHAR:
y = data[0];
break;
case TYPE_UCHAR:
y = data[0] & 0xFF;
break;
case TYPE_SHORT_LE:
y = (data[0] & 0xFF) | (data[1] << 8);
break;
case TYPE_USHORT_LE:
y = (data[0] & 0xFF) | ((data[1] & 0xFF) << 8);
break;
case TYPE_SHORT_BE:
y = (data[1] & 0xFF) | (data[0] << 8);
break;
case TYPE_USHORT_BE:
y = (data[1] & 0xFF) | ((data[0] & 0xFF) << 8);
break;
case TYPE_INT_LE:
y = (data[0] & 0xFF) | ((data[1] & 0xFF) << 8) |
((data[2] & 0xFF) << 16) | (data[3] << 24);
break;
case TYPE_UINT_LE:
y = (data[0] & 0xFF) | ((data[1] & 0xFF) << 8) |
((data[2] & 0xFF) << 16) | ((data[3] & 0xFF) << 24);
break;
case TYPE_INT_BE:
y = (data[3] & 0xFF) | ((data[2] & 0xFF) << 8) |
((data[1] & 0xFF) << 16) | (data[0] << 24);
break;
case TYPE_UINT_BE:
y = (data[3] & 0xFF) | ((data[2] & 0xFF) << 8) |
((data[1] & 0xFF) << 16) | ((data[0] & 0xFF) << 24);
break;
case TYPE_FLOAT:
y = ((float *) data)[0];
break;
case TYPE_DOUBLE:
y = ((double *) data)[0];
break;
}
if (do_y_scale) {
y = y * y_scale + y_offset;
}
if (mode == PATH_MODE_BLT_X || mode == PATH_MODE_BLT_Y) {
double v = (mode == PATH_MODE_BLT_X) ? x : y;
if (print_strbuf(&sb, (i == 0) ? "%g" : " %g", v) != SQLITE_OK) {
drop_strbuf(&sb);
break;
}
continue;
}
if (mode == PATH_MODE_SVG && i == 0) {
fmt = "M %g %g";
} else if (mode == PATH_MODE_SVG && i == 1) {
fmt = " L %g %g";
} else if (mode == PATH_MODE_SVG && sb.idx >= linebreak) {
fmt = "\nL %g %g";
linebreak = sb.idx + 100;
} else if (i == 0) {
fmt = (mode == PATH_MODE_TK3D) ? "%g %g %g" : "%g %g";
} else {
fmt = (mode == PATH_MODE_TK3D) ? " %g %g %g" : " %g %g";
}
if (print_strbuf(&sb, fmt, x, y, z) != SQLITE_OK) {
drop_strbuf(&sb);
break;
}
}
if (sb.str) {
sqlite3_result_text(ctx, sb.str, sb.idx, sqlite3_free);
sb.str = 0;
return;
}
nullorempty:
if (mode == PATH_MODE_BLT_X || mode == PATH_MODE_BLT_Y) {
sqlite3_result_text(ctx, "", 0, SQLITE_STATIC);
} else {
sqlite3_result_null(ctx);
}
}
typedef struct {
int init, count, linebreak;
void *mode;
strbuf sb;
} path_aggctx;
static void
common_path_step(sqlite3_context *ctx, int nargs, sqlite3_value **args)
{
path_aggctx *pag;
int type;
char *fmt;
double x, y, z = 0;
double x_scale, y_scale, x_offset, y_offset, z_scale, z_offset;
/*
* args[0] - X value (required)
* args[1] - Y value (required)
* args[2] - X scale (optional)
* args[3] - X offset (optional)
* args[4] - Y scale (optional)
* args[5] - Y offset (optional)
* args[6] - Z value (optional)
* args[7] - Z scale (optional)
* args[8] - Z offset (optional)
*/
if (nargs < 2) {
return;
}
pag = sqlite3_aggregate_context(ctx, sizeof (*pag));
if (!pag->init) {
if (init_strbuf(&pag->sb) != SQLITE_OK) {
return;
}
pag->linebreak = 100;
pag->count = 0;
pag->mode = sqlite3_user_data(ctx);
pag->init = 1;
}
type = sqlite3_value_type(args[0]);
if (type != SQLITE_INTEGER && type != SQLITE_FLOAT) {
return;
}
type = sqlite3_value_type(args[1]);
if (type != SQLITE_INTEGER && type != SQLITE_FLOAT) {
return;
}
x = sqlite3_value_double(args[0]);
y = sqlite3_value_double(args[1]);
x_scale = 1;
x_offset = 0;
if (nargs > 2) {
type = sqlite3_value_type(args[2]);
if (type == SQLITE_INTEGER || type == SQLITE_FLOAT) {
x_scale = sqlite3_value_double(args[2]);
}
}
if (nargs > 3) {
type = sqlite3_value_type(args[3]);
if (type == SQLITE_INTEGER || type == SQLITE_FLOAT) {
x_offset = sqlite3_value_double(args[3]);
}
}
y_scale = 1;
y_offset = 0;
if (nargs > 4) {
type = sqlite3_value_type(args[4]);
if (type == SQLITE_INTEGER || type == SQLITE_FLOAT) {
y_scale = sqlite3_value_double(args[4]);
}
}
if (nargs > 5) {
type = sqlite3_value_type(args[5]);
if (type == SQLITE_INTEGER || type == SQLITE_FLOAT) {
y_offset = sqlite3_value_double(args[5]);
}
}
z_scale = 1;
z_offset = 0;
if (pag->mode == PATH_MODE_TK3D && nargs > 6) {
z = sqlite3_value_double(args[6]);
if (nargs > 7) {
type = sqlite3_value_type(args[7]);
if (type == SQLITE_INTEGER || type == SQLITE_FLOAT) {
z_scale = sqlite3_value_double(args[7]);
}
}
if (nargs > 8) {
type = sqlite3_value_type(args[8]);
if (type == SQLITE_INTEGER || type == SQLITE_FLOAT) {
z_offset = sqlite3_value_double(args[8]);
}
}
z = z * z_scale + z_offset;
}
x = x * x_scale + x_offset;
y = y * y_scale + y_offset;
if (pag->mode == PATH_MODE_SVG && pag->count == 0) {
fmt = "M %g %g";
} else if (pag->mode == PATH_MODE_SVG && pag->count == 1) {
fmt = " L %g %g";
} else if (pag->mode == PATH_MODE_SVG && pag->sb.idx >= pag->linebreak) {
fmt = "\nL %g %g";
pag->linebreak = pag->sb.idx + 100;
} else if (pag->count == 0) {
fmt = (pag->mode == PATH_MODE_TK3D) ? "%g %g %g" : "%g %g";
} else {
fmt = (pag->mode == PATH_MODE_TK3D) ? " %g %g %g" : " %g %g";
}
if (print_strbuf(&pag->sb, fmt, x, y, z) != SQLITE_OK) {
drop_strbuf(&pag->sb);
pag->init = 0;
} else {
pag->count++;
}
}
static void
common_path_finalize(sqlite3_context *ctx)
{
path_aggctx *pag = sqlite3_aggregate_context(ctx, sizeof (*pag));
if (pag->init) {
if (pag->count > 1 || pag->mode == PATH_MODE_BLT) {
sqlite3_result_text(ctx, pag->sb.str, pag->sb.idx, sqlite3_free);
pag->sb.str = 0;
pag->init = 0;
return;
}
drop_strbuf(&pag->sb);
}
if (pag->mode == PATH_MODE_BLT) {
sqlite3_result_text(ctx, "", 0, SQLITE_STATIC);
} else {
sqlite3_result_null(ctx);
}
}
static void
blt_vec_step(sqlite3_context *ctx, int nargs, sqlite3_value **args)
{
path_aggctx *pag;
int type;
double v, scale, offset;
/*
* args[0] - value (required)
* args[1] - scale (optional)
* args[2] - offset (optional)
*/
if (nargs < 1) {
return;
}
pag = sqlite3_aggregate_context(ctx, sizeof (*pag));
if (!pag->init) {
if (init_strbuf(&pag->sb) != SQLITE_OK) {
return;
}
pag->count = 0;
pag->mode = PATH_MODE_BLT;
pag->init = 1;
}
type = sqlite3_value_type(args[0]);
if (type != SQLITE_INTEGER && type != SQLITE_FLOAT) {
return;
}
v = sqlite3_value_double(args[0]);
scale = 1;
offset = 0;
if (nargs > 1) {
type = sqlite3_value_type(args[1]);
if (type == SQLITE_INTEGER || type == SQLITE_FLOAT) {
scale = sqlite3_value_double(args[2]);
}
}
if (nargs > 2) {
type = sqlite3_value_type(args[2]);
if (type == SQLITE_INTEGER || type == SQLITE_FLOAT) {
offset = sqlite3_value_double(args[3]);
}
}
v = v * scale + offset;
if (print_strbuf(&pag->sb, (pag->count == 0) ? "%g" : " %g", v)
!= SQLITE_OK) {
drop_strbuf(&pag->sb);
pag->init = 0;
} else {
pag->count++;
}
}
static void
subblob_func(sqlite3_context *ctx, int nargs, sqlite3_value **args)
{
int insize, outsize, start, itemsize = 1, itemskip = 0;
int i, k, n;
char *indata, *outdata;
if (nargs < 3) {
sqlite3_result_error(ctx, "need at least 1 argument", -1);
return;
}
indata = (char *) sqlite3_value_blob(args[0]);
insize = sqlite3_value_bytes(args[0]);
if (!indata || insize <= 0) {
isnull:
sqlite3_result_null(ctx);
return;
}
start = sqlite3_value_int(args[1]);
if (start < 0) {
start = insize - start;
if (start < 0) {
start = 0;
}
} else if (start > 0) {
start--;
}
if (start >= insize) {
goto isnull;
}
outsize = sqlite3_value_int(args[2]);
if (outsize > insize - start) {
outsize = insize - start;
}
if (outsize <= 0) {
goto isnull;
}
if (nargs > 3) {
itemsize = sqlite3_value_int(args[3]);
if (itemsize <= 0 || itemsize > outsize) {
goto isnull;
}
}
if (nargs > 4) {
itemskip = sqlite3_value_int(args[4]);
if (itemskip < 0) {
goto isnull;
}
}
outdata = sqlite3_malloc(outsize);
if (!outdata) {
sqlite3_result_error(ctx, "out of memory", -1);
return;
}
for (i = n = 0; i < outsize; i++) {
for (k = 0; k < itemsize; k++) {
outdata[i + k] = indata[start];
n++;
start++;
if (start >= insize) {
break;
}
}
start += itemskip;
if (start >= insize) {
break;
}
}
if (n > 0) {
sqlite3_result_blob(ctx, outdata, n, sqlite3_free);
return;
}
sqlite3_result_null(ctx);
sqlite3_free(outdata);
}
typedef struct {
sqlite3_context *ctx;
sqlite3_value *value;
sqlite_int64 count;
} rownumber_ctx;
static void
rownumber_func(sqlite3_context *ctx, int nargs, sqlite3_value **args)
{
rownumber_ctx *rn = sqlite3_get_auxdata(ctx, 0);
if (!rn || rn->ctx != ctx || rn->value != args[0]) {
rn = sqlite3_malloc(sizeof (*rn));
if (rn) {
rn->ctx = ctx;
rn->value = args[0];
rn->count = 0;
}
sqlite3_set_auxdata(ctx, 0, rn, sqlite3_free);
} else {
rn->count++;
}
sqlite3_result_int64(ctx, rn ? rn->count : 0);
}
#ifndef STANDALONE
static
#endif
int
b2xy_init(sqlite3 *db)
{
sqlite3_create_function(db, "subblob", -1, SQLITE_ANY, (void *) 0,
subblob_func, 0, 0);
sqlite3_create_function(db, "tk_path_from_blob", -1, SQLITE_UTF8,
PATH_MODE_TK, common_path_func, 0, 0);
sqlite3_create_function(db, "svg_path_from_blob", -1, SQLITE_UTF8,
PATH_MODE_SVG, common_path_func, 0, 0);
sqlite3_create_function(db, "blt_vec_x", -1, SQLITE_UTF8,
PATH_MODE_BLT_X, common_path_func, 0, 0);
sqlite3_create_function(db, "blt_vec_y", -1, SQLITE_UTF8,
PATH_MODE_BLT_Y, common_path_func, 0, 0);
sqlite3_create_function(db, "tk3d_path_from_blob", -1, SQLITE_UTF8,
PATH_MODE_TK3D, common_path_func, 0, 0);
sqlite3_create_function(db, "tk_path", -1, SQLITE_ANY, PATH_MODE_TK,
0, common_path_step, common_path_finalize);
sqlite3_create_function(db, "svg_path", -1, SQLITE_ANY, PATH_MODE_SVG,
0, common_path_step, common_path_finalize);
sqlite3_create_function(db, "blt_vec", -1, SQLITE_ANY, PATH_MODE_BLT,
0, blt_vec_step, common_path_finalize);
sqlite3_create_function(db, "tk3d_path", -1, SQLITE_ANY, PATH_MODE_TK3D,
0, common_path_step, common_path_finalize);
sqlite3_create_function(db, "rownumber", 1, SQLITE_ANY, 0,
rownumber_func, 0, 0);
return sqlite3_create_module(db, "blobtoxy", &b2xy_module, 0);
}
#ifndef STANDALONE
int
sqlite3_extension_init(sqlite3 *db, char **errmsg,
const sqlite3_api_routines *api)
{
SQLITE_EXTENSION_INIT2(api);
return b2xy_init(db);
}
#endif
|