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

生物技术

开发平台:

C/C++

  1. /*
  2.  * ===========================================================================
  3.  * PRODUCTION $Log: test_msg.cpp,v $
  4.  * PRODUCTION Revision 1000.2  2004/06/01 21:05:25  gouriano
  5.  * PRODUCTION PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  6.  * PRODUCTION
  7.  * ===========================================================================
  8.  */
  9. /*  $Id: test_msg.cpp,v 1000.2 2004/06/01 21:05:25 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.  * Authors:  Lou Friedman
  35.  *
  36.  * File Description:
  37.  *    Test messgae pool.
  38.  */
  39. #include <ncbi_pch.hpp>
  40. #include <corelib/ncbiobj.hpp>
  41. #include <gui/utils/msg_pool.hpp>
  42. #include <string>
  43. BEGIN_NCBI_SCOPE
  44. class CMsgPoolTester : public CObject {
  45. public:
  46.     enum MsgSet1 {
  47.         M1_1 = 1,
  48.         M1_2,
  49.         M1_3
  50.     };
  51.     enum MsgSet2 {
  52.         M2_1 = 11,
  53.         M2_2,
  54.         M2_3
  55.     };
  56.     CMsgPoolTester(std::string name)
  57.         : m_Name(name) {}
  58.     ~CMsgPoolTester() {}
  59.     string m_Name;
  60.     
  61.     void MessageEventHandler(MsgSet1 msg, const void* ud);    
  62.     void MessageEventHandler(MsgSet2 msg, const void* ud);    
  63. };   
  64. void CMsgPoolTester::MessageEventHandler(MsgSet1 msg, const void* ud) {
  65.     string str_msg;
  66.     cout << m_Name << " received message " << msg << " of MsgSet1" << endl; 
  67. }
  68. void CMsgPoolTester::MessageEventHandler(MsgSet2 msg, const void* ud) {
  69.     string str_msg;
  70.     cout << m_Name << " received message " << msg << " of MsgSet2" << endl; 
  71. }
  72. END_NCBI_SCOPE
  73. USING_NCBI_SCOPE;
  74. int main ()
  75. {
  76.     CMsgPoolMgr<CMsgPoolTester>* mgr = new(CMsgPoolMgr<CMsgPoolTester>);
  77.     CMsgPoolTester t1("t1");
  78.     CMsgPoolTester t2("t2");
  79.     CMsgPoolTester t3("t3");
  80.     CMsgPoolTester t4("t4");
  81.     CMsgPoolTester t5("t5");
  82. //    CMsgPool<CMsgPoolTester> p1("p1");
  83.     mgr->CreatePool("p1");
  84.     CMsgPool<CMsgPoolTester>& p1 = *(mgr->FindPool("p1"));
  85.     p1.Join(t1);
  86.     p1.Join(t3);
  87.     p1.Join(t4);
  88.     p1.Join(t5);
  89. //    CMsgPool<CMsgPoolTester> p2("p2");
  90.     mgr->CreatePool("p2");
  91.     CMsgPool<CMsgPoolTester>& p2 = *(mgr->FindPool("p2"));
  92.     p2.Join(t2);
  93.     p2.Join(t2);
  94.     p2.Join(t3);
  95.     p2.Join(t5);
  96.     p1.PostMessage(CMsgPoolTester::M1_2, NULL);
  97.     p1.Leave(t3);
  98.     p1.Leave(t3);
  99.     p1.PostMessage(CMsgPoolTester::M1_1, NULL);
  100.     p2.PostMessage(CMsgPoolTester::M2_3, NULL);
  101.     
  102.     delete mgr;
  103. //    mgr->DeleteMessagePool("p1");
  104. //    mgr->DeleteMsgPool("p2");
  105. }
  106. /*
  107.  * ===========================================================================
  108.  * $Log: test_msg.cpp,v $
  109.  * Revision 1000.2  2004/06/01 21:05:25  gouriano
  110.  * PRODUCTION: UPGRADED [GCC34_MSVC7] Dev-tree R1.5
  111.  *
  112.  * Revision 1.5  2004/05/21 22:27:51  gorelenk
  113.  * Added PCH ncbi_pch.hpp
  114.  *
  115.  * Revision 1.4  2003/12/31 21:08:31  dicuccio
  116.  * Changed FindMessagePool() to FindPool()
  117.  *
  118.  * Revision 1.3  2003/12/31 20:33:01  dicuccio
  119.  * Updated to reflect API changes in CMessagePoolMgr
  120.  *
  121.  * Revision 1.2  2003/12/22 21:46:54  ucko
  122.  * Tweaked signature of MessageEventHandler per current msg_pool API.
  123.  *
  124.  * Revision 1.1  2003/09/12 17:41:02  friedman
  125.  * Initial revision
  126.  *
  127.  * ===========================================================================
  128.  */