Counters.hpp
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:2k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #ifndef _COUNTERS_H_
  23. #define _COUNTERS_H_
  24. #include "VXItypes.h"
  25. #include <map>
  26. class EventCounter {
  27. public:
  28.   void Clear()
  29.   { counts.clear(); phaseName.erase(); }
  30.   void ClearIf(const vxistring & phase, bool condition)
  31.   { 
  32.   if ((phase == phaseName) == condition) 
  33.      { 
  34.      counts.clear();
  35.         phaseName = phase; 
  36.   } 
  37.   }
  38.   void Increment(const vxistring & eventName);
  39.   // Increments the count associated with all events.  For instance, given
  40.   // 'error.semantic.bad_name', this will increment 'error', 'error.semantic',
  41.   // and 'error.semantic.bad_name'.
  42.   int GetCount(const vxistring & eventName ) const;
  43. private:
  44.   vxistring phaseName;
  45.   typedef std::map<vxistring, int> COUNTS;
  46.   COUNTS counts;
  47. };
  48. class PromptTracker {
  49. public:
  50.   void Clear()
  51.   { counts.clear(); }
  52.   void Clear(const vxistring & name)
  53.   { COUNTS::iterator i = counts.find(name);
  54.     if (i != counts.end()) counts.erase(i); }
  55.   int Increment(const vxistring & name)
  56.   { COUNTS::iterator i = counts.find(name);
  57.     if (i != counts.end()) return ++(*i).second;
  58.     counts[name] = 1;
  59.     return 1; }
  60. private:
  61.   typedef std::map<vxistring, int> COUNTS;
  62.   COUNTS counts;
  63. };
  64. #endif