blast_message.c
上传用户:yhdzpy8989
上传日期:2007-06-13
资源大小:13604k
文件大小:5k
源码类别:

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: blast_message.c,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 18:07:28  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.12
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: blast_message.c,v 1000.2 2004/06/01 18:07:28 gouriano Exp $
  10.  * ===========================================================================
  11.  *
  12.  *                            PUBLIC DOMAIN NOTICE
  13.  *               National Center for Biotechnology Information
  14.  *
  15.  *  This software/database is a "United States Government Work" under the
  16.  *  terms of the United States Copyright Act.  It was written as part of
  17.  *  the author's offical duties as a United States Government employee and
  18.  *  thus cannot be copyrighted.  This software/database is freely available
  19.  *  to the public for use. The National Library of Medicine and the U.S.
  20.  *  Government have not placed any restriction on its use or reproduction.
  21.  *
  22.  *  Although all reasonable efforts have been taken to ensure the accuracy
  23.  *  and reliability of the software and data, the NLM and the U.S.
  24.  *  Government do not and cannot warrant the performance or results that
  25.  *  may be obtained by using this software or data. The NLM and the U.S.
  26.  *  Government disclaim all warranties, express or implied, including
  27.  *  warranties of performance, merchantability or fitness for any particular
  28.  *  purpose.
  29.  *
  30.  *  Please cite the author in any work or product based on this material.
  31.  *
  32.  * ===========================================================================
  33.  */
  34. /** @file blast_message.c
  35.  * @todo FIXME needs file description & doxygen comments
  36.  */
  37. static char const rcsid[] = 
  38.     "$Id: blast_message.c,v 1000.2 2004/06/01 18:07:28 gouriano Exp $";
  39. #include <algo/blast/core/blast_message.h>
  40. /*
  41. Deallocates message memory.
  42. */
  43. Blast_Message* 
  44. Blast_MessageFree(Blast_Message* blast_msg)
  45. {
  46. if (blast_msg == NULL)
  47. return NULL;
  48. sfree(blast_msg->message);
  49. sfree(blast_msg);
  50. return NULL;
  51. }
  52. /*
  53. Writes a message to a structure.
  54. */
  55. Int2 
  56. Blast_MessageWrite(Blast_Message* *blast_msg, BlastSeverity severity, 
  57.                    Int4 code, Int4 subcode, const char *message)
  58. {
  59. if (blast_msg == NULL)
  60. return 1;
  61. *blast_msg = (Blast_Message*) malloc(sizeof(Blast_Message));
  62. (*blast_msg)->severity = severity;
  63. (*blast_msg)->code = code;
  64. (*blast_msg)->subcode = subcode;
  65. (*blast_msg)->message = strdup(message);
  66. return 0;
  67. }
  68. /*
  69. Print a message with ErrPostEx
  70. */
  71. Int2 
  72. Blast_MessagePost(Blast_Message* blast_msg)
  73. {
  74. if (blast_msg == NULL)
  75. return 1;
  76. /*ErrPostEx(blast_msg->severity, blast_msg->code, blast_msg->subcode, "%s", blast_msg->message);*/
  77. fprintf(stderr, "%s", blast_msg->message); /* FIXME! */
  78. return 0;
  79. }
  80. /*
  81.  * ===========================================================================
  82.  *
  83.  * $Log: blast_message.c,v $
  84.  * Revision 1000.2  2004/06/01 18:07:28  gouriano
  85.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.12
  86.  *
  87.  * Revision 1.12  2004/05/19 14:52:02  camacho
  88.  * 1. Added doxygen tags to enable doxygen processing of algo/blast/core
  89.  * 2. Standardized copyright, CVS $Id string, $Log and rcsid formatting and i
  90.  *    location
  91.  * 3. Added use of @todo doxygen keyword
  92.  *
  93.  * Revision 1.11  2004/02/19 21:16:00  dondosha
  94.  * Use enum type for severity argument in Blast_MessageWrite
  95.  *
  96.  * Revision 1.10  2003/08/11 15:01:59  dondosha
  97.  * Added algo/blast/core to all #included headers
  98.  *
  99.  * Revision 1.9  2003/07/31 14:31:41  camacho
  100.  * Replaced Char for char
  101.  *
  102.  * Revision 1.8  2003/07/31 00:32:37  camacho
  103.  * Eliminated Ptr notation
  104.  *
  105.  * Revision 1.7  2003/07/30 16:32:02  madden
  106.  * Use ansi functions when possible
  107.  *
  108.  * Revision 1.6  2003/07/29 14:42:31  coulouri
  109.  * use strdup() instead of StringSave()
  110.  *
  111.  * Revision 1.5  2003/07/25 21:12:28  coulouri
  112.  * remove constructions of the form "return sfree();" and "a=sfree(a);"
  113.  *
  114.  * Revision 1.4  2003/07/25 19:11:16  camacho
  115.  * Change VoidPtr to const void* in compare functions
  116.  *
  117.  * Revision 1.3  2003/07/25 17:25:43  coulouri
  118.  * in progres:
  119.  *  * use malloc/calloc/realloc instead of Malloc/Calloc/Realloc
  120.  *  * add sfree() macro and __sfree() helper function to util.[ch]
  121.  *  * use sfree() instead of MemFree()
  122.  *
  123.  * Revision 1.2  2003/05/15 22:01:22  coulouri
  124.  * add rcsid string to sources
  125.  *
  126.  * Revision 1.1  2003/03/31 18:22:30  camacho
  127.  * Moved from parent directory
  128.  *
  129.  * Revision 1.2  2003/03/04 14:09:14  madden
  130.  * Fix prototype problem
  131.  *
  132.  * Revision 1.1  2003/02/13 21:38:54  madden
  133.  * Files for messaging warnings etc.
  134.  *
  135.  * ===========================================================================
  136.  */