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

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. #include "DialogEventCounter.hpp"
  23. void DialogEventCounter::Clear( bool clearForm )
  24. {
  25. if ( clearForm )
  26. {
  27. formCounts.Clear();
  28. phaseName.erase();
  29. }
  30. fieldCounts.clear();
  31. }
  32. void DialogEventCounter::Clear( const VXMLElement &field )
  33. {
  34. vxistring fieldName;
  35. field.GetAttribute(ATTRIBUTE__ITEMNAME, fieldName);
  36. Clear( fieldName );
  37. }
  38. void DialogEventCounter::Clear( const vxistring &fieldName )
  39. {
  40. if ( !fieldName.empty() )
  41. {
  42. FIELDS::iterator i = fieldCounts.find( fieldName );
  43. if (i != fieldCounts.end())
  44. (*i).second.Clear();
  45. }
  46. }
  47. void DialogEventCounter::ClearIf( const vxistring & phase, bool condition )
  48. if ( ( phase == phaseName ) == condition ) 
  49. Clear();
  50. phaseName = phase; 
  51. }
  52. void DialogEventCounter::Increment( const VXMLElement &item, const vxistring &eventName )
  53. {
  54. // form-level <filled> elements increment the form-level event count...
  55. VXMLElementType name = item.GetName();
  56. if ( name == NODE_FILLED )
  57. {
  58. const VXMLElement &parent = item.GetParent();
  59. if ( parent.GetName() == NODE_FORM )
  60. {
  61. formCounts.Increment( eventName );
  62. return;
  63. }
  64. }
  65. // ... otherwise, increment the field level count.
  66. vxistring fieldName;
  67. item.GetAttribute(ATTRIBUTE__ITEMNAME, fieldName);
  68. if ( !fieldName.empty() )
  69. {
  70. FIELDS::iterator i = fieldCounts.find( fieldName );
  71. if (i != fieldCounts.end())
  72. (*i).second.Increment( eventName );
  73. else 
  74. {
  75. EventCounter field;
  76. field.Increment( eventName );
  77. fieldCounts[fieldName] = field;
  78. }
  79. }
  80. }
  81. int DialogEventCounter::GetCount( const VXMLElement &item, const vxistring &eventName )
  82. {
  83. int result = 1;
  84. // form-level <filled> elements get the form-level event count...
  85. if ( item.GetName() == NODE_FILLED )
  86. {
  87. const VXMLElement &parent = item.GetParent();
  88. if ( parent.GetName() == NODE_FORM )
  89. return formCounts.GetCount( eventName );
  90. }
  91. // ... otherwise, get the field level count.
  92. vxistring fieldName;
  93. item.GetAttribute(ATTRIBUTE__ITEMNAME, fieldName);
  94. if ( !fieldName.empty() )
  95. {
  96. FIELDS::iterator i = fieldCounts.find( fieldName );
  97. if (i != fieldCounts.end())
  98. result = (*i).second.GetCount( eventName );
  99. }
  100. return result;
  101. }