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

流媒体/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 StatisticsDb_cxx_Version = 
  51.     "$Id: StatisticsDb.cxx,v 1.5 2001/03/23 19:43:21 icahoon Exp $";
  52. #include "StatisticsDb.hxx"
  53. #include "Statistic.hxx"
  54. #include "Lock.hxx"
  55. #include <cassert>
  56. using Vocal::Statistics::StatisticsDb;
  57. using Vocal::Statistics::StatisticsDbKey;
  58. using Vocal::Statistics::Statistic;
  59. using Vocal::Threads::WriteLock;
  60. using Vocal::Threads::ReadLock;
  61. const StatisticsDbKey  Vocal::Statistics::INVALID_STAT_DB_KEY = 0;
  62. StatisticsDb::StatisticsDb(const char * name)
  63.     : myName(name ? name : "StatisticsDb"),
  64.      myNextKey(INVALID_STAT_DB_KEY+1)
  65. {
  66.     myStatNames.push_back(Data("INVALID_STAT_DB_KEY"));
  67. }
  68. StatisticsDb::~StatisticsDb()
  69. {
  70.     clear();
  71. }
  72. StatisticsDbKey
  73. StatisticsDb::key(const Data & key)
  74. {
  75.     WriteLock    lock(myLock);
  76.     
  77.     StatisticsDbKey   result = INVALID_STAT_DB_KEY;
  78.     StatisticRegistrations::iterator regIter;
  79.     regIter = myStatRegistrations.find(key);
  80.     
  81.     if ( regIter == myStatRegistrations.end() )
  82.     {
  83.      result = myStatRegistrations[key] = myNextKey++;
  84. myStatNames.push_back(key);
  85. assert( myStatNames.size() == myNextKey );
  86.     }
  87.     else
  88.     {
  89.      result = regIter->second;
  90.     }
  91.     
  92.     return ( result );
  93. }
  94. const Data &     
  95. StatisticsDb::keyName(StatisticsDbKey index) const
  96. {
  97.     ReadLock  lock(myLock);
  98.     
  99.     if ( index > myStatNames.size() )
  100.     {
  101.      assert( index <= myStatNames.size() );
  102. index = INVALID_STAT_DB_KEY;
  103.     }
  104.     
  105.     return ( myStatNames[index] );
  106. }
  107. StatisticsDbKey
  108. StatisticsDb::nextKey() const
  109. {
  110.     return ( myNextKey );
  111. }
  112. void
  113. StatisticsDb::record(const Statistic & statistic)
  114. {
  115.     if ( !(statistic.db() == *this) )
  116.     {
  117.      assert( statistic.db() == *this );
  118. return;
  119.     }
  120.     WriteLock    lock(myLock);
  121.     
  122.     StatisticsDbKey key = statistic.key();
  123.     
  124.     Database::iterator dbIter = m_db.find(key);
  125.     
  126.     if ( dbIter == m_db.end() )
  127.     {
  128.      // Memory allocation
  129. //
  130.      m_db[key] = statistic.copy();
  131.     }
  132.     else
  133.     {
  134.      dbIter->second->combine(statistic);
  135.     }
  136. }
  137. Statistic *
  138. StatisticsDb::find(const Statistic & statistic) const
  139. {
  140.     Statistic * result = 0;
  141.     
  142.     if ( !(statistic.db() == *this) )
  143.     {
  144.      assert( statistic.db() == *this );
  145. return ( result );
  146.     }
  147.     ReadLock    lock(myLock);
  148.     Database::const_iterator dbIter = m_db.find(statistic.key());
  149.     
  150.     if ( dbIter != m_db.end() )
  151.     {
  152.      result = dbIter->second;
  153.     }
  154.     
  155.     return ( result );
  156. }
  157. void
  158. StatisticsDb::erase(const Statistic & statistic)
  159. {
  160.     if ( !(statistic.db() == *this) )
  161.     {
  162.      assert( statistic.db() == *this );
  163. return;
  164.     }
  165.     WriteLock    lock(myLock);
  166.     Database::iterator dbIter = m_db.find(statistic.key());
  167.     
  168.     if ( dbIter != m_db.end() )
  169.     {
  170.      // Memory freed
  171. //
  172.      delete dbIter->second;
  173.      m_db.erase(dbIter);
  174.     }
  175.     
  176.     return;
  177. }
  178. void
  179. StatisticsDb::clear()
  180. {
  181.     WriteLock    lock(myLock);
  182.     for (   Database::iterator dbIter = m_db.begin();
  183.          dbIter != m_db.end();
  184.     dbIter++
  185. )
  186.     {
  187.      // Memory freed
  188. //
  189.      delete dbIter->second;
  190.     }
  191.     m_db.clear();
  192. }
  193. ostream &   
  194. StatisticsDb::writeTo(ostream & out) const
  195. {
  196.     ReadLock    lock(myLock);
  197.     out << 'n' << myName.getData() << 'n';
  198.     
  199.     for (   Database::const_iterator dbIter = m_db.begin();
  200.          dbIter != m_db.end();
  201.     dbIter++
  202. )
  203.     {
  204.      out << *(dbIter->second) << 'n';
  205.     }
  206.     
  207.     return ( out );
  208. }
  209. const Data &
  210. StatisticsDb::name() const
  211. {
  212.     return ( myName );
  213. }
  214. bool 
  215. StatisticsDb::operator==(const StatisticsDb & src) const
  216. {
  217.     return ( this == &src );
  218. }
  219. bool 
  220. StatisticsDb::operator<(const StatisticsDb & src) const
  221. {
  222.     return ( this < &src );
  223. }