📄 blast_hspstream.h
字号:
/* * =========================================================================== * PRODUCTION $Log: blast_hspstream.h,v $ * PRODUCTION Revision 1000.0 2004/06/01 18:11:53 gouriano * PRODUCTION PRODUCTION: IMPORTED [GCC34_MSVC7] Dev-tree R1.1 * PRODUCTION * =========================================================================== */#ifndef ALGO_BLAST_CORE__BLAST_HSPSTREAM_H#define ALGO_BLAST_CORE__BLAST_HSPSTREAM_H/* $Id: blast_hspstream.h,v 1000.0 2004/06/01 18:11:53 gouriano Exp $ * =========================================================================== * * PUBLIC DOMAIN NOTICE * National Center for Biotechnology Information * * 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 have not placed any restriction on its use or reproduction. * * 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. * * Please cite the author in any work or product based on this material. * * =========================================================================== * * Author: Christiam Camacho * *//** @file blast_hspstream.h * Declaration of ADT to save and retrieve lists of HSPs in the BLAST engine. */#include <algo/blast/core/blast_hits.h>#ifdef __cplusplusextern "C" {#endif/** The BlastHSPStream ADT is an opaque data type that defines a thread-safe * interface which is used by the core BLAST code to save lists of HSPs. * The interface currently provides the following services: * - Management of the ADT (construction, destruction) * - Writing lists of HSPs to the ADT * - Reading lists of HSPs from the ADT * . * The default implementation simply buffers HSPs from one stage of the * algorithm to the next @sa FIXME * Implementations of this interface should provide functions for all * the functions listed above. */typedef struct BlastHSPStream BlastHSPStream;/** Function pointer typedef to create a new BlastHSPStream structure. * First argument is a pointer to the structure to be populated (allocated for * client implementations), second argument should be typecast'd to the * correct type by user-defined constructor function */typedef BlastHSPStream* (*BlastHSPStreamConstructor) (BlastHSPStream*, void*);/** Function pointer typedef to deallocate a BlastHSPStream structure. * Argument is the BlastHSPStream structure to free, always returns NULL. */typedef BlastHSPStream* (*BlastHSPStreamDestructor) (BlastHSPStream*);/** Function pointer typedef to implement the read/write functionality of the * BlastHSPStream. The first argument is the BlastHSPStream structure used, * second argument is the list of HSPs to be saved/read (reading assumes * ownership, writing releases ownership) */typedef int (*BlastHSPStreamMethod) (BlastHSPStream*, BlastHSPList**);/*****************************************************************************//** Structure that contains the information needed for BlastHSPStreamNew to * fully populate the BlastHSPStream structure it returns */typedef struct BlastHSPStreamNewInfo { BlastHSPStreamConstructor constructor; /**< User-defined function to initialize a BlastHSPStream structure */ void* ctor_argument; /**< Argument to the above function */} BlastHSPStreamNewInfo;/** Allocates memory for a BlastHSPStream structure and then invokes the * constructor function defined in its first argument, passing the * ctor_argument member of that same structure. If the constructor function * pointer is not set, NULL is returned. * @param bhsn_info Structure defining constructor and its argument to be * invoked from this function [in] */BlastHSPStream* BlastHSPStreamNew(const BlastHSPStreamNewInfo* bhsn_info);/** Frees the BlastHSPStream structure by invoking the destructor function set * by the user-defined constructor function when the structure is initialized * (indirectly, by BlastHSPStreamNew). If the destructor function pointer is not * set, a memory leak could occur. * @param hsp_stream BlastHSPStream to free [in] * @return NULL */BlastHSPStream* BlastHSPStreamFree(BlastHSPStream* hsp_stream);/** Standard error return value for BlastHSPStream methods */extern const int kBlastHSPStream_Error;/** Standard success return value for BlastHSPStream methods */extern const int kBlastHSPStream_Success;/** Return value when the end of the stream is reached (applicable to read * method only) */extern const int kBlastHSPStream_Eof;/** Invokes the user-specified write function for this BlastHSPStream * implementation. * @param hsp_stream The BlastHSPStream object [in] * @param hsp_list List of HSPs for the HSPStream to keep track of. The caller * releases ownership of the hsp_list [in] * @return kBlastHSPStream_Success on success, otherwise kBlastHSPStream_Error */int BlastHSPStreamWrite(BlastHSPStream* hsp_stream, BlastHSPList** hsp_list);/** Invokes the user-specified read function for this BlastHSPStream * implementation. * @param hsp_stream The BlastHSPStream object [in] * @param hsp_list List of HSPs for the HSPStream to return. The caller * acquires ownership of the hsp_list [in] * @return kBlastHSPStream_Success on success, kBlastHSPStream_Error, or * kBlastHSPStream_Eof on end of stream */int BlastHSPStreamRead(BlastHSPStream* hsp_stream, BlastHSPList** hsp_list);/*****************************************************************************//* The following enumeration and function are only of interest to implementors * of this interface *//** Defines the methods supported by the BlastHSPStream ADT */typedef enum EMethodName { eConstructor, /**< Constructor for a BlastHSPStream implementation */ eDestructor, /**< Destructor for a BlastHSPStream implementation */ eRead, /**< Read from the BlastHSPStream */ eWrite, /**< Write to the BlastHSPStream */ eMethodBoundary /**< Limit to facilitate error checking */} EMethodName;/** Union to encapsulate the supported methods on the BlastHSPStream interface */typedef union BlastHSPStreamFunctionPointerTypes { /** Used for read/write function pointers */ BlastHSPStreamMethod method; /** Used for constructor function pointer */ BlastHSPStreamConstructor ctor; /** Used for destructor function pointer */ BlastHSPStreamDestructor dtor; } BlastHSPStreamFunctionPointerTypes;/** Sets implementation specific data structure * @param hsp_stream structure to initialize [in] * @param data structure to assign to the hsp_stream [in] * @return kBlastHSPStream_Error if hsp_stream is NULL else, * kBlastHSPStream_Success; */int SetData(BlastHSPStream* hsp_stream, void* data);/** Gets implementation specific data structure * @param hsp_stream structure from which to obtain the internal data. It is * expected that the caller (implementation of BlastHSPStream) knows what type * to cast the return value to. [in] * @return pointer to internal data structure of the implementation of the * BlastHSPStream, or NULL if hsp_stream is NULL */void* GetData(BlastHSPStream* hsp_stream);/** Use this function to set the pointers to functions implementing the various * methods supported in the BlastHSPStream interface * @param hsp_stream structure to initialize [in] * @param name method for which a function pointer is being provided [in] * @param fnptr_type union containing the pointer to the function specified by * name [in] * @return kBlastHSPStream_Error if hsp_stream is NULL else, * kBlastHSPStream_Success; */int SetMethod(BlastHSPStream* hsp_stream, EMethodName name, BlastHSPStreamFunctionPointerTypes fnptr_type);#ifdef __cplusplus}#endif#endif /* ALGO_BLAST_CORE__BLAST_HSPSTREAM_H */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -