/usr/include/ncbi/ent2api.h is in libncbi6-dev 6.1.20110713-3ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /* ent2api.h
* ===========================================================================
*
* 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.h
*
* Author: Jonathan Kans
*
* Version Creation Date: 7/29/99
*
* $Revision: 1.31 $
*
* File Description:
*
* Modifications:
* --------------------------------------------------------------------------
*
* ==========================================================================
*/
#ifndef _ENT2API_
#define _ENT2API_
#include <ncbi.h>
#include <asn.h>
#include <objent2.h>
#include <urlquery.h>
#undef NLM_EXTERN
#ifdef NLM_IMPORT
#define NLM_EXTERN NLM_IMPORT
#else
#define NLM_EXTERN extern
#endif
#ifdef __cplusplus
extern "C" {
#endif
/* See network connection test functions at bottom of this header */
/* See synchronous and asynchronous code examples at bottom of this header */
/* utility functions */
NLM_EXTERN void EntrezSetProgramName (
const char* progname
);
/* use Entrez2Test to override default Entrez2 ncbi named service */
NLM_EXTERN void EntrezSetService (
const char* service
);
/* low-level connection functions */
/*
EntrezOpenConnection now takes optional request
pointer, extracts db, and passes that to load
balancer.
*/
NLM_EXTERN CONN EntrezOpenConnection (
Entrez2RequestPtr e2rq
);
NLM_EXTERN Entrez2ReplyPtr EntrezWaitForReply (
CONN conn
);
/*
EntrezSynchronousQuery opens connection, sends
Entrez2Request ASN.1 query, and waits for reply,
cleaning up connection afterwards.
*/
NLM_EXTERN Entrez2ReplyPtr EntrezSynchronousQuery (
Entrez2RequestPtr e2rq
);
/*
EntrezAsynchronousQuery opens connection, sends
request, and queues completion routine using urlquery
queueing mechanism.
EntrezCheckQueue should be called several times a
second with a timer. It calls QUERY_CheckQueue to
poll connection, which calls completion routine when
result is available, cleaning up connection afterwards.
EntrezReadReply takes conn and status parameters from
completion routine and reads Entrez2ReplyPtr.
*/
NLM_EXTERN Boolean EntrezAsynchronousQuery (
Entrez2RequestPtr e2rq,
QUEUE* queue,
QueryResultProc resultproc,
VoidPtr userdata
);
NLM_EXTERN Int4 EntrezCheckQueue (
QUEUE* queue
);
NLM_EXTERN Entrez2ReplyPtr EntrezReadReply (
CONN conn,
EIO_Status status
);
/* request creation functions */
NLM_EXTERN Entrez2IdListPtr EntrezCreateEntrezIdList (
const char* db,
Int4 uid,
Int4 num,
const Int4 uids[],
ByteStorePtr bs
);
NLM_EXTERN Entrez2LimitsPtr EntrezCreateEntrezLimits (
Int4 begin_date,
Int4 end_date,
const char* type_date,
Int4 max_uids,
Int4 offset_uids
);
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetInfoRequest (
void
);
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
);
#define ENTREZ_OP_NONE 0
#define ENTREZ_OP_AND 1
#define ENTREZ_OP_OR 2
#define ENTREZ_OP_BUTNOT 3
#define ENTREZ_OP_RANGE 4
#define ENTREZ_OP_LEFT_PAREN 5
#define ENTREZ_OP_RIGHT_PAREN 6
NLM_EXTERN void EntrezAddToBooleanRequest (
Entrez2RequestPtr e2rp,
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
);
#define EntrezCreateDocsumRequest EntrezCreateDocSumRequest
NLM_EXTERN Entrez2RequestPtr EntrezCreateDocSumRequest (
const char* db,
Int4 uid,
Int4 num,
const Int4 uids[],
ByteStorePtr bs
);
#define EntrezCreateGetTermPosRequest EntrezCreateGetTermPositionRequest
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetTermPositionRequest (
const char* db,
const char* field,
const char* term
);
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetTermListRequest (
const char* db,
const char* field,
Int4 first_term_pos,
Int4 num_terms
);
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetTermHierarchyRequest (
const char* db,
const char* field,
const char* term,
Int4 txid
);
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
);
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
);
NLM_EXTERN Entrez2RequestPtr EntrezCreateGetLinkCountsRequest (
const char* db,
Int4 uid
);
/* history needs to be used for Boolean ids and key queries */
NLM_EXTERN void EntrezSetUseHistoryFlag (
Entrez2RequestPtr e2rq
);
/* reply extraction functions - these free the enclosing Entrez2ReplyPtr */
NLM_EXTERN char* EntrezExtractErrorReply (
Entrez2ReplyPtr e2ry
);
NLM_EXTERN Entrez2InfoPtr EntrezExtractInfoReply (
Entrez2ReplyPtr e2ry
);
NLM_EXTERN Entrez2BooleanReplyPtr EntrezExtractBooleanReply (
Entrez2ReplyPtr e2ry
);
NLM_EXTERN Entrez2DocsumListPtr EntrezExtractDocsumReply (
Entrez2ReplyPtr e2ry
);
NLM_EXTERN Int4 EntrezExtractTermPosReply (
Entrez2ReplyPtr e2ry
);
NLM_EXTERN Entrez2TermListPtr EntrezExtractTermListReply (
Entrez2ReplyPtr e2ry
);
NLM_EXTERN Entrez2HierNodePtr EntrezExtractHierNodeReply (
Entrez2ReplyPtr e2ry
);
NLM_EXTERN Entrez2LinkSetPtr EntrezExtractLinksReply (
Entrez2ReplyPtr e2ry
);
NLM_EXTERN Entrez2IdListPtr EntrezExtractLinkedReply (
Entrez2ReplyPtr e2ry
);
NLM_EXTERN Entrez2LinkCountListPtr EntrezExtractLinkCountReply (
Entrez2ReplyPtr e2ry
);
/* special SeqIdString to UID convenience function */
NLM_EXTERN Uint4 EntrezGetUIDforSeqIdString (
const char* db,
const char* seq_id_string
);
/* result validation function */
NLM_EXTERN Boolean ValidateEntrez2InfoPtr (
Entrez2InfoPtr e2ip,
ValNodePtr PNTR head
);
NLM_EXTERN Boolean ValidateEntrez2InfoPtrEx (
Entrez2InfoPtr e2ip,
ValNodePtr PNTR head,
Boolean checkMenuNameVariants
);
NLM_EXTERN Boolean ValidateEntrez2InfoPtrExEx (
Entrez2InfoPtr e2ip,
ValNodePtr PNTR head,
Boolean checkMenuNameVariants,
Boolean checkMenuNameFormat
);
/* sample synchronous query code:
{
Entrez2RequestPtr e2rq;
Entrez2ReplyPtr e2ry;
e2rq = EntrezCreateDocSumRequest ("nucleotide", 1322283, 0, NULL, NULL);
e2ry = EntrezSynchronousQuery (e2rq);
e2rq = Entrez2RequestFree (e2rq);
...
Entrez2ReplyFree (e2ry); -- except if you already extracted subreply
}
*/
/* sample asynchronous query code:
callback (completion routine):
static Boolean LIBCALLBACK MyQueryResultProc (
CONN conn,
VoidPtr userdata,
EIO_Status status
)
{
Entrez2ReplyPtr e2ry;
e2ry = EntrezReadReply (conn, status);
if (e2ry != NULL) {
...
Entrez2ReplyFree (e2ry); -- except if you already extracted subreply
return TRUE;
}
return FALSE;
}
static queue variable:
static QUEUE myquerylist = NULL;
calling function:
{
Entrez2RequestPtr e2rq;
e2rq = EntrezCreateDocSumRequest ("nucleotide", 1322283, 0, NULL, NULL);
EntrezAsynchronousQuery (e2rq, &myquerylist, MyQueryResultProc, NULL);
e2rq = Entrez2RequestFree (e2rq);
}
via timer call:
{
EntrezCheckQueue (&myquerylist);
}
*/
/* network connection test functions */
NLM_EXTERN Boolean NetTestAsynchronousQuery (
QUEUE* queue,
QueryResultProc resultproc,
VoidPtr userdata
);
NLM_EXTERN Boolean NetTestReadReply (
CONN conn,
EIO_Status status
);
NLM_EXTERN Int4 NetTestCheckQueue (
QUEUE* queue
);
#ifdef __cplusplus
}
#endif
#undef NLM_EXTERN
#ifdef NLM_EXPORT
#define NLM_EXTERN NLM_EXPORT
#else
#define NLM_EXTERN
#endif
#endif /* _ENT2API_ */
|