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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: PluginMessage.cpp,v $
  4.  * PRODUCTION Revision 1000.3  2004/06/01 20:53:46  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /* $Id: PluginMessage.cpp,v 1000.3 2004/06/01 20:53:46 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 official 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.  * Author:  .......
  35.  *
  36.  * File Description:
  37.  *   .......
  38.  *
  39.  * Remark:
  40.  *   This code was originally generated by application DATATOOL
  41.  *   using specifications from the data definition file
  42.  *   'plugin.asn'.
  43.  */
  44. // standard includes
  45. #include <ncbi_pch.hpp>
  46. #include <corelib/ncbistd.hpp>
  47. #include <corelib/ncbiatomic.hpp>
  48. #include <serial/enumvalues.hpp>
  49. #include <gui/plugin/AlgoCommand.hpp>
  50. #include <gui/plugin/DataCommand.hpp>
  51. #include <gui/plugin/ViewCommand.hpp>
  52. #include <gui/plugin/PluginCommand.hpp>
  53. #include <gui/plugin/PluginRequest.hpp>
  54. #include <gui/plugin/PluginReply.hpp>
  55. // generated includes
  56. #include <gui/plugin/PluginMessage.hpp>
  57. // generated classes
  58. BEGIN_NCBI_SCOPE
  59. BEGIN_objects_SCOPE // namespace ncbi::objects::
  60. // static members
  61. static CAtomicCounter  s_PluginMsgCounter;
  62. // constructor
  63. CPluginMessage::CPluginMessage(void)
  64.     : m_Id(s_PluginMsgCounter.Add(1))
  65.     , m_Reporter(NULL)
  66. {
  67. }
  68. // destructor
  69. CPluginMessage::~CPluginMessage(void)
  70. {
  71. }
  72. void CPluginMessage::SetReporter(IReporter* reporter)
  73. {
  74.     m_Reporter = reporter;
  75. }
  76. IReporter* CPluginMessage::SetReporter()
  77. {
  78.     return m_Reporter;
  79. }
  80. const IReporter* CPluginMessage::GetReporter() const
  81. {
  82.     return m_Reporter;
  83. }
  84. string CPluginMessage::ToString(void) const
  85. {
  86.     static const string NA("N/A");
  87.     string result;
  88.     result =  "ID: " + NStr::UIntToString(GetId()) + " "; 
  89.     result += "SOURCE: " + (IsSetSource() ? GetSource() : NA) + ", ";
  90.     result += "DEST: " + (IsSetDestination() ? GetDestination() : NA);
  91.     //
  92.     // process the request portion
  93.     //
  94.     {{
  95.         const TRequest& request = GetRequest();
  96.         int cmd;
  97.         const CEnumeratedTypeValues* ev = 0;
  98.         switch ( request.Which() ) {
  99.         case CPluginRequest::e_View:
  100.             cmd = request.GetView().IsSetCommand() ?
  101.                 request.GetView().GetCommand() : eViewCommand_no_command;
  102.             ev = GetTypeInfo_enum_EViewCommand();
  103.             result += " COMMAND: eViewCommand_" + ev->FindName(cmd, true);
  104.             break;
  105.         case CPluginRequest::e_Algo:
  106.             cmd = request.GetAlgo().IsSetCommand() ?
  107.                 request.GetAlgo().GetCommand() : eAlgoCommand_no_command;
  108.             ev = GetTypeInfo_enum_EAlgoCommand();
  109.             result += " COMMAND: eAlgoCommand_" + ev->FindName(cmd, true);
  110.             break;
  111.         case CPluginRequest::e_Data:
  112.             cmd = request.GetData().IsSetCommand() ?
  113.                 request.GetData().GetCommand() : eDataCommand_no_command;
  114.             ev = GetTypeInfo_enum_EDataCommand();
  115.             result += " COMMAND: eDataCommand_" + ev->FindName(cmd, true);
  116.             break;
  117.         default:
  118.             break;
  119.         }
  120.     }}
  121.     //
  122.     // process the reply portion
  123.     //
  124.     {{
  125.         const CPluginReply& reply = GetReply();
  126.         /** FIXME: replace with in-reply-to
  127.         // reply-to
  128.         if ( reply.IsSetRequest() ) {
  129.             const CPluginReply::TRequest& request = 
  130.                 reply.GetRequest();
  131.         
  132.             result += "REPLY TO: " + 
  133.                 NStr::UIntToString(request.GetId()) + ", ";
  134.         }
  135.         **/
  136.         // status
  137.         EMessageStatus status = reply.IsSetStatus() ?
  138.             reply.GetStatus() : eMessageStatus_failed;
  139.         result += " STATUS: " + 
  140.             GetTypeInfo_enum_EMessageStatus()
  141.                 ->FindName(status, true);
  142.     }}
  143.     return result;
  144. }
  145. END_objects_SCOPE // namespace ncbi::objects::
  146. END_NCBI_SCOPE
  147. /*
  148. * ===========================================================================
  149. *
  150. * $Log: PluginMessage.cpp,v $
  151. * Revision 1000.3  2004/06/01 20:53:46  gouriano
  152. * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.9
  153. *
  154. * Revision 1.9  2004/05/21 22:27:46  gorelenk
  155. * Added PCH ncbi_pch.hpp
  156. *
  157. * Revision 1.8  2004/03/31 15:25:12  dicuccio
  158. * Added IReporter interface
  159. *
  160. * Revision 1.7  2003/11/04 17:24:00  dicuccio
  161. * Changed ToString() to match new API.
  162. *
  163. * Revision 1.6  2003/10/27 17:41:12  dicuccio
  164. * Formatting changes
  165. *
  166. * Revision 1.5  2003/08/05 17:05:08  dicuccio
  167. * Removed statid mutex in favor of CAtomicCounter
  168. *
  169. * Revision 1.4  2003/07/23 19:14:08  dicuccio
  170. * Moved logic for validating plugin arguments into CPluginUtils.
  171. *
  172. * Revision 1.3  2003/07/15 13:54:51  shomrat
  173. * Reformating PluginMessage string representation
  174. *
  175. * Revision 1.2  2003/07/15 01:58:14  ucko
  176. * Make the guard for sm_NextId a static class member, since Darwin's
  177. * shared-library linker doesn't like inline functions with static locals.
  178. *
  179. * Revision 1.1  2003/07/14 11:08:22  shomrat
  180. * Initial Revision
  181. *
  182. *
  183. * ===========================================================================
  184. */
  185. /* Original file checksum: lines: 64, chars: 1889, CRC32: b0cc0767 */