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

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.  */
  24. #ifndef _SBINET_LOGGER_H__
  25. #define _SBINET_LOGGER_H__
  26. #include "VXIheaderPrefix.h"          /* For SYMBOL_EXPORT_CPP_DECL */
  27. #include "VXIlog.h"          /* Logging engine */
  28. #include "SBinetString.hpp"  /* For SBinetString */
  29. #include <stdarg.h>          /* For variable argument list */
  30. /* Base class for logging */
  31. class SBinetLogger {
  32.  protected:
  33.   // Constructor and destructor
  34.   SBinetLogger (const VXIchar *moduleName, VXIlogInterface *log,
  35. VXIunsigned diagTagBase) : 
  36.     _moduleName(moduleName), _log(log), _diagTagBase(diagTagBase) { }
  37.   virtual ~SBinetLogger( ) { }
  38.   // Set the log interface when unavailable at construct time
  39.   void SetLog (VXIlogInterface *log, VXIunsigned diagTagBase) {
  40.     _log = log; _diagTagBase = diagTagBase; }
  41.  public:
  42.   // Accessor
  43.   VXIlogInterface *GetLog( ) { return _log; }
  44.   VXIunsigned GetDiagBase( ) const { return _diagTagBase; }
  45.   VXIbool DiagIsEnabled (VXIunsigned tag) const;
  46.   // Logging methods
  47.   VXIlogResult Error (VXIunsigned errorID, const VXIchar *format, ...) const;
  48.   VXIlogResult Error (VXIlogInterface *log, VXIunsigned errorID, 
  49.       const VXIchar *format, ...) const;
  50.   static VXIlogResult Error (VXIlogInterface *log, const VXIchar *moduleName,
  51.      VXIunsigned errorID, const VXIchar *format,
  52.      ...);
  53.   VXIlogResult Diag (VXIunsigned tag, const VXIchar *subtag, 
  54.      const VXIchar *format, ...) const;
  55.   VXIlogResult Diag (VXIlogInterface *log, VXIunsigned tag, 
  56.      const VXIchar *subtag, const VXIchar *format,
  57.      ...) const;
  58.   static VXIlogResult Diag (VXIlogInterface *log, VXIunsigned diagTagBase,
  59.     VXIunsigned tag, const VXIchar *subtag, 
  60.     const VXIchar *format, ...);
  61.   VXIlogResult VDiag (VXIunsigned tag, const VXIchar *subtag, 
  62.       const VXIchar *format, va_list args) const;
  63.  private:
  64.   SBinetString      _moduleName;
  65.   VXIlogInterface  *_log;
  66.   VXIunsigned       _diagTagBase;
  67. };
  68. /* Logging object for conveniently logging function entrance/exit */
  69. class SBinetLogFunc {
  70.  public:
  71.   /* Constructor and destructor */
  72.   SBinetLogFunc (VXIlogInterface *log, VXIunsigned tag, const VXIchar *func, 
  73. const int *rcvar, const VXIchar *format = NULL, ...) :
  74.     _log(log), _tag(tag), _func(func), _rcvar(rcvar) {
  75.     if ( _log ) {
  76.       va_list ap;
  77.       va_start (ap, format);
  78.       _log->VDiagnostic (_log, _tag, _func, format, ap);
  79.       va_end (ap);
  80.     }
  81.   }
  82.   ~SBinetLogFunc( ) {
  83.     if ( _log ) {
  84.       if ( _rcvar )
  85. _log->Diagnostic (_log, _tag, _func, L"exiting, returned %d", *_rcvar);
  86.       else
  87. _log->Diagnostic (_log, _tag, _func, L"exiting");
  88.     }
  89.   }
  90.  private:
  91.   VXIlogInterface  *_log;
  92.   VXIunsigned       _tag;
  93.   const VXIchar    *_func;
  94.   const int        *_rcvar;
  95. };
  96. #include "VXIheaderSuffix.h"
  97. #endif  /* define _SBINET_LOGGER_H__ */