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
|
/* ent2api.c
* ===========================================================================
*
* PUBLIC DOMAIN NOTICE
* National Center for Biotechnology Information (NCBI)
*
* This software/database is a "United States Government Work" under the
* terms of the United States Copyright Act. It was written as part of
* the author's official duties as a United States Government employee and
* thus cannot be copyrighted. This software/database is freely available
* to the public for use. The National Library of Medicine and the U.S.
* Government do not place any restriction on its use or reproduction.
* We would, however, appreciate having the NCBI and the author cited in
* any work or product based on this material
*
* Although all reasonable efforts have been taken to ensure the accuracy
* and reliability of the software and data, the NLM and the U.S.
* Government do not and cannot warrant the performance or results that
* may be obtained by using this software or data. The NLM and the U.S.
* Government disclaim all warranties, express or implied, including
* warranties of performance, merchantability or fitness for any particular
* purpose.
*
* ===========================================================================
*
* File Name: ent2api.c
*
* Author: Jonathan Kans
*
* Version Creation Date: 7/29/99
*
* $Revision: 1.114 $
*
* File Description:
*
* Modifications:
* --------------------------------------------------------------------------
*
* ==========================================================================
*/
#include <ent2api.h>
#include <urlquery.h>
#include <ncbithr.h>
#ifdef OS_UNIX
#include <sys/times.h>
#include <limits.h>
#endif
#define ENTREZ_TOOL_PROPERTY "Entrez2Tool"
#define ENTREZ_TOOL_VERSION 1
/* utility functions */
NLM_EXTERN void EntrezSetProgramName (
const char* progname
)
{
MemFree (GetAppProperty (ENTREZ_TOOL_PROPERTY));
SetAppProperty (ENTREZ_TOOL_PROPERTY, (StringHasNoText (progname)
? NULL
: StringSave (progname)));
}
static const char* EntrezGetProgramName (
void
)
{
char path [PATH_MAX];
const char* ptr;
ptr = (const char*) GetAppProperty (ENTREZ_TOOL_PROPERTY);
if (StringHasNoText (ptr)) {
Nlm_ProgramPath (path, sizeof (path));
ptr = StringRChr (path, DIRDELIMCHR);
if (ptr != NULL) {
ptr++;
EntrezSetProgramName (ptr);
ptr = (const char*) GetAppProperty (ENTREZ_TOOL_PROPERTY);
}
}
return ptr;
}
/* override service name */
static const char* e2_service = NULL;
/* use EntrezTest to override default Entrez ncbi named service */
NLM_EXTERN void EntrezSetService (
const char* service
)
{
MemFree ((void*) e2_service);
e2_service = StringSaveNoNull (service);
}
/* low-level connection functions */
static const char* GetDbFromE2Request (Entrez2RequestPtr e2rq)
{
Entrez2BooleanExpPtr e2be;
Entrez2EvalBooleanPtr e2eb;
Entrez2GetLinksPtr e2gl;
Entrez2HierQueryPtr e2hq;
Entrez2IdPtr e2id;
Entrez2IdListPtr e2il;
Entrez2TermPosPtr e2tp;
Entrez2TermQueryPtr e2tq;
ValNodePtr vnp;
if (e2rq == NULL) return NULL;
vnp = e2rq->request;
if (vnp == NULL) return NULL;
switch (vnp->choice) {
case E2Request_get_info :
break;
case E2Request_eval_boolean :
e2eb = (Entrez2EvalBooleanPtr) vnp->data.ptrvalue;
if (e2eb == NULL) return NULL;
e2be = e2eb->query;
if (e2be == NULL) return NULL;
if (StringDoesHaveText (e2be->db)) return e2be->db;
break;
case E2Request_get_docsum :
e2il = (Entrez2IdListPtr) vnp->data.ptrvalue;
if (e2il == NULL) return NULL;
if (StringDoesHaveText (e2il->db)) return e2il->db;
break;
case E2Request_get_term_pos :
e2tq = (Entrez2TermQueryPtr) vnp->data.ptrvalue;
if (e2tq == NULL) return NULL;
if (StringDoesHaveText (e2tq->db)) return e2tq->db;
break;
case E2Request_get_term_list :
e2tp = (Entrez2TermPosPtr) vnp->data.ptrvalue;
if (e2tp == NULL) return NULL;
if (StringDoesHaveText (e2tp->db)) return e2tp->db;
break;
case E2Request_get_term_hierarchy :
e2hq = (Entrez2HierQueryPtr) vnp->data.ptrvalue;
if (e2hq == NULL) return NULL;
if (StringDoesHaveText (e2hq->db)) return e2hq->db;
break;
case E2Request_get_links :
e2gl = (Entrez2GetLinksPtr) vnp->data.ptrvalue;
if (e2gl == NULL) return NULL;
e2il = (Entrez2IdListPtr) e2gl->uids;
if (e2il == NULL) return NULL;
if (StringDoesHaveText (e2il->db)) return e2il->db;
break;
case E2Request_get_linked :
e2gl = (Entrez2GetLinksPtr) vnp->data.ptrvalue;
if (e2gl == NULL) return NULL;
e2il = (Entrez2IdListPtr) e2gl->uids;
if (e2il == NULL) return NULL;
if (StringDoesHaveText (e2il->db)) return e2il->db;
break;
case E2Request_get_link_counts :
e2id = (Entrez2IdPtr) vnp->data.ptrvalue;
if (e2id == NULL) return NULL;
if (StringDoesHaveText (e2id->db)) return e2id->db;
break;
default :
break;
}
return NULL;
}
NLM_EXTERN CONN EntrezOpenConnection (
Entrez2RequestPtr e2rq
)
{
char arg [128];
const char* db;
db = GetDbFromE2Request (e2rq);
if (StringDoesHaveText (db) && StringLen (db) < 100) {
StrCpy (arg, "DB=");
StrCpy (arg + 3, db);
} else
*arg = '\0';
return QUERY_OpenServiceQueryEx
(StringHasNoText (e2_service) ? "Entrez2" : e2_service, NULL, 30, arg);
}
#ifdef OS_MAC
#include <Events.h>
#endif
NLM_EXTERN Entrez2ReplyPtr EntrezWaitForReply (
CONN conn
)
{
AsnIoConnPtr aicp;
time_t currtime, starttime;
Entrez2ReplyPtr e2ry = NULL;
time_t max = 0;
EIO_Status status;
STimeout timeout;
#ifdef OS_MAC
EventRecord currEvent;
#endif
if (conn == NULL) return NULL;
#ifdef OS_MAC
timeout.sec = 0;
timeout.usec = 0;
#else
timeout.sec = 100;
timeout.usec = 0;
#endif
starttime = GetSecs ();
while ((status = CONN_Wait (conn, eIO_Read, &timeout)) == eIO_Timeout && max < 300) {
currtime = GetSecs ();
max = currtime - starttime;
#ifdef OS_MAC
WaitNextEvent (0, &currEvent, 0, NULL);
#endif
}
if (status == eIO_Success) {
aicp = QUERY_AsnIoConnOpen ("rb", conn);
e2ry = Entrez2ReplyAsnRead (aicp->aip, NULL);
QUERY_AsnIoConnClose (aicp);
}
CONN_Close (conn);
return e2ry;
}
/* ent2api silently maintains entrez2 server session cookie */
static TNlmTls e2cookie_tls = NULL;
/* high-level connection functions */
NLM_EXTERN Entrez2ReplyPtr EntrezSynchronousQuery (
Entrez2RequestPtr e2rq
)
{
AsnIoConnPtr aicp;
CONN conn;
char* e2cookie = NULL;
Entrez2ReplyPtr e2ry;
char* tempcookie = NULL;
#ifdef OS_UNIX
Boolean logtimes;
clock_t starttime;
clock_t stoptime;
struct tms timebuf;
#endif
if (e2rq == NULL) return NULL;
#ifdef OS_UNIX
logtimes = (Boolean) ((getenv ("NCBI_LOG_SYNC_QUERY_TIMES")) != NULL);
#endif
conn = EntrezOpenConnection (e2rq);
if (conn == NULL) return NULL;
aicp = QUERY_AsnIoConnOpen ("wb", conn);
tempcookie = e2rq->cookie;
if (NlmTlsGetValue (e2cookie_tls, (VoidPtr PNTR) &e2cookie)) {
if (e2rq->cookie == NULL && e2cookie != NULL) {
e2rq->cookie = e2cookie;
}
}
Entrez2RequestAsnWrite (e2rq, aicp->aip, NULL);
e2rq->cookie = tempcookie;
AsnIoFlush (aicp->aip);
QUERY_AsnIoConnClose (aicp);
QUERY_SendQuery (conn);
#ifdef OS_UNIX
if (logtimes) {
starttime = times (&timebuf);
}
#endif
e2ry = EntrezWaitForReply (conn);
#ifdef OS_UNIX
if (logtimes) {
stoptime = times (&timebuf);
printf ("EntrezWaitForReply %ld\n", (long) (stoptime - starttime));
}
#endif
if (e2ry != NULL && e2ry->cookie != NULL) {
if (NlmTlsGetValue (e2cookie_tls, (VoidPtr PNTR) &e2cookie)) {
e2cookie = MemFree (e2cookie);
e2cookie = StringSave (e2ry->cookie);
NlmTlsSetValue (&e2cookie_tls, (VoidPtr PNTR) e2cookie, NULL);
}
}
return e2ry;
}
NLM_EXTERN Boolean EntrezAsynchronousQuery (
Entrez2RequestPtr e2rq,
QUEUE* queue,
QueryResultProc resultproc,
VoidPtr userdata
)
{
AsnIoConnPtr aicp;
CONN conn;
char* e2cookie = NULL;
char* tempcookie = NULL;
if (e2rq == NULL) return FALSE;
conn = EntrezOpenConnection (e2rq);
if (conn == NULL) return FALSE;
aicp = QUERY_AsnIoConnOpen ("wb", conn);
tempcookie = e2rq->cookie;
if (NlmTlsGetValue (e2cookie_tls, (VoidPtr PNTR) &e2cookie)) {
if (e2rq->cookie == NULL && e2cookie != NULL) {
e2rq->cookie = e2cookie;
}
}
Entrez2RequestAsnWrite (e2rq, aicp->aip, NULL);
e2rq->cookie = tempcookie;
AsnIoFlush (aicp->aip);
QUERY_AsnIoConnClose (aicp);
QUERY_SendQuery (conn);
QUERY_AddToQueue (queue, conn, resultproc, userdata, TRUE);
return TRUE;
}
NLM_EXTERN Int4 EntrezCheckQueue (QUEUE* queue)
{
return QUERY_CheckQueue (queue);
}
NLM_EXTERN Entrez2ReplyPtr EntrezReadReply (
CONN conn,
EIO_Status status
)
{
AsnIoConnPtr aicp;
char* e2cookie = NULL;
Entrez2ReplyPtr e2ry = NULL;
if (conn != NULL && status == eIO_Success) {
aicp = QUERY_AsnIoConnOpen ("rb", conn);
e2ry = Entrez2ReplyAsnRead (aicp->aip, NULL);
QUERY_AsnIoConnClose (aicp);
}
if (e2ry != NULL && e2ry->cookie != NULL) {
if (NlmTlsGetValue (e2cookie_tls, (VoidPtr PNTR) &e2cookie)) {
e2cookie = MemFree (e2cookie);
e2cookie = StringSave (e2ry->cookie);
NlmTlsSetValue (&e2cookie_tls, (VoidPtr PNTR) e2cookie, NULL);
}
}
return e2ry;
}
/* request creation functions */
static Entrez2RequestPtr CreateRequest (
Uint1 choice, Pointer data
)
{
char* e2cookie = NULL;
Entrez2RequestPtr e2rq;
ValNodePtr vnp;
e2rq = Entrez2RequestNew ();
if (e2rq == NULL) return NULL;
e2rq->version = ENTREZ_TOOL_VERSION;
e2rq->tool = StringSaveNoNull (EntrezGetProgramName ());
vnp = ValNodeNew (NULL);
if (vnp == NULL) return NULL;
vnp->choice = choice;
vnp->data.ptrvalue = data;
vnp->next = NULL;
e2rq->request = vnp;
if (NlmTlsGetValue (e2cookie_tls, (VoidPtr PNTR) &e2cookie)) {
e2rq->cookie = StringSaveNoNull (e2cookie);
}
return e2rq;
}
/* history needs to be used for Boolean ids and key queries */
NLM_EXTERN void EntrezSetUseHistoryFlag (
Entrez2RequestPtr e2rq
)
{
if (e2rq == NULL) return;
e2rq->use_history = TRUE;
}
NLM_EXTERN Entrez2IdListPtr EntrezCreateEntrezIdList (
const char* db,
Int4 uid,
Int4 num,
const Int4 uids[],
ByteStorePtr bs
)
{
Entrez2IdListPtr e2il;
e2il = Entrez2IdListNew ();
if (e2il == NULL) return NULL;
e2il->db = StringSaveNoNull (db);
if (uid != 0 && uids == NULL) {
uids = &uid;
num = 1;
}
if (uids != NULL && num > 0 && bs == NULL) {
bs = BSNew (4 * num);
if (bs == NULL) return NULL;
BSWrite (bs, (Uint4Ptr) uids, num * sizeof (Uint4));
}
e2il->uids = (Pointer) bs;
e2il->num = BSLen (bs) / sizeof (Uint4);
return e2il;
}
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetInfoRequest (
void
)
{
return CreateRequest (E2Request_get_info, NULL);
}
NLM_EXTERN Entrez2LimitsPtr EntrezCreateEntrezLimits (
Int4 begin_date,
Int4 end_date,
const char* type_date,
Int4 max_uids,
Int4 offset_uids
)
{
Entrez2DtFilterPtr e2df;
Entrez2LimitsPtr e2lm;
if (begin_date == 0 && end_date == 0 &&
StringHasNoText (type_date) &&
max_uids == 0 && offset_uids == 0) return NULL;
e2lm = Entrez2LimitsNew ();
if (e2lm == NULL) return NULL;
e2lm->max_UIDs = max_uids;
e2lm->offset_UIDs = offset_uids;
if (begin_date == 0 && end_date == 0 &&
StringHasNoText (type_date)) return e2lm;
e2df = Entrez2DtFilterNew ();
if (e2df == NULL) return NULL;
e2df->begin_date = begin_date;
e2df->end_date = end_date;
e2df->type_date = StringSaveNoNull (type_date);
e2lm->filter_date = e2df;
return e2lm;
}
NLM_EXTERN Entrez2RequestPtr EntrezCreateBooleanRequest (
Boolean return_uids,
Boolean return_parsed,
const char* db,
const char* query_string,
Int4 begin_date,
Int4 end_date,
const char* type_date,
Int4 max_uids,
Int4 offset_uids
)
{
Entrez2BooleanExpPtr e2be;
Entrez2EvalBooleanPtr e2eb;
Entrez2RequestPtr e2rq;
e2be = Entrez2BooleanExpNew ();
if (e2be == NULL) return NULL;
e2be->db = StringSaveNoNull (db);
e2be->limits = EntrezCreateEntrezLimits (begin_date, end_date,
type_date, max_uids, offset_uids);
e2eb = Entrez2EvalBooleanNew ();
if (e2eb == NULL) return NULL;
e2eb->return_UIDs = return_uids;
e2eb->return_parse = return_parsed;
e2eb->query = e2be;
e2rq = CreateRequest (E2Request_eval_boolean, (Pointer) e2eb);
if (e2rq == NULL) return NULL;
if (! StringHasNoText (query_string)) {
EntrezAddToBooleanRequest (e2rq, query_string, 0, NULL, NULL, NULL,
0, 0, NULL, NULL, TRUE, TRUE);
}
return e2rq;
}
NLM_EXTERN void EntrezAddToBooleanRequest (
Entrez2RequestPtr e2rq,
const char* query_string,
Int4 op,
const char* field,
const char* term,
const char* key,
Int4 uid,
Int4 num,
const Int4 uids[],
ByteStorePtr bs,
Boolean do_not_explode,
Boolean do_not_translate
)
{
Entrez2BooleanExpPtr e2be;
Entrez2BooleanTermPtr e2bt;
Entrez2EvalBooleanPtr e2eb;
Entrez2IdListPtr e2il;
ValNodePtr vnp;
if (e2rq == NULL) return;
vnp = e2rq->request;
if (vnp == NULL || vnp->choice != E2Request_eval_boolean) return;
e2eb = (Entrez2EvalBooleanPtr) vnp->data.ptrvalue;
if (e2eb == NULL) return;
e2be = e2eb->query;
if (e2be == NULL) return;
if (! StringHasNoText (query_string)) {
ValNodeCopyStr (&(e2be->exp), Entrez2BooleanElement_str, query_string);
} else if (op > 0) {
ValNodeAddInt (&(e2be->exp), Entrez2BooleanElement_op, op);
} else if ((! StringHasNoText (field)) && (! StringHasNoText (term))) {
e2bt = Entrez2BooleanTermNew ();
if (e2bt == NULL) return;
e2bt->field = StringSaveNoNull (field);
e2bt->term = StringSaveNoNull (term);
e2bt->do_not_explode = do_not_explode;
e2bt->do_not_translate = do_not_translate;
ValNodeAddPointer (&(e2be->exp), Entrez2BooleanElement_term, (Pointer) e2bt);
} else if (! StringHasNoText (key)) {
ValNodeCopyStr (&(e2be->exp), Entrez2BooleanElement_key, key);
} else {
e2il = EntrezCreateEntrezIdList (e2be->db, uid, num, uids, bs);
if (e2il == NULL) return;
ValNodeAddPointer (&(e2be->exp), Entrez2BooleanElement_ids, (Pointer) e2il);
}
}
NLM_EXTERN Entrez2RequestPtr EntrezCreateDocSumRequest (
const char* db,
Int4 uid,
Int4 num,
const Int4 uids[],
ByteStorePtr bs
)
{
Entrez2IdListPtr e2il;
e2il = EntrezCreateEntrezIdList (db, uid, num, uids, bs);
if (e2il == NULL) return NULL;
return CreateRequest (E2Request_get_docsum, (Pointer) e2il);
}
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetTermPositionRequest (
const char* db,
const char* field,
const char* term
)
{
Entrez2TermQueryPtr e2tq;
e2tq = Entrez2TermQueryNew ();
if (e2tq == NULL) return NULL;
e2tq->db = StringSaveNoNull (db);
e2tq->field = StringSaveNoNull (field);
e2tq->term = StringSaveNoNull (term);
return CreateRequest (E2Request_get_term_pos, (Pointer) e2tq);
}
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetTermListRequest (
const char* db,
const char* field,
Int4 first_term_pos,
Int4 num_terms
)
{
Entrez2TermPosPtr e2tp;
e2tp = Entrez2TermPosNew ();
if (e2tp == NULL) return NULL;
e2tp->db = StringSaveNoNull (db);
e2tp->field = StringSaveNoNull (field);
e2tp->first_term_pos = first_term_pos;
e2tp->number_of_terms = num_terms;
return CreateRequest (E2Request_get_term_list, (Pointer) e2tp);
}
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetTermHierarchyRequest (
const char* db,
const char* field,
const char* term,
Int4 txid
)
{
Entrez2HierQueryPtr e2hq;
e2hq = Entrez2HierQueryNew ();
if (e2hq == NULL) return NULL;
e2hq->db = StringSaveNoNull (db);
e2hq->field = StringSaveNoNull (field);
e2hq->term = StringSaveNoNull (term);
e2hq->txid = txid;
return CreateRequest (E2Request_get_term_hierarchy, (Pointer) e2hq);
}
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetLinksRequest (
const char* db,
Int4 uid,
Int4 num,
const Int4 uids[],
ByteStorePtr bs,
const char* linktype,
Int4 max_uids,
Boolean count_only,
Boolean parents_persist
)
{
Entrez2GetLinksPtr e2gl;
Entrez2IdListPtr e2il;
e2il = EntrezCreateEntrezIdList (db, uid, num, uids, bs);
if (e2il == NULL) return NULL;
e2gl = Entrez2GetLinksNew ();
if (e2gl == NULL) return NULL;
e2gl->uids = e2il;
e2gl->linktype = StringSaveNoNull (linktype);
e2gl->max_UIDS = max_uids;
e2gl->count_only = count_only;
e2gl->parents_persist = parents_persist;
return CreateRequest (E2Request_get_links, (Pointer) e2gl);
}
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetLinkedRequest (
const char* db,
Int4 uid,
Int4 num,
const Int4 uids[],
ByteStorePtr bs,
const char* linktype,
Int4 max_uids,
Boolean count_only,
Boolean parents_persist
)
{
Entrez2GetLinksPtr e2gl;
Entrez2IdListPtr e2il;
e2il = EntrezCreateEntrezIdList (db, uid, num, uids, bs);
if (e2il == NULL) return NULL;
e2gl = Entrez2GetLinksNew ();
if (e2gl == NULL) return NULL;
e2gl->uids = e2il;
e2gl->linktype = StringSaveNoNull (linktype);
e2gl->max_UIDS = max_uids;
e2gl->count_only = count_only;
e2gl->parents_persist = parents_persist;
return CreateRequest (E2Request_get_linked, (Pointer) e2gl);
}
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetLinkCountsRequest (
const char* db,
Int4 uid
)
{
Entrez2IdPtr e2id;
e2id = Entrez2IdNew ();
if (e2id == NULL) return NULL;
e2id->db = StringSaveNoNull (db);
e2id->uid = uid;
return CreateRequest (E2Request_get_link_counts, (Pointer) e2id);
}
/* reply extraction functions */
static Pointer GeneralEntrezExtractReply (
Entrez2ReplyPtr e2ry,
Uint1 choice,
Int4Ptr termpos
)
{
E2ReplyPtr reply;
Pointer result = NULL;
if (e2ry == NULL) return NULL;
reply = e2ry->reply;
if (reply == NULL) return NULL;
if (reply->choice == choice) {
if (termpos != NULL) {
*termpos = reply->data.intvalue;
} else {
result = (Pointer) reply->data.ptrvalue;
reply->data.ptrvalue = NULL;
}
}
Entrez2ReplyFree (e2ry);
return result;
}
NLM_EXTERN char* EntrezExtractErrorReply (
Entrez2ReplyPtr e2ry
)
{
return (char*) GeneralEntrezExtractReply (e2ry, E2Reply_error, NULL);
}
NLM_EXTERN Entrez2InfoPtr EntrezExtractInfoReply (
Entrez2ReplyPtr e2ry
)
{
return (Entrez2InfoPtr) GeneralEntrezExtractReply (e2ry, E2Reply_get_info, NULL);
}
NLM_EXTERN Entrez2BooleanReplyPtr EntrezExtractBooleanReply (
Entrez2ReplyPtr e2ry
)
{
return (Entrez2BooleanReplyPtr) GeneralEntrezExtractReply (e2ry, E2Reply_eval_boolean, NULL);
}
NLM_EXTERN Entrez2DocsumListPtr EntrezExtractDocsumReply (
Entrez2ReplyPtr e2ry
)
{
return (Entrez2DocsumListPtr) GeneralEntrezExtractReply (e2ry, E2Reply_get_docsum, NULL);
}
NLM_EXTERN Int4 EntrezExtractTermPosReply (
Entrez2ReplyPtr e2ry
)
{
Int4 termpos = 0;
GeneralEntrezExtractReply (e2ry, E2Reply_get_term_pos, &termpos);
return termpos;
}
NLM_EXTERN Entrez2TermListPtr EntrezExtractTermListReply (
Entrez2ReplyPtr e2ry
)
{
return (Entrez2TermListPtr) GeneralEntrezExtractReply (e2ry, E2Reply_get_term_list, NULL);
}
NLM_EXTERN Entrez2HierNodePtr EntrezExtractHierNodeReply (
Entrez2ReplyPtr e2ry
)
{
return (Entrez2HierNodePtr) GeneralEntrezExtractReply (e2ry, E2Reply_get_term_hierarchy, NULL);
}
NLM_EXTERN Entrez2LinkSetPtr EntrezExtractLinksReply (
Entrez2ReplyPtr e2ry
)
{
return (Entrez2LinkSetPtr) GeneralEntrezExtractReply (e2ry, E2Reply_get_links, NULL);
}
NLM_EXTERN Entrez2IdListPtr EntrezExtractLinkedReply (
Entrez2ReplyPtr e2ry
)
{
return (Entrez2IdListPtr) GeneralEntrezExtractReply (e2ry, E2Reply_get_linked, NULL);
}
NLM_EXTERN Entrez2LinkCountListPtr EntrezExtractLinkCountReply (
Entrez2ReplyPtr e2ry
)
{
return (Entrez2LinkCountListPtr) GeneralEntrezExtractReply (e2ry, E2Reply_get_link_counts, NULL);
}
/* special SeqIdString to UID convenience function */
NLM_EXTERN Uint4 EntrezGetUIDforSeqIdString (
const char* db,
const char* seq_id_string
)
{
char ch;
Entrez2BooleanReplyPtr e2br;
Entrez2IdListPtr e2id;
Entrez2RequestPtr e2rq;
Entrez2ReplyPtr e2ry;
char* ptr;
char str [61];
Uint4 uid = 0;
if (StringHasNoText (db) || StringHasNoText (seq_id_string)) return 0;
StringNCpy_0 (str, seq_id_string, sizeof (str) - 1);
ptr = str;
ch = *ptr;
while (ch != '\0') {
if (ch == '|' || ch == '.') {
*ptr = ' ';
}
ptr++;
ch = *ptr;
}
TrimSpacesAroundString (str);
if (StringStr (str, "[SQID]") == NULL) {
StringCat (str, " [SQID]");
}
e2rq = EntrezCreateBooleanRequest (TRUE, FALSE, db, str,
0, 0, NULL, 1, 0);
if (e2rq == NULL) return 0;
e2ry = EntrezSynchronousQuery (e2rq);
e2rq = Entrez2RequestFree (e2rq);
if (e2ry == NULL) return 0;
e2br = EntrezExtractBooleanReply (e2ry);
if (e2br == NULL) return 0;
if (e2br->count > 0) {
e2id = e2br->uids;
if (e2id != NULL && e2id->num > 0 && e2id->uids != NULL) {
BSSeek (e2id->uids, 0, SEEK_SET);
uid = Nlm_BSGetUint4 (e2id->uids);
}
}
Entrez2BooleanReplyFree (e2br);
return uid;
}
/* result validation function */
static int LIBCALLBACK SortVnpByStr (VoidPtr ptr1, VoidPtr ptr2)
{
const char* str1;
const char* str2;
ValNodePtr vnp1;
ValNodePtr vnp2;
if (ptr1 != NULL && ptr2 != NULL) {
vnp1 = *((ValNodePtr PNTR) ptr1);
vnp2 = *((ValNodePtr PNTR) ptr2);
if (vnp1 != NULL && vnp2 != NULL) {
str1 = (const char*) vnp1->data.ptrvalue;
str2 = (const char*) vnp2->data.ptrvalue;
if (str1 != NULL && str2 != NULL) {
return StringICmp (str1, str2);
}
}
}
return 0;
}
NLM_EXTERN Boolean ValidateEntrez2InfoPtrEx (
Entrez2InfoPtr e2ip,
ValNodePtr PNTR head,
Boolean checkMenuNameVariants
)
{
Char buf [128];
Char ch;
CharPtr db;
Int2 dbcount;
CharPtr dbnames [256];
CharPtr dsf;
Int2 dsfcount;
Entrez2DbInfoPtr e2db;
Entrez2DocsumFieldInfoPtr e2dsp;
Entrez2FieldInfoPtr e2fip;
Entrez2LinkInfoPtr e2lip;
CharPtr fld;
Int2 fldcount;
Boolean hasLowCase;
Int2 i;
CharPtr last;
ValNodePtr lastvnp;
size_t len1;
size_t len2;
CharPtr lnk;
Int2 lnkcount;
ValNodePtr menuhead = NULL;
Boolean notAlphNum;
Boolean rsult = TRUE;
CharPtr str;
Char tmpdb [32];
Char tmpdsf [32];
Char tmpfld [32];
Char tmplnk [32];
ValNodePtr vnp;
if (head != NULL) {
*head = NULL;
}
if (e2ip == NULL) return FALSE;
if (e2ip->db_count < 1 || e2ip->db_info == NULL) {
sprintf (buf, "Entrez2 has no databases");
ValNodeCopyStr (head, 0, buf);
return FALSE;
}
for (i = 0; i < sizeof (dbnames) / sizeof (CharPtr); i++) {
dbnames [i] = "?";
}
i = 0;
for (e2db = e2ip->db_info; e2db != NULL; e2db = e2db->next) {
i++;
if (! StringHasNoText (e2db->db_name)) {
dbnames [i] = e2db->db_name;
} else if (! StringHasNoText (e2db->db_menu)) {
dbnames [i] = e2db->db_menu;
}
}
dbcount = 0;
for (e2db = e2ip->db_info; e2db != NULL; e2db = e2db->next) {
dbcount++;
db = e2db->db_name;
if (StringHasNoText (db)) {
rsult = FALSE;
if (StringHasNoText (e2db->db_menu)) {
sprintf (tmpdb, "%d", (int) dbcount);
db = tmpdb;
sprintf (buf, "Database %d has no name", (int) dbcount);
ValNodeCopyStr (head, 0, buf);
} else {
db = e2db->db_menu;
sprintf (buf, "Database %s (%d) has no name", db, (int) dbcount);
ValNodeCopyStr (head, 0, buf);
}
}
if (StringHasNoText (e2db->db_menu)) {
sprintf (buf, "Database %s has no menu name", db);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
if (StringHasNoText (e2db->db_descr)) {
sprintf (buf, "Database %s has no description", db);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
if (e2db->doc_count < 1) {
if (StringICmp (db, "Nucleotide") == 0) {
/* now a virtual database consolidating NucCore, NucEst, NucGss */
} else {
sprintf (buf, "Database %s has no documents", db);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
}
if (e2db->field_count < 1 || e2db->fields == NULL) {
sprintf (buf, "Database %s has no fields", db);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
if (e2db->link_count < 1 || e2db->links == NULL) {
if (StringICmp (db, "books") != 0 &&
StringICmp (db, "gap") != 0 &&
StringICmp (db, "gensat") != 0 &&
StringICmp (db, "mesh") != 0 &&
StringICmp (db, "ncbisearch") != 0 &&
StringICmp (db, "nlmcatalog") != 0 &&
StringICmp (db, "nucleotide") != 0 &&
StringICmp (db, "nuccore") != 0 &&
StringICmp (db, "nucgss") != 0 &&
StringICmp (db, "nucest") != 0 &&
StringICmp (db, "toolkit") != 0 &&
StringICmp (db, "blastdbinfo") != 0) {
sprintf (buf, "Database %s has no links", db);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
}
if (e2db->docsum_field_count < 1 || e2db->docsum_fields == NULL) {
sprintf (buf, "Database %s has no docsum fields", db);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
fldcount = 0;
for (e2fip = e2db->fields; e2fip != NULL; e2fip = e2fip->next) {
fldcount++;
fld = e2fip->field_name;
if (StringHasNoText (fld)) {
rsult = FALSE;
if (StringHasNoText (e2fip->field_menu)) {
sprintf (tmpfld, "%d", (int) dbcount);
fld = tmpfld;
sprintf (buf, "Database %s field %d has no name", db, (int) fldcount);
ValNodeCopyStr (head, 0, buf);
} else {
fld = e2fip->field_menu;
sprintf (buf, "Database %s field %s (%d) has no name", db, fld, (int) fldcount);
ValNodeCopyStr (head, 0, buf);
}
} else if (StringCmp (fld, "SLEN") == 0 ||
StringCmp (fld, "MLWT") == 0 ||
StringCmp (fld, "PMID") == 0 ||
StringCmp (fld, "LLID") == 0 ||
StringCmp (fld, "UID") == 0) {
if (! e2fip->is_numerical) {
sprintf (buf, "Database %s field %s does not have is_numerical set", db, fld);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
} else if (StringCmp (fld, "TEXT") == 0) {
sprintf (buf, "Database %s field %s should be WORD", db, fld);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
} else if (StringCmp (fld, "ORGN") == 0) {
if (e2fip->term_count == 0) {
if (StringICmp (db, "Nucleotide") == 0) {
/* now a virtual database consolidating NucCore, NucEst, NucGss */
} else {
sprintf (buf, "Database %s field %s term count is 0", db, fld);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
}
}
if (StringLen (fld) > 4) {
sprintf (buf, "Database %s field %s name is > 4 characters long", db, fld);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
hasLowCase = FALSE;
notAlphNum = FALSE;
str = fld;
ch = *str;
while (ch != '\0') {
if (IS_LOWER (ch)) {
hasLowCase = TRUE;
} else if (! (IS_ALPHANUM (ch))) {
notAlphNum = TRUE;
}
str++;
ch = *str;
}
if (hasLowCase) {
sprintf (buf, "Database %s field %s has lower case letters", db, fld);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
if (notAlphNum) {
sprintf (buf, "Database %s field %s has non-alphanumeric characters", db, fld);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
if (StringHasNoText (e2fip->field_menu)) {
sprintf (buf, "Database %s field %s has no menu name", db, fld);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
} else {
ValNodeCopyStr (&menuhead, (Int2) dbcount, e2fip->field_menu);
if (StringStr (e2fip->field_menu, "Date") != NULL) {
if (! e2fip->is_date) {
sprintf (buf, "Database %s field %s does not have is_date set", db, fld);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
} else if (StringICmp (e2fip->field_menu, "Mesh") == 0) {
sprintf (buf, "Database %s field-menu %s should be MeSH Terms", db, e2fip->field_menu);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
}
if (StringHasNoText (e2fip->field_descr)) {
sprintf (buf, "Database %s field %s has no description", db, fld);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
}
if (e2db->field_count != fldcount) {
sprintf (buf, "Database %s field count %ld does not match fldcount %d", db, (long) e2db->field_count, (int) fldcount);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
lnkcount = 0;
for (e2lip = e2db->links; e2lip != NULL; e2lip = e2lip->next) {
lnkcount++;
lnk = e2lip->link_name;
if (StringHasNoText (lnk)) {
rsult = FALSE;
if (StringHasNoText (e2lip->link_menu)) {
sprintf (tmplnk, "%d", (int) lnkcount);
lnk = tmplnk;
sprintf (buf, "Database %s link %d has no name", db, (int) lnkcount);
ValNodeCopyStr (head, 0, buf);
} else {
lnk = e2lip->link_menu;
sprintf (buf, "Database %s link %s (%d) has no name", db, lnk, (int) lnkcount);
ValNodeCopyStr (head, 0, buf);
}
}
/*
if (StringHasNoText (e2lip->link_menu)) {
sprintf (buf, "Database %s link %s has no menu name", db, lnk);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
*/
if (StringHasNoText (e2lip->link_descr)) {
if (StringICmp (db, "nucest") == 0 && StringICmp (lnk, "nucest_gene_clust") == 0) {
} else if (StringICmp (db, "gene") == 0 && StringICmp (lnk, "gene_nucest_clust") == 0) {
} else {
sprintf (buf, "Database %s link %s has no description", db, lnk);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
}
if (StringHasNoText (e2lip->db_to)) {
sprintf (buf, "Database %s link %s has no target database", db, lnk);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
}
if (e2db->link_count != lnkcount) {
sprintf (buf, "Database %s link count %ld does not match lnkcount %d", db, (long) e2db->link_count, (int) lnkcount);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
dsfcount = 0;
for (e2dsp = e2db->docsum_fields; e2dsp != NULL; e2dsp = e2dsp->next) {
dsfcount++;
dsf = e2dsp->field_name;
if (StringHasNoText (dsf)) {
rsult = FALSE;
if (StringHasNoText (e2dsp->field_description)) {
sprintf (tmpdsf, "%d", (int) dsfcount);
dsf = tmpdsf;
sprintf (buf, "Database %s link %d has no name", db, (int) dsfcount);
ValNodeCopyStr (head, 0, buf);
} else {
dsf = e2dsp->field_description;
sprintf (buf, "Database %s link %s (%d) has no name", db, dsf, (int) dsfcount);
ValNodeCopyStr (head, 0, buf);
}
}
if (StringHasNoText (e2dsp->field_description)) {
sprintf (buf, "Database %s docsum %s has no description", db, dsf);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
if (e2dsp->field_type < 0) {
sprintf (buf, "Database %s docsum %s field type not indicated", db, dsf);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
}
if (e2db->docsum_field_count != dsfcount) {
sprintf (buf, "Database %s docsum count %ld does not match lnkcount %d", db, (long) e2db->docsum_field_count, (int) dsfcount);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
}
if (e2ip->db_count != dbcount) {
sprintf (buf, "Database count %ld does not match dbcount %d", (long) e2ip->db_count, (int) dbcount);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
menuhead = ValNodeSort (menuhead, SortVnpByStr);
last = NULL;
lastvnp = NULL;
for (vnp = menuhead; vnp != NULL; vnp = vnp->next) {
str = (CharPtr) vnp->data.ptrvalue;
if (StringHasNoText (str)) continue;
if (last != NULL && lastvnp != NULL) {
if (StringICmp (last, str) == 0 && StringCmp (last, str) != 0) {
sprintf (buf, "Menu names %s [%s] and %s [%s] differ in capitalization", last, dbnames [lastvnp->choice], str, dbnames [vnp->choice]);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
} else if (checkMenuNameVariants) {
len1 = StringLen (last);
len2 = StringLen (str);
if (len1 < len2) {
if (StringNICmp (last, str, len1) == 0) {
if (StringICmp (last, "Gene Map") == 0 && StringICmp (str, "Gene Map Disorder") == 0) {
} else if (StringICmp (last, "Organism") == 0 && StringICmp (str, "Organism unsynonymized") == 0) {
} else if (StringICmp (last, "Reference") == 0 && StringICmp (str, "Reference Author") == 0) {
} else if (StringICmp (last, "Reference") == 0 && StringICmp (str, "Reference SNP ID") == 0) {
} else if (StringICmp (last, "Title") == 0 && StringICmp (str, "Title/Abstract") == 0) {
} else if (StringICmp (last, "Rank") == 0 && StringICmp (str, "Ranked standard deviation") == 0) {
} else if (StringICmp (last, "Book") == 0 && StringICmp (str, "Book's Topic") == 0) {
} else if (StringICmp (last, "Gene Name") == 0 && StringICmp (str, "Gene Name or Description") == 0) {
} else if (StringICmp (last, "Submitter") == 0 && StringICmp (str, "Submitter Handle") == 0) {
} else if (StringICmp (last, "Abstract") == 0 && StringICmp (str, "Abstract/Index Tags") == 0) {
} else if (StringICmp (last, "Author") == 0 && StringICmp (str, "Author Full Name") == 0) {
} else if (StringICmp (last, "Expression") == 0 && StringICmp (str, "Expression Level") == 0) {
} else if (StringICmp (last, "Chromosome") == 0 && StringICmp (str, "Chromosome GI") == 0) {
} else if (StringICmp (last, "Disease") == 0 && StringICmp (str, "Disease or phenotype") == 0) {
} else if (StringICmp (last, "GC") == 0 && StringICmp (str, "GC Content") == 0) {
} else if (StringICmp (last, "Organism") == 0 && StringICmp (str, "Organism Motility") == 0) {
} else if (StringICmp (last, "Publisher") == 0 && StringICmp (str, "Publisher ID") == 0) {
} else if (StringICmp (last, "Disease") == 0 && StringICmp (str, "Disease-Stage") == 0) {
} else if (StringICmp (last, "ActiveAid") == 0 && StringICmp (str, "ActiveAidCount") == 0) {
} else if (StringICmp (last, "InactiveAid") == 0 && StringICmp (str, "InactiveAidCount") == 0) {
} else if (StringICmp (last, "Phenotype") == 0 && StringICmp (str, "Phenotype Ontology ID") == 0) {
} else if (StringICmp (last, "Title") == 0 && StringICmp (str, "Title Abbreviation") == 0) {
} else if (StringICmp (last, "Library") == 0 && StringICmp (str, "Library Class") == 0) {
} else if (StringICmp (last, "Sequence") == 0 && StringICmp (str, "Sequence Count") == 0) {
} else if (StringICmp (last, "Journal") == 0 && StringICmp (str, "Journal List Identifier") == 0) {
} else if (StringICmp (last, "CompoundID") == 0 && StringICmp (str, "CompoundIDActive") == 0) {
} else if (StringICmp (last, "MeSHDescription") == 0 && StringICmp (str, "MeSHDescriptionActive") == 0) {
} else if (StringICmp (last, "MeSHTerm") == 0 && StringICmp (str, "MeSHTermActive") == 0) {
} else if (StringICmp (last, "PharmAction") == 0 && StringICmp (str, "PharmActionActive") == 0) {
} else if (StringICmp (last, "SubstanceID") == 0 && StringICmp (str, "SubstanceIDActive") == 0) {
} else if (StringICmp (last, "Synonym") == 0 && StringICmp (str, "SynonymActive") == 0) {
} else if (StringICmp (last, "Definition") == 0 && StringICmp (str, "Definition Type") == 0) {
} else if (StringICmp (last, "Reference") == 0 && StringICmp (str, "Reference Amino Acid") == 0) {
} else if (StringICmp (last, "Reference SNP") == 0 && StringICmp (str, "Reference SNP ID") == 0) {
} else if (StringICmp (last, "Analysis") == 0 && StringICmp (str, "Analysis ID") == 0) {
} else if (StringICmp (last, "Document") == 0 && StringICmp (str, "Document ID") == 0) {
} else if (StringICmp (last, "Study") == 0 && StringICmp (str, "Study ID") == 0) {
} else if (StringICmp (last, "Variable") == 0 && StringICmp (str, "Variable ID") == 0) {
} else if (StringICmp (last, "COG") == 0 && StringICmp (str, "COG group") == 0) {
} else if (StringICmp (last, "Locus Tag") == 0 && StringICmp (str, "Locus Tag Prefix") == 0) {
} else if (StringICmp (last, "Attribute") == 0 && StringICmp (str, "Attributes") == 0) {
} else if (StringICmp (last, "Genotype") == 0 && StringICmp (str, "Genotype Platform") == 0) {
} else if (StringICmp (last, "Group") == 0 && StringICmp (str, "Group ID") == 0) {
} else if (StringICmp (last, "Clinical Synopsis") == 0 && StringICmp (str, "Clinical Synopsis Date") == 0) {
} else if (StringICmp (last, "Volume") == 0 && StringICmp (str, "Volume3D") == 0) {
} else if (StringICmp (last, "InChI") == 0 && StringICmp (str, "InChIKey") == 0) {
} else if (StringICmp (last, "Dataset") == 0 && StringICmp (str, "Dataset ID") == 0) {
} else if (StringICmp (last, "Comment") == 0 && StringICmp (str, "Comments") == 0) {
} else if (StringICmp (last, "SID") == 0 && StringICmp (str, "SidExternalID") == 0) {
} else if (StringICmp (last, "Platform") == 0 && StringICmp (str, "Platform Reporter Type") == 0) {
} else if (StringICmp (last, "Database") == 0 && StringICmp (str, "Database Name") == 0) {
} else {
sprintf (buf, "Menu names %s [%s] and %s [%s] may be unintended variants", last, dbnames [lastvnp->choice], str, dbnames [vnp->choice]);
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
}
}
}
} else if (StringICmp (str, "Title Word") == 0) {
sprintf (buf, "Menu name Title Word should be replaced by Title");
ValNodeCopyStr (head, 0, buf);
rsult = FALSE;
}
last = str;
lastvnp = vnp;
}
ValNodeFreeData (menuhead);
return rsult;
}
NLM_EXTERN Boolean ValidateEntrez2InfoPtr (
Entrez2InfoPtr e2ip,
ValNodePtr PNTR head
)
{
return ValidateEntrez2InfoPtrEx (e2ip, head, FALSE);
}
/* network connection test functions */
static CONN NetTestOpenConnection (void)
{
char buffer [64];
CONN conn;
size_t n_written;
EIO_Status status;
conn = QUERY_OpenUrlQuery ("www.ncbi.nlm.nih.gov", 80, "/Service/bounce.cgi",
NULL, "Entrez2Tool", 0, eMIME_T_Text,
eMIME_Plain, eENCOD_None, 0);
if (conn == NULL) return NULL;
sprintf (buffer, "test\n");
buffer [4] = '\012';
status = CONN_Write (conn, (const void *) buffer, StringLen (buffer),
&n_written, eIO_WritePersist);
if (status != eIO_Success) {
CONN_Close (conn);
return NULL;
}
return conn;
}
NLM_EXTERN Boolean NetTestAsynchronousQuery (
QUEUE* queue,
QueryResultProc resultproc,
VoidPtr userdata
)
{
CONN conn;
conn = NetTestOpenConnection ();
if (conn == NULL) return FALSE;
QUERY_SendQuery (conn);
QUERY_AddToQueue (queue, conn, resultproc, userdata, TRUE);
return TRUE;
}
NLM_EXTERN Boolean NetTestReadReply (
CONN conn,
EIO_Status status
)
{
char buffer [64];
size_t n_read;
ErrSev oldsev;
Boolean res = FALSE;
if (conn != NULL && status == eIO_Success) {
oldsev = ErrSetMessageLevel (SEV_MAX);
status = CONN_Read (conn, buffer, sizeof (buffer), &n_read, eIO_ReadPlain);
if (status == eIO_Success) {
if (StringNCmp (buffer, "test", 4) == 0) {
res = TRUE;
}
}
ErrSetMessageLevel (oldsev);
}
return res;
}
NLM_EXTERN Int4 NetTestCheckQueue (
QUEUE* queue
)
{
return QUERY_CheckQueue (queue);
}
|