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
|
/*
'search' for cadaver
Copyright (C) 2004-2006, Joe Orton <joe@manyfish.co.uk>
Copyright (C) 2002, GRASE Lab, UCSC <grase@cse.ucsc.edu>,
except where otherwise indicated.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include "config.h"
#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif
#ifdef HAVE_STRING_H
#include <string.h>
#endif
#include <time.h>
#include <ne_basic.h>
#include <ne_request.h>
#include <ne_props.h>
#include <ne_uri.h>
#include <ne_alloc.h>
#include <ne_dates.h>
#include "i18n.h"
#include "commands.h"
#include "cadaver.h"
#include "basename.h"
#include "options.h"
#include "utils.h"
/* From ne_props.c
* Need to move util.c or something? */
#define NSPACE(x) ((x) ? (x) : "")
/*
* The Macro definations that 'wordtype' might be.
*/
#define QUOT 101 /*''' */
#define COMMA 102 /*',' */
#define LPAR 103 /*'(' */
#define RPAR 104 /*')' */
#define EQ 105 /*'=' */
#define LE 106 /*'<=' */
#define LT 107 /*'<' */
#define GE 108 /*'>=' */
#define GT 109 /*'>' */
#define NEQ 110 /*'<>' */
#define IDEN 111 /*Integer */
#define INTEGER 112 /*identifier */
#define UNKNOWN 113 /*unknown charactor */
#define ENDBUF 114 /*End of the buffer */
#define WORDLEN 256 /*Max length of a identifier(token) in the search command */
#undef EOL
#define EOL "\n"
/* Dead prop */
typedef struct dead_prop
{
char *name;
char *nspace;
char *value;
struct dead_prop *next;
}
dead_prop;
typedef struct search_res
{
char *href;
/* live props */
char *creationdate;
char *displayname;
char *getcontentlanguage;
char *getcontentlength;
char *getcontenttype;
char *getetag;
char *getlastmodified;
char *lockdiscovery;
char *resourcetype;
char *source;
char *supportedlock;
char *collection;
dead_prop *root;
dead_prop *curr;
int dead_prop_num;
struct search_res *next;
}
search_res;
/* Search XML parser context */
typedef struct
{
search_res *root;
search_res *curr;
int result_num;
int start_prop;
int err_code;
ne_buffer *cdata;
}
search_ctx;
enum
{
ELEM_multistatus = 1,
ELEM_response,
ELEM_href,
ELEM_prop,
ELEM_propstat,
ELEM_status,
ELEM_responsedescription,
/* props from RFC 2518 , 23 Appendices 23.1 */
ELEM_creationdate,
ELEM_displayname,
ELEM_getcontentlanguage,
ELEM_getcontentlength,
ELEM_getcontenttype,
ELEM_getetag,
ELEM_getlastmodified,
ELEM_lockdiscovery,
ELEM_resourcetype,
ELEM_source,
ELEM_supportedlock,
ELEM_collection,
ELEM_ignore
};
static const struct ne_xml_idmap search_elements[] = {
{"DAV:", "multistatus", ELEM_multistatus},
{"DAV:", "response", ELEM_response},
{"DAV:", "responsedescription", ELEM_responsedescription},
{"DAV:", "href", ELEM_href},
{"DAV:", "propstat", ELEM_propstat},
{"DAV:", "prop", ELEM_prop},
{"DAV:", "status", ELEM_status},
/* Live props */
{"DAV:", "creationdate", ELEM_creationdate},
{"DAV:", "displayname", ELEM_displayname},
{"DAV:", "getcontentlanguage", ELEM_getcontentlanguage},
{"DAV:", "getcontentlength", ELEM_getcontentlength},
{"DAV:", "getcontenttype", ELEM_getcontenttype},
{"DAV:", "getetag", ELEM_getetag},
{"DAV:", "getlastmodified", ELEM_getlastmodified},
{"DAV:", "lockdiscovery", ELEM_lockdiscovery},
{"DAV:", "resourcetype", ELEM_resourcetype},
{"DAV:", "source", ELEM_source},
{"DAV:", "supportedlock", ELEM_supportedlock},
{"DAV:", "collection", ELEM_collection},
/* Ignore it for now */
{"DAV:", "lockentry", ELEM_ignore},
{"DAV:", "lockscope", ELEM_ignore},
{"DAV:", "locktype", ELEM_ignore},
{"DAV:", "exclusive", ELEM_ignore},
{"DAV:", "shared", ELEM_ignore},
{"DAV:", "read", ELEM_ignore},
{"DAV:", "write", ELEM_ignore},
};
/*
* Basic search parser functions
* return NE_OK or error_no
* basic_search must be allcated before the function call.
*/
static int search_select_gen(const ne_propname * props,
ne_buffer * basic_search);
static int search_from_gen(const char *href, const int depth,
ne_buffer * basic_search);
static int search_where_gen(const char *query, ne_buffer * basic_search);
static int search_orderby_gen(const ne_propname * asc,
const ne_propname * des,
ne_buffer * basic_search);
/*
* Static functions for where condition parser
*/
static int read_aword(char **string_parsed, char *word_fetched);
static int first_word_equal(const char *string_parsed,
const char *word_to_compare);
static int match_fetch(char **string_parsed, const char *str_expected);
static int search_condition(char **string_parsed, ne_buffer * result_buf);
static int boolean_term(char **strparsed, ne_buffer * result_buf);
static int boolean_factor(char **string_parsed, ne_buffer * result_buf);
static int boolean_primary(char **string_parsed, ne_buffer * result_buf);
static int operator_translate(const char *operator, char *XML_operator);
static int predicate(char **string_parsed, ne_buffer * result_buf);
static int contains_predicate(char **string_parsed, ne_buffer * result_buf);
static int quoted_string(char **string_parsed, ne_buffer * result_buf);
static int comparison_value(char **string_parsed, ne_buffer * result_buf);
static int word_string(char **string_parsed, ne_buffer * result_buf);
/* Set xml parser error */
static void set_xml_error(search_ctx *sctx, const char *format, ...)
{
va_list ap;
char buf[512];
va_start(ap, format);
ne_vsnprintf(buf, sizeof buf, format, ap);
va_end(ap);
ne_set_error(session.sess, "%s", buf);
sctx->err_code = NE_ERROR;
}
static int start_element(void *userdata, int parent,
const char *nspace,
const char *name,
const char **atts)
{
search_ctx *sctx = (search_ctx *) userdata;
int state = ne_xml_mapid(search_elements,
NE_XML_MAPLEN(search_elements), nspace, name);
/* Error occured, ignore remain part */
if (sctx->err_code != NE_OK)
return sctx->err_code;
ne_buffer_clear(sctx->cdata);
switch (state) {
case ELEM_ignore:
break;
case ELEM_response: /* Start of new response */
sctx->curr = ne_calloc(sizeof(search_res));
sctx->result_num++;
break;
case ELEM_href: /* href */
break;
case ELEM_propstat: /* expecting props */
break;
case ELEM_prop: /* Start of prop */
if (sctx->curr == NULL) {
set_xml_error(sctx, "XML : <%s> is in the wrong place",
name);
break;
}
sctx->start_prop = 1;
break;
default:
if (get_bool_option(opt_searchall) && /* check searchall option */
sctx->curr && sctx->start_prop == 1) { /* It's prop */
search_res *res = sctx->curr;
res->dead_prop_num++;
res->curr = (dead_prop *) ne_calloc(sizeof(dead_prop));
res->curr->name = ne_strdup(name);
res->curr->nspace = ne_strdup(nspace);
}
break;
}
return state;
}
#define SEARCH_CP_ELEM(sctx, curr, name, desc, src) \
do { \
if ((curr) == NULL) \
set_xml_error((sctx), "XML : </%s> is in the wrong place", (name));\
else if (src)\
(desc) = ne_strdup(src);\
} while (0)
static int cdata_search(void *userdata, int state, const char *buf, size_t len)
{
search_ctx *sctx = (search_ctx *) userdata;
ne_buffer_append(sctx->cdata, buf, len);
return 0;
}
static int
end_element(void *userdata, int state, const char *nspace, const char *name)
{
search_ctx *sctx = (search_ctx *) userdata;
const char *cdata = sctx->cdata->data;
/* Error occured, ignore remain part */
if (sctx->err_code != NE_OK)
return sctx->err_code;
switch (state) {
case ELEM_ignore:
break;
case ELEM_response: /* End of new response */
/* Nothing to add */
if (sctx->curr == NULL) {
set_xml_error(sctx, "XML : </%s> is in the wrong place",
name);
break;
}
/* No HREF */
if (sctx->curr->href == NULL) {
set_xml_error(sctx, "XML : No href info in the <%s>...</%s>",
name, name);
break;
}
/* make link */
sctx->curr->next = sctx->root;
sctx->root = sctx->curr;
sctx->curr = NULL;
break;
case ELEM_href: /* href */
SEARCH_CP_ELEM(sctx, sctx->curr, name, sctx->curr->href, cdata);
break;
/* live props */
case ELEM_creationdate:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->creationdate, cdata);
break;
case ELEM_displayname:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->displayname, cdata);
break;
case ELEM_getcontentlanguage:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->getcontentlanguage, cdata);
break;
case ELEM_getcontentlength:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->getcontentlength, cdata);
break;
case ELEM_getcontenttype:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->getcontenttype, cdata);
break;
case ELEM_getetag:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->getetag, cdata);
break;
case ELEM_getlastmodified:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->getlastmodified, cdata);
break;
case ELEM_lockdiscovery:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->lockdiscovery, cdata);
break;
case ELEM_resourcetype:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->resourcetype, cdata);
break;
case ELEM_source:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->source, cdata);
break;
case ELEM_supportedlock:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->supportedlock, cdata);
break;
case ELEM_collection:
SEARCH_CP_ELEM(sctx, sctx->curr, name,
sctx->curr->collection, cdata);
break;
case ELEM_propstat: /* expecting props */
break;
case ELEM_prop: /* Start of prop */
if (sctx->curr == NULL)
set_xml_error(sctx, "XML : </%s> is in the wrong place",
name);
else /* stop to props */
sctx->start_prop = 0;
break;
default:
if (get_bool_option(opt_searchall) && /* check searchall option */
sctx->curr && sctx->start_prop == 1) { /* It's dead prop */
search_res *res = sctx->curr;
res->curr->value = ne_strdup(cdata);
res->curr->next = res->root;
res->root = res->curr;
res->curr = NULL;
}
break;
}
return NE_OK;
}
#define RESULT_PER_PAGE 15
/* displays search results */
static int display_results(search_ctx * sctx)
{
search_res *res;
dead_prop *dprop;
int i;
if (sctx->err_code) {
return sctx->err_code;
}
for (i=1, res = sctx->root; res; res = res->next, i++) {
long modtime = res->getlastmodified ?
ne_httpdate_parse(res->getlastmodified) : 0;
int size = res->getcontentlength ? atol(res->getcontentlength) : 0;
char exec_char = ' ';
if (i%RESULT_PER_PAGE ==1) {
printf("Found %d results (%d-%d)\n\n",
sctx->result_num, i,
sctx->result_num<i+9?sctx->result_num:i+9);
}
printf("[%d] %-40s%c %10d %s <%.10s>\n", i, res->href, exec_char,
size, format_time(modtime),
res->getcontenttype?res->getcontenttype:"");
for (dprop = res->root;
get_bool_option(opt_searchall) && dprop; dprop = dprop->next)
printf("\t- %s:%s = %s\n", /* better way to show ? */
dprop->nspace, dprop->name, dprop->value);
if (i%RESULT_PER_PAGE == 0) {
char buf[256];
printf("-- Enter to More, 'q' to QUIT --");
fgets(buf, 255, stdin);
if (*buf=='q') break;
}
}
return sctx->err_code;
}
static void search_ctx_destroy(search_ctx * sctx)
{
search_res *res, *res_free;
dead_prop *dprop, *dprop_free;
ne_buffer_destroy(sctx->cdata);
for (res = sctx->root; res;) {
if (res->href) ne_free(res->href);
/* live props */
if (res->creationdate) ne_free(res->creationdate);
if (res->displayname) ne_free(res->displayname);
if (res->getcontentlanguage) ne_free(res->getcontentlanguage);
if (res->getcontentlength) ne_free(res->getcontentlength);
if (res->getcontenttype) ne_free(res->getcontenttype);
if (res->getetag) ne_free(res->getetag);
if (res->getlastmodified) ne_free(res->getlastmodified);
if (res->lockdiscovery) ne_free(res->lockdiscovery);
if (res->resourcetype) ne_free(res->resourcetype);
if (res->source) ne_free(res->source);
if (res->supportedlock) ne_free(res->supportedlock);
if (res->collection) ne_free(res->collection);
for (dprop = res->root; dprop;) {
if (dprop->nspace) ne_free(dprop->nspace);
if (dprop->name) ne_free(dprop->name);
if (dprop->value) ne_free(dprop->value);
dprop_free = dprop;
dprop = dprop->next;
ne_free(dprop_free);
}
res_free = res;
res = res->next;
ne_free(res_free);
}
}
/* create propname struct from searchorder setting */
static ne_propname *order_props_create(const char *str)
{
int n;
char *buf;
char *tok;
char *delm = " \t\n\r";
int num_props = 0;
ne_propname *props;
/* No props */
if (str == NULL)
return NULL;
buf = ne_strdup(str);
if (strtok(buf, delm)) {
num_props = 1;
while (strtok(NULL, delm))
num_props++;
}
/* No props */
if (num_props == 0)
return NULL;
/* One more for last NULL */
props = ne_calloc(sizeof(ne_propname) * (num_props + 1));
/* Set first token */
ne_free(buf);
buf = ne_strdup(str);
tok = strtok(buf, delm);
/* Other idea? */
props[0].nspace = ne_strdup("DAV:");
props[0].name = ne_strdup(tok);
for (n = 1; (tok = strtok(NULL, delm)); n++) {
props[n].nspace = ne_strdup("DAV:");
props[n].name = ne_strdup(tok);
}
ne_free(buf);
return props;
}
static void order_props_destroy(ne_propname * props)
{
int n;
if (props == NULL)
return;
for (n = 0; props[n].name != NULL; n++) {
free((char *)props[n].name);
free((char *)props[n].nspace);
}
free(props);
props = NULL;
}
/* Run search and get the data to sctx */
static int run_search(ne_session * sess, const char *uri,
int depth, ne_buffer * query, search_ctx * sctx)
{
int ret;
ne_request *req;
ne_buffer *basic_search = ne_buffer_create();
ne_xml_parser *search_parser;
const char *searchorder = (const char *) get_option(opt_searchorder);
const char *searchdorder = (const char *) get_option(opt_searchdorder);
ne_propname *asc = order_props_create(searchorder);
ne_propname *des = order_props_create(searchdorder);
/* create/prep the request */
if ((req = ne_request_create(sess, "SEARCH", uri)) == NULL)
return NE_ERROR;
/* Create the request body */
ne_buffer_zappend(basic_search,
"<?xml version=\"1.0\" encoding=\"utf-8\" ?>" EOL
"<D:searchrequest xmlns:D=\"DAV:\"><D:basicsearch>"
EOL);
if (search_select_gen(NULL, basic_search) != NE_OK)
return NE_ERROR;
if (search_from_gen(uri, depth, basic_search) != NE_OK)
return NE_ERROR;
if (search_where_gen(query->data, basic_search) != NE_OK)
return NE_ERROR;
if (search_orderby_gen(asc, des, basic_search) != NE_OK)
return NE_ERROR;
ne_buffer_zappend(basic_search, "</D:basicsearch></D:searchrequest>" EOL);
ne_set_request_body_buffer(req, basic_search->data,
ne_buffer_size(basic_search));
/* Plug our XML parser */
search_parser = ne_xml_create();
ne_xml_push_handler(search_parser, start_element,
cdata_search, end_element,
sctx);
ne_add_request_header(req, "Content-Type", NE_XML_MEDIA_TYPE);
ne_add_depth_header(req, depth);
ne_add_response_body_reader(req, ne_accept_207, ne_xml_parse_v,
search_parser);
/* run the request, see what comes back. */
if ((ret = ne_request_dispatch(req)) != NE_OK)
return ret;
/* Check Errors from XML parser */
if (sctx->err_code != NE_OK)
return NE_ERROR;
/* Get response code */
if (ne_get_status(req)->code != 207)
return NE_ERROR;
/* destroy request, parse, and etc */
order_props_destroy(asc);
order_props_destroy(des);
ne_buffer_destroy(basic_search);
ne_request_destroy(req);
ne_xml_destroy(search_parser);
return NE_OK;
}
/* Main execute routine for search */
void execute_search(int count, const char **args)
{
int ret;
const char **pnt;
ne_buffer *query = ne_buffer_create();
search_ctx *sctx = ne_calloc(sizeof(search_ctx));
sctx->cdata = ne_buffer_create();
/* default is success */
sctx->err_code = NE_OK;
for (pnt = args; *pnt != NULL; pnt++) {
/* Need quota */
if (strchr(*pnt, ' ') || strchr(*pnt, '\t'))
ne_buffer_concat(query, "'", *pnt, "' ", NULL);
else
ne_buffer_concat(query, *pnt, " ", NULL);
}
printf(_("Using query: "));
printf("%s, ", query->data);
/* Run search and get data to sctx */
ret = run_search(session.sess, session.uri.path, searchdepth, query, sctx);
if (ret == NE_OK) {
display_results(sctx);
}
out_result(ret);
search_ctx_destroy(sctx);
ne_buffer_destroy(query);
}
/* Generate select part of the query. allprop if the props arg is NULL. */
static int search_select_gen(const ne_propname * props,
ne_buffer * basic_search)
{
int n;
if (!basic_search) {
ne_set_error(session.sess, "select_gen: no buffer");
return NE_ERROR;
}
if (props == NULL) {
ne_buffer_zappend(basic_search,
"<D:select><D:allprop/></D:select>" EOL);
return NE_OK;
}
ne_buffer_zappend(basic_search, "<D:select><D:prop>" EOL);
for (n = 0; props[n].name != NULL; n++) {
ne_buffer_concat(basic_search, "<", props[n].name, " xmlns=\"",
NSPACE(props[n].nspace), "\"/>" EOL, NULL);
}
ne_buffer_zappend(basic_search, "</D:prop></D:select>" EOL);
return NE_OK;
}
static int search_from_gen(const char *href, const int depth,
ne_buffer * basic_search)
{
const char *depth_str;
if (!basic_search || !href) {
ne_set_error(session.sess, "from_gen: no buffer or no href");
return NE_ERROR;
}
switch (depth) {
case NE_DEPTH_ONE:
depth_str = "1";
break;
case NE_DEPTH_ZERO:
depth_str = "0";
break;
default:
depth_str = "infinity";
break;
}
ne_buffer_concat(basic_search, "<D:from><D:scope><D:href>",
href, "</D:href><D:depth>", depth_str,
"</D:depth></D:scope></D:from>" EOL, NULL);
return NE_OK;
}
/* Parse a searchquery. It will call the search_condition() function and
* check the ending status. If the ending status is not ENDBUF, then there will
* be a syntax error.
* The parsing result will be saved in 'result_buf'.
*
* Returns:
* NE_OK: success
* NE_ERROR: syntax error
* */
static int search_where_gen(const char *condition_str,
ne_buffer * basic_search)
{
char identifier[WORDLEN + 1] = "";
char *string_parsed = ne_strdup(condition_str);
char *ptr_backup = string_parsed;
/* The buffer storing the parsing result of search condition */
ne_buffer *result_buf;
if (!basic_search || !condition_str) {
ne_set_error(session.sess, "where_gen: no buffer or no query");
return NE_ERROR;
}
result_buf = ne_buffer_create();
/* Fill boby from <D:where> to </D:where> */
ne_buffer_zappend(basic_search, "<D:where>" EOL);
if (search_condition(&string_parsed, result_buf) == NE_ERROR) {
ne_free(ptr_backup);
ne_buffer_destroy(result_buf);
return NE_ERROR; /*Parsing error */
}
/*The ending of a condition must be an ENDBUF */
if (read_aword(&string_parsed, identifier) != ENDBUF) {
ne_set_error(session.sess, "Syntax error in the search condition.");
ne_free(ptr_backup);
ne_buffer_destroy(result_buf);
return NE_ERROR;
}
/*Append the parsing result of the search condition */
ne_buffer_zappend(basic_search, result_buf->data);
ne_buffer_zappend(basic_search, "</D:where>" EOL);
ne_free(ptr_backup);
ne_buffer_destroy(result_buf);
return NE_OK;
} /*End of ne_search_where_gen */
static int search_orderby_gen(const ne_propname * asc,
const ne_propname * des,
ne_buffer * basic_search)
{
int n;
if (!basic_search) {
ne_set_error(session.sess, "orderby_gen: no buffer or no query");
return NE_ERROR;
}
/* No order information */
if (asc == NULL && des == NULL)
return NE_OK;
ne_buffer_zappend(basic_search, "<D:orderby>" EOL);
for (n = 0; asc && asc[n].name != NULL; n++) {
ne_buffer_zappend(basic_search, "<D:order><D:prop>" EOL);
ne_buffer_concat(basic_search, "<", asc[n].name, " xmlns=\"",
NSPACE(asc[n].nspace), "\"/>" EOL, NULL);
ne_buffer_zappend(basic_search,
"</D:prop><D:ascending/></D:order>" EOL);
}
for (n = 0; des && des[n].name != NULL; n++) {
ne_buffer_zappend(basic_search, "<D:order><D:prop>" EOL);
ne_buffer_concat(basic_search, "<", des[n].name, " xmlns=\"",
NSPACE(des[n].nspace), "\"/>" EOL, NULL);
ne_buffer_zappend(basic_search,
"</D:prop><D:descending/></D:order>" EOL);
}
ne_buffer_zappend(basic_search, "</D:orderby>" EOL);
return NE_OK;
}
/* Search command parser
*
* This is the Search command parser implementation.
* The goal of this code is to translate
* dasl search command into XML format.
*
* The user interface of search command is:
* search resource_URI display_fields condition orderby
*
* This code will parse the three parts of the search command,
* dispolay_fields,
*
* condition and orderby, and translate them into XML, which is a part of a
* dasl request.
*
* The BNF of display_fields, condition and orderby is as below:
*
*<display_fields> ::= identifier {,identifier}
*<orderby clause> ::= identifier ["asc"|"desc"] {,identifier ["asc"|"desc"]}
*
*<search condition> ::= <boolean term> | <search condition> " or " <boolean term>
*<boolean term> ::= <boolean factor> | <boolean term> " and " <boolean factor>
*<boolean factor> ::= [not] <boolean primary>
*<boolean primary> ::= <predicate>|"("<search condition>")"
*<predicate> ::= <comparison predicate>|<like predicate>|<isdefined predicate>
*<comparison predicate> ::= <column_name> <comparaison_op>
* ( <number> | <quoted_string> | <wordstring>)
*<like predicate> ::= <column_name> like <quoted_string> -----Formally,
* [not] like match_string
*<contains predicate> ::= contains (<quoted_string> | <wordstring>)
*<column_name>
* ::= identifier
*<comparaison_op>
* ::= "=" | "<" | ">" | "<>" | "!=" | "<=" | ">="
*<quoted_string> ::= "'" {<any_character>} "'"
*<wordstring> ::= <any char except for blank, tab and ')'>{<any_character except for blank, tab and ')'>}
*<match_string>
* ::= "'" { <any_character> | "_" | "%" } "'"
*<identifier> ::= <letter> { <letter>|<digital>|<underline>}
*<number> ::= [+|-]<digital>{<digital>}
*/
/* Read a word from the buffer. The word is fetched into 'word_fetched'.
* Every time a word is read, '*string_parsed' is changed to the pointer
* pointing to the char just after 'word_fetched'.
*
* Parameters:
* string_parsed: -- *string_parsed points to the buffer. '*string_parsed'
* will be changed every time a word is fetched.
* word_fetched: -- The word that is fetched.
* Returns:
* ENDBUF , if the end of buffer, '\0', has been reached.
* UNKNOWN, if the word is invalid.
* According word type, if the word is valid.
* */
static int read_aword(char **string_parsed, char *word_fetched)
{
int i = 0;
int ifetch = 0;
char *stringptr = *string_parsed;
word_fetched[0] = '\0';
/*Find the left bound of a word */
while (isspace(stringptr[i]))
i++;
if (stringptr[i] == '\0')
return ENDBUF;
/*
* Check whether the next word is a identifier. An identifier may
* be a keyword or a column name.
*/
if (isalpha(stringptr[i])) {
do {
word_fetched[ifetch++] = stringptr[i++];
} while (isalnum(stringptr[i]) || (stringptr[i] == '_'));
*string_parsed = *string_parsed + i;
word_fetched[ifetch] = '\0';
return IDEN; /*Identifier */
}
/* Check whether the next word is an integer */
/* A problem here: + , or - !!!!! PK */
if (stringptr[i] == '+' || stringptr[i] == '-' || isdigit(stringptr[i])) {
do {
word_fetched[ifetch++] = stringptr[i++];
} while (isdigit(stringptr[i]));
*string_parsed = *string_parsed + i;
word_fetched[ifetch] = '\0';
return INTEGER; /*Identifier */
}
/* Check whether the next word is "<=", ">=", or "<>" */
if ((stringptr[i] == '>') && (stringptr[i + 1] == '=')) {
strcpy(word_fetched, ">=");
*string_parsed = *string_parsed + i + 2;
return GE; /*Indicates >= */
}
if ((stringptr[i] == '<') && (stringptr[i + 1] == '=')) {
strcpy(word_fetched, "<=");
*string_parsed = *string_parsed + i + 2;
return LE; /*Indicates <= */
}
if ((stringptr[i] == '<') && (stringptr[i + 1] == '>')) {
strcpy(word_fetched, "<>");
*string_parsed = *string_parsed + i + 2;
return NEQ; /*Indicates <> */
}
/*Check whether the next word is "'", ",", "(", ")", ">",
* "<", "=", */
switch (stringptr[i]) {
case '\'':
strcpy(word_fetched, "'");
*string_parsed = *string_parsed + i + 1;
return QUOT;
case ',':
strcpy(word_fetched, ",");
*string_parsed = *string_parsed + i + 1;
return COMMA;
case '(':
strcpy(word_fetched, "(");
*string_parsed = *string_parsed + i + 1;
return LPAR;
case ')':
strcpy(word_fetched, ")");
*string_parsed = *string_parsed + i + 1;
return RPAR;
case '>':
strcpy(word_fetched, ">");
*string_parsed = *string_parsed + i + 1;
return GT;
case '<':
strcpy(word_fetched, "<");
*string_parsed = *string_parsed + i + 1;
return LT;
case '=':
strcpy(word_fetched, "=");
*string_parsed = *string_parsed + i + 1;
return EQ;
default:
word_fetched[0] = stringptr[i];
word_fetched[1] = '\0';
*string_parsed = *string_parsed + i + 1;
return UNKNOWN;
} /*End of switch */
} /*End of read_aword */
/*Read the first word from the string buffer, string_parsed. If the
* first is equal to the 'word_to_compare', return 1, else return 0.
* The first word will be saved to 'the_first_word', but the pointer
* to the buffer, string_parsed, will not be changed.
* Returns:
* 1: The first word is equal to the word expected.
* 0: otherwise
* */
static int first_word_equal(const char *string_parsed,
const char *word_to_compare)
{
char *string_buffer = NULL;
char *ptr_backup = NULL;
char first_word[WORDLEN + 1] = "";
string_buffer = ne_strdup(string_parsed);
ptr_backup = string_buffer;
read_aword(&string_buffer, first_word);
ne_free(ptr_backup);
if (strcasecmp(first_word, word_to_compare) == 0)
return 1; /*equal */
else
return 0; /*Not equal */
} /*End of first_word_compare */
/*Read the first word from the string buffer, string_parsed. If the
* first is an interger, return 1, else return 0.
* The first word will be saved to 'the_first_word', but the pointer
* to the buffer, string_parsed, will not be changed.
* Returns:
* 1: The first word is equal to the word expected.
* 0: otherwise
* */
static int first_word_integer(const char *string_parsed)
{
char *string_buffer = NULL;
char *ptr_backup = NULL;
char first_word[WORDLEN + 1] = "";
int ret;
string_buffer = ne_strdup(string_parsed);
ptr_backup = string_buffer;
if (read_aword(&string_buffer, first_word) == INTEGER)
ret = 1;
else
ret = 0;
ne_free(ptr_backup);
return ret;
} /*End of first_word_compare */
/* The function reads the first word in the string buffer, *string_parsed, and
* changes *string_parsed.
* Returns:
* NE_ERROR: If the word read is equal to 'str_expected'.
* NE_OK: Otherwise
* */
static int match_fetch(char **string_parsed, const char *str_expected)
{
char first_word[WORDLEN + 1] = "";
read_aword(string_parsed, first_word);
if (strcmp(first_word, str_expected) == 0)
return NE_OK;
else
return NE_ERROR;
} /*End of match_fetch */
/*
* Parse the search condition
* <search condition> ::= <boolean term> | <search condition> or <boolean term>
*
* The parsing result is saved into result_buf.
* '*string_parsed' is changed to the pointer pointing to the position after
* <search condition>.
* Returns:
* NE_OK: success
* NE_ERROR: syntax error
* */
static int search_condition(char **string_parsed, ne_buffer * result_buf)
{
char identifier[WORDLEN + 1] = "";
/* Indicates whether there is any 'or' in the search condition */
int added_or = 0;
ne_buffer *term_result;
ne_buffer_clear(result_buf);
term_result = ne_buffer_create();
if (boolean_term(string_parsed, term_result) == NE_ERROR) {
ne_buffer_destroy(term_result); /*Free the buffer */
return NE_ERROR; /*parsing error */
}
if (first_word_equal(*string_parsed, "or") == 1) {
added_or = 1;
ne_buffer_concat(result_buf, "<D:or>" EOL, term_result->data, NULL);
}
else
ne_buffer_zappend(result_buf, term_result->data);
/*For or <boolean term> or <boolean term> ... */
while (first_word_equal(*string_parsed, "or") == 1) {
read_aword(string_parsed, identifier); /*Read 'or' */
if (boolean_term(string_parsed, term_result) == NE_ERROR) {
ne_buffer_destroy(term_result); /*Free the buffer */
return NE_ERROR; /*Parsing error */
}
ne_buffer_zappend(result_buf, term_result->data);
} /*End of while */
if (added_or == 1)
ne_buffer_zappend(result_buf, "</D:or>" EOL);
ne_buffer_destroy(term_result); /*Free the buffer */
return NE_OK; /*success */
} /*End of search_condition */
/*
* Parse a boolean term.
* <boolean term> ::= <boolean factor> | <boolean term> and <boolean factor>
*
* The parsing result is saved into result_buf.
* '*string_parsed' is changed to the pointer pointing to the position after
* <boolean term>.
*
* Returns:
* NE_OK: success
* NE_ERROR: syntax error
*/
static int boolean_term(char **string_parsed, ne_buffer * result_buf)
{
char identifier[WORDLEN + 1] = "";
/*Indicates whether there is any 'and' in the boolean term. */
int added_and = 0;
ne_buffer *factor_result;
ne_buffer_clear(result_buf);
factor_result = ne_buffer_create();
if (boolean_factor(string_parsed, factor_result) == NE_ERROR) {
ne_buffer_destroy(factor_result);
return NE_ERROR; /*parsing error */
}
if (first_word_equal(*string_parsed, "and") == 1) {
added_and = 1;
ne_buffer_concat(result_buf, "<D:and>" EOL, factor_result->data,
NULL);
}
else
ne_buffer_zappend(result_buf, factor_result->data);
while (first_word_equal(*string_parsed, "and") == 1) {
read_aword(string_parsed, identifier); /*Read 'and' */
if (boolean_factor(string_parsed, factor_result) == NE_ERROR) {
ne_buffer_destroy(factor_result);
return NE_ERROR; /*Parsing error */
}
ne_buffer_zappend(result_buf, factor_result->data);
} /*End of while */
if (added_and == 1)
ne_buffer_zappend(result_buf, "</D:and>" EOL);
ne_buffer_destroy(factor_result);
return NE_OK; /*success */
} /*End of boolean_term */
/*
* Parse a boolean factor.
* <boolean factor> ::= [not] <boolean primary>
*
* The parsing result is saved into result_buf.
* '*string_parsed' is changed to the pointer pointing to the position after
* <boolean factor>.
*
* Returns:
* NE_OK: success
* NE_ERROR: syntax error
*/
static int boolean_factor(char **string_parsed, ne_buffer * result_buf)
{
char identifier[WORDLEN + 1] = "";
int added_not = 0; /*Indicates whether there is any 'not'
in the search condition */
ne_buffer *boolean_primary_result;
ne_buffer_clear(result_buf);
boolean_primary_result = ne_buffer_create();
if (first_word_equal(*string_parsed, "not") == 1) {
read_aword(string_parsed, identifier); /*Read "not" */
ne_buffer_zappend(result_buf, "<D:not>" EOL);
added_not = 1;
}
if (boolean_primary(string_parsed, boolean_primary_result) == NE_ERROR) {
ne_buffer_destroy(boolean_primary_result);
return NE_ERROR; /*parsing error */
}
ne_buffer_zappend(result_buf, boolean_primary_result->data);
if (added_not == 1)
ne_buffer_zappend(result_buf, "</D:not>" EOL);
ne_buffer_destroy(boolean_primary_result);
return NE_OK; /*success */
} /*End of boolean_factor */
/*
* Parse a boolean primary.
* <boolean primary> ::= <predicate> | "("<search condition>")"
*
* The parsing result is saved into result_buf.
* '*string_parsed' is changed to the pointer pointing to the position after
* <boolean primary>.
*
* Returns:
* NE_OK: success
* NE_ERROR: syntax error
*/
static int boolean_primary(char **string_parsed, ne_buffer * result_buf)
{
char identifier[WORDLEN + 1] = "";
ne_buffer *sub_result;
ne_buffer_clear(result_buf);
sub_result = ne_buffer_create();
if (first_word_equal(*string_parsed, "(") == 1) {
/*It is the case of "("<search condition>")" */
read_aword(string_parsed, identifier); /*Read "(" */
if (search_condition(string_parsed, sub_result) == NE_ERROR) {
ne_buffer_destroy(sub_result);
return NE_ERROR; /*Parsing error */
}
/*Read and match ")" */
if (match_fetch(string_parsed, ")") == NE_ERROR) {
ne_set_error(session.sess,
"Syntax error: A ')' is expected in the search condition.");
ne_buffer_destroy(sub_result);
return NE_ERROR; /*parsing error */
}
ne_buffer_zappend(result_buf, sub_result->data);
}
else { /*It is the case of <predicate> */
if (predicate(string_parsed, sub_result) == NE_ERROR) {
ne_buffer_destroy(sub_result);
return NE_ERROR; /*parsing error */
}
ne_buffer_zappend(result_buf, sub_result->data);
}
ne_buffer_destroy(sub_result);
return NE_OK; /*success */
} /*End of boolean_primary */
/*
* Translate comparison operator in the search condition to XML form.
* Returns:
* 1: if the operator is valid.
* 0: if the operator is not valid.
*/
static int operator_translate(const char *operator, char *XML_operator)
{
int operator_valid = 1;
XML_operator[0] = '\0';
if (strcmp(operator, "=") == 0)
strcpy(XML_operator, "eq");
else if (strcmp(operator, ">=") == 0)
strcpy(XML_operator, "gte");
else if (strcmp(operator, "<=") == 0)
strcpy(XML_operator, "lte");
else if (strcmp(operator, ">") == 0)
strcpy(XML_operator, "gt");
else if (strcmp(operator, "<") == 0)
strcpy(XML_operator, "lt");
else if (strcmp(operator, "!=") == 0)
strcpy(XML_operator, "not");
else if (strcmp(operator, "<>") == 0)
strcpy(XML_operator, "not");
else if (strcmp(operator, "like") == 0)
strcpy(XML_operator, "like");
else
operator_valid = 0; /*Invalid operator */
return operator_valid;
} /*End of operator_translate */
/*
* Parse a predicate.
* <predicate> ::= <comparison predicate> | <like predicate> | <contains predicate>
* <comparison predicate> ::= <column_name> <comparaison_op> ( <number> | <quoted_string> | <wordstring>)
* <like predicate> ::= <column_name> like <match_string>
* <contains predicate> ::= contains (<quoted_string> | <wordstring>)
* <comparaison_op>
* ::= "=" | "<" | ">" | "<>" | "!=" | "<=" | ">="
*
* The parsing result is saved into result_buf.
* '*string_parsed' is changed to the pointer pointing to the position after
* the predicate.
*
* Returns:
* NE_OK: success
* NE_ERROR: syntax error
*/
static int predicate(char **string_parsed, ne_buffer * result_buf)
{
char column_name[WORDLEN + 1] = "";
char operator[WORDLEN + 1] = "";
char XML_operator[WORDLEN + 1] = "";
ne_buffer *comparing_value;
ne_buffer_clear(result_buf);
if (first_word_equal(*string_parsed, "contains") == 1) {
/* It is the case of <contains predicate> */
ne_buffer *contains_result;
contains_result = ne_buffer_create();
if (contains_predicate(string_parsed, contains_result)
== NE_ERROR) {
ne_buffer_destroy(contains_result);
return NE_ERROR; /*Parsing error */
}
ne_buffer_zappend(result_buf, contains_result->data);
return NE_OK;
}
comparing_value = ne_buffer_create();
/*Read the column name */
if (read_aword(string_parsed, column_name) != IDEN) {
ne_set_error(session.sess,
"A column name is expected in the search condition.");
ne_buffer_destroy(comparing_value);
return NE_ERROR; /*Parsing error */
}
/*Read the 'operator' */
read_aword(string_parsed, operator);
/*Translate the operator to XML form */
if (operator_translate(operator, XML_operator) == 0) {
ne_set_error(session.sess,
"Syntax error: Invalid operator in the search condition.");
ne_buffer_destroy(comparing_value);
return NE_ERROR;
}
if (strcasecmp(operator, "like") == 0) {
/*It is the case of like predicate and then parse the match string */
if (first_word_equal(*string_parsed, "'")) {
/* For the case of a quoted string */
if (quoted_string(string_parsed, comparing_value) == NE_ERROR) {
ne_buffer_destroy(comparing_value);
return NE_ERROR; /*Parsing error */
}
}
else {
/* For the case of word string. */
if (word_string(string_parsed, comparing_value) == NE_ERROR) {
ne_set_error(session.sess,
"Syntax error: A quoted string or a word string is expected in the search condition.");
ne_buffer_destroy(comparing_value);
return NE_ERROR; /*Parsing error */
}
}
}
else {
/* It is the case of comparison predicate and then
* parse the comparison value */
if (comparison_value(string_parsed, comparing_value) == NE_ERROR) {
ne_buffer_destroy(comparing_value);
return NE_ERROR; /*parsing error */
}
}
ne_buffer_concat(result_buf, "<D:",
XML_operator,
">" EOL
"<D:prop><D:",
column_name,
"/></D:prop>" EOL
"<D:literal>",
comparing_value->data,
"</D:literal>" EOL "</D:", XML_operator, ">" EOL, NULL);
ne_buffer_destroy(comparing_value);
return NE_OK; /*success */
} /*End of predicate */
/*
* Parse a contains predicate.
* <contains predicate> ::= contains <quoted_string>
*
* The parsing result is saved into result_str.
* '*string_parsed' is changed to the pointer pointing to the position after
* the predicate.
*
* Returns:
* 1: success
* 0: syntax error
*/
int contains_predicate(char **string_parsed, ne_buffer * result_buf)
{
ne_buffer *contain_string;
ne_buffer_clear(result_buf);
contain_string = ne_buffer_create();
/*Read 'contains' */
if (match_fetch(string_parsed, "contains") == NE_ERROR) {
/*The case of <contains predicate> */
ne_set_error(session.sess,
"Syntax error: A 'contains' is expected in the search condition.");
ne_buffer_destroy(contain_string);
return NE_ERROR;
}
/*Now parse the containing string */
if (first_word_equal(*string_parsed, "'") == 1) {
/*For the case of <quoted string> */
if (quoted_string(string_parsed, contain_string) == NE_ERROR) {
ne_buffer_destroy(contain_string);
return NE_ERROR; /*Parsing error */
}
}
else {
/* For the case of <wordstring> */
if (word_string(string_parsed, contain_string) == NE_ERROR) {
ne_set_error(session.sess,
"Syntax error: A quoted string or a word string is expected in the search condition.");
ne_buffer_destroy(contain_string);
return NE_ERROR; /*Parsing error */
}
}
ne_buffer_concat(result_buf, "<D:contains>" EOL,
contain_string->data, "</D:contains>" EOL, NULL);
return NE_OK; /*success */
} /*End of contains_predicate */
/*
* Parse a quoted string.
* <quoted_string> ::= "'" {<any_character>} "'"
*
* The parsing result is saved into result_buf.
* '*string_parsed' is changed to the pointer pointing to the position after
* the predicate.
*
* Returns:
* 1: success
* 0: syntax error
*/
static int quoted_string(char **string_parsed, ne_buffer * result_buf)
{
char previous_char;
char current_char;
char tmp_str[2] = "";
int i = 0;
ne_buffer_clear(result_buf);
/*Read a quotation mark */
if (match_fetch(string_parsed, "'") == NE_ERROR) {
ne_set_error(session.sess,
"Syntax error: A ' is expected in the search condition.");
return NE_ERROR; /*Parsing error */
}
/*To parse {"any_character"}. Considering '\'' case when parsing */
current_char = previous_char = (*string_parsed)[0];
while ( ((current_char != '\'') && (current_char != '\0')) ||
((current_char == '\'') && (previous_char == '\\')) ) {
tmp_str[0] = current_char;
tmp_str[1] = '\0';
ne_buffer_zappend(result_buf, tmp_str);
previous_char = current_char;
i++;
current_char = (*string_parsed)[i];
}
if (current_char != '\'') { /*There should be a ending ' */
ne_set_error(session.sess,
"An ending ' is expected in the search condition.");
return NE_ERROR; /*parsing error */
}
*string_parsed = *string_parsed + i + 1; /*1 for ending ' */
return NE_OK; /*success */
} /*End of auoted_string */
/*
* Parse a word string.
* <wordstring> ::= <any char except for blank, tab and ')'>{<any_character except for blank, tab and ')'>}
*
* The parsing result is saved into result_buf.
* '*string_parsed' is changed to the pointer pointing to the position after
* the predicate.
*
* Returns:
* 1: success
* 0: syntax error
*/
static int word_string(char **string_parsed, ne_buffer * result_buf)
{
char previous_char;
char current_char;
char tmp_str[2] = "";
int i = 0;
ne_buffer_clear(result_buf);
/*Find the left bound of a word */
while (isspace((*string_parsed)[i]))
i++;
if ((*string_parsed)[i] == '\0' || (*string_parsed)[i] == ')') /* Empty string */
return NE_ERROR;
current_char = previous_char = (*string_parsed)[i];
while ((current_char != ' ') &&
(current_char != '\t') &&
(current_char != ')') && (current_char != '\0')) {
tmp_str[0] = current_char;
tmp_str[1] = '\0';
ne_buffer_zappend(result_buf, tmp_str);
previous_char = current_char;
i++;
current_char = (*string_parsed)[i];
}
*string_parsed = *string_parsed + i;
return NE_OK; /*success */
} /*End of auoted_string */
/*
* Parse a comparison_value.
*<comparison_value>
* ::= <number> | <quoted_string> | <wordstring>
*
* The parsing result is saved into result_buf.
* '*string_parsed' is changed to the pointer pointing to the position after
* the predicate.
*
* Returns:
* NE_OK: success
* NE_ERROR: syntax error
*/
static int comparison_value(char **string_parsed, ne_buffer * result_buf)
{
char identifier[WORDLEN + 1] = "";
ne_buffer *comparing_value;
ne_buffer_clear(result_buf);
comparing_value = ne_buffer_create();
if (first_word_equal(*string_parsed, "'") == 1) {
/*It is the case of quoted string */
if (quoted_string(string_parsed, comparing_value) == NE_ERROR) {
ne_buffer_destroy(comparing_value);
return NE_ERROR; /*Parsing error */
}
ne_buffer_zappend(result_buf, comparing_value->data);
}
else { /* It is the case of <number> or <wordstring> */
/*An integer or a word string is expected */
if (first_word_integer(*string_parsed) == 1) {
read_aword(string_parsed, identifier);
ne_buffer_zappend(result_buf, identifier);
}
else { /* It is the case of a word string */
if (word_string(string_parsed, comparing_value) == NE_ERROR) {
ne_set_error(session.sess,
"Syntax error: An integer, quoted string or word string is expected in the search condition.");
ne_buffer_destroy(comparing_value);
return NE_ERROR;
}
}
ne_buffer_zappend(result_buf, comparing_value->data);
}
ne_buffer_destroy(comparing_value);
return NE_OK; /*success */
} /*End of comparison_value */
|