/usr/include/ncbi/pmfapi.h is in libncbi6-dev 6.1.20120620-7.
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 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 | /* pmfapi.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: pmfapi.h
*
* Author: Jonathan Kans
*
* Version Creation Date: 5/5/00
*
* $Revision: 1.34 $
*
* File Description:
*
* Modifications:
* --------------------------------------------------------------------------
*
* ==========================================================================
*/
#ifndef _PMFAPI_
#define _PMFAPI_
#include <ncbi.h>
#include <asn.h>
#include <objmedli.h>
#include <objpubme.h>
#include <objsset.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
/* low-level connection functions */
NLM_EXTERN CONN PubMedFetchOpenConnection (
Int4 uid
);
NLM_EXTERN CONN PubSeqFetchOpenConnection (
Int4 uid,
Int2 retcode,
Int4 flags
);
NLM_EXTERN CONN PubSeqFetchOpenConnectionString (
CharPtr id,
Int2 retcode,
Int4 flags
);
NLM_EXTERN CONN PubSeqFetchTraceOpenConnection (
Uint4 tid,
Int2 retcode,
Int4 flags
);
NLM_EXTERN CONN PubSeqFetchSRAOpenConnection (
CharPtr sraid
);
NLM_EXTERN CONN GiRevHistOpenConnection (
Int4 uid,
Int4 num,
Int4Ptr uids
);
NLM_EXTERN CONN GiAccVerOpenConnection (
Int4 uid,
Int4 num,
Int4Ptr uids
);
NLM_EXTERN CONN AccnRevHistOpenConnection (
CharPtr accn
);
NLM_EXTERN CONN GiSeqIdSetOpenConnection (
Int4 gi
);
NLM_EXTERN CONN AccnListOpenConnection (
CharPtr PNTR accns
);
NLM_EXTERN PubmedEntryPtr PubMedWaitForReply (
CONN conn
);
NLM_EXTERN SeqEntryPtr PubSeqWaitForReply (
CONN conn
);
NLM_EXTERN CharPtr GiRevHistWaitForReply (
CONN conn
);
NLM_EXTERN CharPtr GiAccVerWaitForReply (
CONN conn
);
NLM_EXTERN Int4 AccnRevHistWaitForReply (
CONN conn
);
NLM_EXTERN SeqIdPtr GiSeqIdSetWaitForReply (
CONN conn
);
NLM_EXTERN CharPtr AccnListWaitForReply (
CONN conn
);
/*
PubMedSynchronousQuery and PubSeqSynchronousQuery open a
connection, send a uid request, and wait for a reply
*/
NLM_EXTERN PubmedEntryPtr PubMedSynchronousQuery (
Int4 uid
);
NLM_EXTERN SeqEntryPtr PubSeqSynchronousQueryEx (
Int4 uid,
Int2 retcode,
Int4 flags,
CharPtr id_str
);
NLM_EXTERN SeqEntryPtr PubSeqSynchronousQuery (
Int4 uid,
Int2 retcode,
Int4 flags
);
NLM_EXTERN SeqEntryPtr PubSeqSynchronousQueryId (
SeqIdPtr sip,
Int2 retcode,
Int4 flags
);
NLM_EXTERN SeqIdPtr SeqIdFromPubSeqString (CharPtr str);
NLM_EXTERN SeqEntryPtr PubSeqSynchronousQueryString (
CharPtr str,
Int2 retcode,
Int4 flags
);
NLM_EXTERN SeqEntryPtr PubSeqSynchronousQueryTI (
Uint4 tid,
Int2 retcode,
Int4 flags
);
NLM_EXTERN SeqEntryPtr PubSeqSynchronousQuerySRA (
CharPtr sraid
);
NLM_EXTERN CharPtr GiRevHistSynchronousQuery (
Int4 uid,
Int4 num,
Int4Ptr uids
);
NLM_EXTERN CharPtr GiAccVerSynchronousQuery (
Int4 uid,
Int4 num,
Int4Ptr uids
);
NLM_EXTERN Int4 AccnRevHistSynchronousQuery (
CharPtr accn
);
NLM_EXTERN SeqIdPtr GiSeqIdSetSynchronousQuery (
Int4 gi
);
NLM_EXTERN CharPtr AccnListSynchronousQuery (
CharPtr PNTR accns
);
/*
PubMedAsynchronousQuery and PubSeqAsynchronousQuery open
connection, send request, and queue completion routine
using urlquery queueing mechanism.
PubMedCheckQueue and PubSeqCheckQueue should be called
several times a second with a timer. They each call
QUERY_CheckQueue to poll connection, which calls completion
routine when result is available, cleaning up connection
afterwards.
PubMedReadReply and PubSeqReadReply take conn and status
parameters from completion routine and reads PubmedEntryPtr
or SeqEntryPtr.
*/
NLM_EXTERN Boolean PubMedAsynchronousQuery (
Int4 uid,
QUEUE* q,
QueryResultProc resultproc,
VoidPtr userdata
);
NLM_EXTERN Int4 PubMedCheckQueue (
QUEUE* q
);
NLM_EXTERN PubmedEntryPtr PubMedReadReply (
CONN conn,
EIO_Status status
);
NLM_EXTERN Boolean PubSeqAsynchronousQuery (
Int4 uid,
Int2 retcode,
Int4 flags,
QUEUE* q,
QueryResultProc resultproc,
VoidPtr userdata
);
NLM_EXTERN Int4 PubSeqCheckQueue (
QUEUE* q
);
NLM_EXTERN SeqEntryPtr PubSeqReadReply (
CONN conn,
EIO_Status status
);
NLM_EXTERN Boolean GiRevHistAsynchronousQuery (
Int4 uid,
Int4 num,
Int4Ptr uids,
QUEUE* q,
QueryResultProc resultproc,
VoidPtr userdata
);
NLM_EXTERN Int4 GiRevHistCheckQueue (
QUEUE* q
);
NLM_EXTERN CharPtr GiRevHistReadReply (
CONN conn,
EIO_Status status
);
NLM_EXTERN Boolean GiAccVerAsynchronousQuery (
Int4 uid,
Int4 num,
Int4Ptr uids,
QUEUE* q,
QueryResultProc resultproc,
VoidPtr userdata
);
NLM_EXTERN Int4 GiAccVerCheckQueue (
QUEUE* q
);
NLM_EXTERN CharPtr GiAccVerReadReply (
CONN conn,
EIO_Status status
);
NLM_EXTERN Boolean AccnRevHistAsynchronousQuery (
CharPtr accn,
QUEUE* q,
QueryResultProc resultproc,
VoidPtr userdata
);
NLM_EXTERN Int4 AccnRevHistCheckQueue (
QUEUE* q
);
NLM_EXTERN Int4 AccnRevHistReadReply (
CONN conn,
EIO_Status status
);
NLM_EXTERN Boolean GiSeqIdSetAsynchronousQuery (
Int4 gi,
QUEUE* queue,
QueryResultProc resultproc,
VoidPtr userdata
);
NLM_EXTERN Int4 GiSeqIdSetCheckQueue (
QUEUE* queue
);
NLM_EXTERN SeqIdPtr GiSeqIdSetReadReply (
CONN conn,
EIO_Status status
);
NLM_EXTERN Boolean AccnListAsynchronousQuery (
CharPtr PNTR accns,
QUEUE* queue,
QueryResultProc resultproc,
VoidPtr userdata
);
NLM_EXTERN Int4 AccnListCheckQueue (
QUEUE* queue
);
NLM_EXTERN CharPtr AccnListReadReply (
CONN conn,
EIO_Status status
);
/* PMID fetch registration function */
NLM_EXTERN Boolean PubMedFetchEnable (
void
);
NLM_EXTERN void PubMedFetchDisable (
void
);
/* SeqId fetch registration function */
NLM_EXTERN Boolean PubSeqFetchEnable (
void
);
NLM_EXTERN Boolean PubSeqFetchEnableEx (
Boolean fetch,
Boolean seqidtogi,
Boolean gitoseqid,
Boolean precache,
Boolean seqidset,
Int4 flags
);
NLM_EXTERN void PubSeqFetchDisable (
void
);
/* multiple SeqId preload into cache functions */
NLM_EXTERN Int4 GiRevHistPreLoadSeqIdGiCache (
Int4 num,
Int4Ptr uids
);
NLM_EXTERN Int4 GiRevHistPreLoadSeqIdGiCacheEx (
Int4 num,
Int4Ptr uids,
Boolean filter
);
NLM_EXTERN Int4 LIBCALLBACK GiRevHistLookupFarSeqIDs (
SeqEntryPtr sep,
Boolean components,
Boolean locations,
Boolean products,
Boolean alignments,
Boolean history,
Boolean inference,
Boolean others
);
NLM_EXTERN Int4 AccnListPreLoadSeqIdGiCache (
CharPtr PNTR accns
);
/* SeqId chain fetch function */
NLM_EXTERN SeqIdPtr LIBCALLBACK GiRevHistLookupSeqIdSet (
Int4 gi
);
/* multiple Accession bulk lookup or preload section */
typedef void (LIBCALLBACK *CacheAccnListProc) (
Int4 gi,
CharPtr accnver
);
/*
CacheAccnList takes the AccnList query result, and calls the
user callback if it is not NULL, otherwise it preloads the
sequence manager gi/accession lookup cache. Used internally
by AccnListPreLoadSeqIdGiCache function.
*/
NLM_EXTERN Int4 CacheAccnList (
CharPtr str,
CacheAccnListProc userfunc
);
#ifdef __cplusplus
}
#endif
#undef NLM_EXTERN
#ifdef NLM_EXPORT
#define NLM_EXTERN NLM_EXPORT
#else
#define NLM_EXTERN
#endif
#endif /* _PMFAPI_ */
|