tEvent.cxx
上传用户:sy_wanhua
上传日期:2013-07-25
资源大小:3048k
文件大小:4k
源码类别:

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. /* ====================================================================
  2.  * The Vovida Software License, Version 1.0 
  3.  * 
  4.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  5.  * 
  6.  * Redistribution and use in source and binary forms, with or without
  7.  * modification, are permitted provided that the following conditions
  8.  * are met:
  9.  * 
  10.  * 1. Redistributions of source code must retain the above copyright
  11.  *    notice, this list of conditions and the following disclaimer.
  12.  * 
  13.  * 2. Redistributions in binary form must reproduce the above copyright
  14.  *    notice, this list of conditions and the following disclaimer in
  15.  *    the documentation and/or other materials provided with the
  16.  *    distribution.
  17.  * 
  18.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  19.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  20.  *    not be used to endorse or promote products derived from this
  21.  *    software without prior written permission. For written
  22.  *    permission, please contact vocal@vovida.org.
  23.  *
  24.  * 4. Products derived from this software may not be called "VOCAL", nor
  25.  *    may "VOCAL" appear in their name, without prior written
  26.  *    permission of Vovida Networks, Inc.
  27.  * 
  28.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  29.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  30.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  31.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  32.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  33.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  34.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  35.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  36.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  37.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  38.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  39.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  40.  * DAMAGE.
  41.  * 
  42.  * ====================================================================
  43.  * 
  44.  * This software consists of voluntary contributions made by Vovida
  45.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  46.  * Inc.  For more information on Vovida Networks, Inc., please see
  47.  * <http://www.vovida.org/>.
  48.  *
  49.  */
  50. static const char* const tEvent_cxx_Version = 
  51. "$Id$";
  52. #include "Application.hxx"
  53. #include "EventObserver.hxx"
  54. #include "EventSubject.hxx"
  55. #include <string>
  56. #include <iostream>
  57. using namespace Vocal;
  58. using namespace Vocal::Behavioral;
  59. class Policy : public EventObserver<int>
  60. {
  61.     public:
  62.      Policy(
  63.     EventSubject<int>  &   es, 
  64.     int           interest,
  65.     const string     &   name
  66.     :  EventObserver<int>(es),
  67.      interest_(interest),
  68. name_(name)
  69. {
  70. }
  71.      ~Policy() 
  72. {
  73. }
  74.      bool interestedIn(const int & event) 
  75.     return ( event < interest_ ); 
  76. }
  77.      void onEvent(int event)
  78. {
  79.     cout << *this << ", Received event: " << event << endl;
  80. }
  81. ostream &           writeTo(ostream & out) const
  82. {
  83.     return ( out << name_ << ", interest = " << interest_ );
  84. }
  85.     private:
  86.     
  87.      int       interest_;
  88. string      name_;
  89. };
  90. class tEvent : public Application
  91. {
  92.     public:
  93.      tEvent() 
  94. {
  95. }
  96. ~tEvent() 
  97. {
  98. }
  99.      ReturnCode       run();
  100. };
  101. Application * Application::create()
  102. {
  103.     return ( new tEvent );
  104. }
  105. ReturnCode
  106. tEvent::run()
  107. {
  108.     EventSubject<int>     subject;
  109.     
  110.     Policy            policy0(subject, 10, "Policy0"),
  111.                    policy1(subject, 20, "Policy1"),
  112.                    policy2(subject, 50, "Policy2");
  113.     
  114.     subject.attach(policy0);
  115.     subject.attach(policy1);
  116.     subject.attach(policy2);
  117.     cout << subject << endl;
  118.     subject.setEvent(1);
  119.     subject.setEvent(11);
  120.     subject.setEvent(21);
  121.     subject.detach(policy2);
  122.     cout << subject << endl;
  123.     subject.setEvent(2);
  124.     subject.setEvent(12);
  125.     subject.setEvent(22);
  126.     subject.detach(policy1);
  127.     cout << subject << endl;
  128.     subject.setEvent(3);
  129.     subject.setEvent(13);
  130.     subject.setEvent(23);
  131.     subject.detach(policy0);
  132.     cout << subject << endl;
  133.     subject.setEvent(4);
  134.     subject.setEvent(14);
  135.     subject.setEvent(24);
  136.     return ( SUCCESS );
  137. }
  138. int main(int argc, char ** argv, char ** arge)
  139. {
  140.     return ( Application::main(argc, argv, arge) );
  141. }