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

流媒体/Mpeg4/MP4

开发平台:

C/C++

  1. #if !defined(VOCAL_SINGLETON_HXX)
  2. #define VOCAL_SINGLETON_HXX
  3. /* ====================================================================
  4.  * The Vovida Software License, Version 1.0 
  5.  * 
  6.  * Copyright (c) 2000 Vovida Networks, Inc.  All rights reserved.
  7.  * 
  8.  * Redistribution and use in source and binary forms, with or without
  9.  * modification, are permitted provided that the following conditions
  10.  * are met:
  11.  * 
  12.  * 1. Redistributions of source code must retain the above copyright
  13.  *    notice, this list of conditions and the following disclaimer.
  14.  * 
  15.  * 2. Redistributions in binary form must reproduce the above copyright
  16.  *    notice, this list of conditions and the following disclaimer in
  17.  *    the documentation and/or other materials provided with the
  18.  *    distribution.
  19.  * 
  20.  * 3. The names "VOCAL", "Vovida Open Communication Application Library",
  21.  *    and "Vovida Open Communication Application Library (VOCAL)" must
  22.  *    not be used to endorse or promote products derived from this
  23.  *    software without prior written permission. For written
  24.  *    permission, please contact vocal@vovida.org.
  25.  *
  26.  * 4. Products derived from this software may not be called "VOCAL", nor
  27.  *    may "VOCAL" appear in their name, without prior written
  28.  *    permission of Vovida Networks, Inc.
  29.  * 
  30.  * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED
  31.  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  32.  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE AND
  33.  * NON-INFRINGEMENT ARE DISCLAIMED.  IN NO EVENT SHALL VOVIDA
  34.  * NETWORKS, INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT DAMAGES
  35.  * IN EXCESS OF $1,000, NOR FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
  36.  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
  37.  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
  38.  * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
  39.  * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  40.  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
  41.  * USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  42.  * DAMAGE.
  43.  * 
  44.  * ====================================================================
  45.  * 
  46.  * This software consists of voluntary contributions made by Vovida
  47.  * Networks, Inc. and many individuals on behalf of Vovida Networks,
  48.  * Inc.  For more information on Vovida Networks, Inc., please see
  49.  * <http://www.vovida.org/>.
  50.  *
  51.  */
  52. static const char* const Singleton_hxx_Version = 
  53.     "$Id: Singleton.hxx,v 1.3 2001/04/21 02:37:27 icahoon Exp $";
  54. #include "NonCopyable.hxx"
  55. #include "GarbageCan.hxx"
  56. #include "Garbage.hxx"
  57. /** Infrastructure common to VOCAL.<br><br>
  58.  */
  59. namespace Vocal 
  60. {
  61. /** Singleton pattern. See Gang of Four.
  62.  */
  63. template <class Object>
  64. class Singleton : public Garbage, public NonCopyable
  65. {
  66.     protected:
  67.     
  68.         /** Protected constructor to force specialization.
  69.          */
  70.         Singleton();
  71.         
  72.         
  73.         /** Protected virtual destructor. This should only be deleted
  74.          *  via Garbage's virtual destructor.
  75.          */
  76.         virtual ~Singleton();
  77.     public:
  78.         /**  Create an instance of this class.
  79.          */
  80.         static Object &         instance();
  81.         
  82.     protected:
  83.         /** Initialize the instance.
  84.          */    
  85.         static void             init();
  86.         
  87.     private:
  88.         /** The instance.
  89.          */    
  90.         static  Object      *   myInstance;
  91.         static  unsigned int    myCount;
  92. };
  93. template <class Object>
  94. Object  *   Singleton<Object>::myInstance = 0;
  95. template <class Object>
  96. unsigned int    Singleton<Object>::myCount = 0;
  97. template <class Object>
  98. Singleton<Object>::Singleton()
  99. {
  100.     ++myCount;
  101.     
  102.     if ( myCount > 1 )
  103.     {
  104.         throw ( "There can be only one.");
  105.     }
  106. }
  107. template <class Object>
  108. Singleton<Object>::~Singleton()
  109. {
  110. }
  111. template <class Object>
  112. Object &
  113. Singleton<Object>::instance()
  114. {
  115.     init();
  116.     return ( *myInstance );
  117. }
  118. template <class Object>
  119. void
  120. Singleton<Object>::init()
  121. {
  122.     if ( myInstance == 0 )
  123.     {
  124.         myInstance = new Object;
  125.         GarbageCan::add(myInstance);
  126.     }
  127. }
  128. } // namespace Vocal
  129. #endif // !defined(VOCAL_SINGLETON_HXX)