SBtrdEvent.hpp
上传用户: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. // -----1=0-------2=0-------3=0-------4=0-------5=0-------6=0-------7=0-------8
  23. #ifndef _SBTRD_EVENT_H__
  24. #define _SBTRD_EVENT_H__
  25. #include "VXIheaderPrefix.h"          // For SYMBOL_EXPORT_CPP_DECL
  26. #include "VXItrd.h"                   // For VXItrdTimer, VXItrdMutex
  27. #ifdef SBTRDUTIL_EXPORTS
  28. #define SBTRDUTIL_API_CLASS SYMBOL_EXPORT_CPP_CLASS_DECL
  29. #else
  30. #define SBTRDUTIL_API_CLASS SYMBOL_IMPORT_CPP_CLASS_DECL
  31. #endif
  32. extern "C" struct VXIlogInterface;
  33. class SBTRDUTIL_API_CLASS SBtrdEvent {
  34.  public:
  35.   // Constructor and destructor
  36.   SBtrdEvent (VXIlogInterface *log = NULL, VXIunsigned diagTagBase = 0) :
  37.     _diagTagBase(diagTagBase), _log(log), _timer(NULL), _sleepMutex(NULL),
  38.     _alerted(FALSE) { }
  39.   virtual ~SBtrdEvent( );
  40.   // Creation method
  41.   VXItrdResult Create( );
  42.   // Reset the event
  43.   VXItrdResult Reset( );
  44.   // Set the event
  45.   VXItrdResult Set( );
  46.   // Wait on the event
  47.   VXItrdResult Wait( );
  48.  private:
  49.   // Error logging
  50.   void Error (VXIunsigned errorID, const VXIchar *format, ...) const;
  51.   // Diagnostic logging
  52.   void Diag (VXIunsigned tag, const VXIchar *subtag, 
  53.      const VXIchar *format, ...) const;
  54.   // Disable the copy constructor and equality operator to catch making
  55.   // copies at compile or link time, neither is really implemented
  56.   SBtrdEvent (const SBtrdEvent &);
  57.   SBtrdEvent & operator= (const SBtrdEvent &);
  58.  private:
  59.   VXIunsigned       _diagTagBase;
  60.   VXIlogInterface  *_log;
  61.   VXItrdTimer      *_timer;
  62.   VXItrdMutex      *_sleepMutex;
  63.   volatile VXIbool  _alerted;
  64. };
  65. #include "VXIheaderSuffix.h"
  66. #endif  // _SBTRD_EVENT_H__