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

xml/soap/webservice

开发平台:

Visual C++

  1. /*****************************************************************************
  2.  *****************************************************************************
  3.  *
  4.  * SBjsiLogger - logging class for SBjsi
  5.  *
  6.  * This provides logging definitions for SBjsi use of VXIlog, along
  7.  * with some convenience macros.
  8.  *
  9.  *****************************************************************************
  10.  ****************************************************************************/
  11. /****************License************************************************
  12.  * Vocalocity OpenVXI
  13.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  14.  * This program is free software; you can redistribute it and/or
  15.  * modify it under the terms of the GNU General Public License
  16.  * as published by the Free Software Foundation; either version 2
  17.  * of the License, or (at your option) any later version.
  18.  *  
  19.  * This program is distributed in the hope that it will be useful,
  20.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  22.  * GNU General Public License for more details.
  23.  *
  24.  * You should have received a copy of the GNU General Public License
  25.  * along with this program; if not, write to the Free Software
  26.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  27.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  28.  * registered trademarks of Vocalocity, Inc. 
  29.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  30.  * by Vocalocity.
  31.  ***********************************************************************/
  32. /* -----1=0-------2=0-------3=0-------4=0-------5=0-------6=0-------7=0-------8
  33.  */
  34. #ifndef _SBJSI_LOGGER_H__
  35. #define _SBJSI_LOGGER_H__
  36. #include "VXIheaderPrefix.h"          /* For SYMBOL_EXPORT_CPP_DECL */
  37. #include "VXIlog.h"          /* Logging engine */
  38. #include "SBjsiString.hpp"  /* For SBinetString */
  39. #include <stdarg.h>          /* For variable argument list */
  40. /* Base class for logging */
  41. class SBjsiLogger {
  42.  protected:
  43.   // Constructor and destructor
  44.   SBjsiLogger (const VXIchar *moduleName, VXIlogInterface *log,
  45. VXIunsigned diagTagBase) : 
  46.     _moduleName(moduleName), _log(log), _diagTagBase(diagTagBase) { }
  47.   virtual ~SBjsiLogger( ) { }
  48.   // Set the log interface when unavailable at construct time
  49.   void SetLog (VXIlogInterface *log, VXIunsigned diagTagBase) {
  50.     _log = log; _diagTagBase = diagTagBase; }
  51.  public:
  52.   // Accessor
  53.   VXIlogInterface *GetLog( ) { return _log; }
  54.   VXIunsigned GetDiagBase( ) const { return _diagTagBase; }
  55.   VXIbool DiagIsEnabled (VXIunsigned tag) const;
  56.   // Logging methods
  57.   VXIlogResult Error (VXIunsigned errorID, const VXIchar *format, ...) const;
  58.   VXIlogResult Error (VXIlogInterface *log, VXIunsigned errorID, 
  59.       const VXIchar *format, ...) const;
  60.   static VXIlogResult Error (VXIlogInterface *log, const VXIchar *moduleName,
  61.      VXIunsigned errorID, const VXIchar *format,
  62.      ...);
  63.   VXIlogResult Diag (VXIunsigned tag, const VXIchar *subtag, 
  64.      const VXIchar *format, ...) const;
  65.   VXIlogResult Diag (VXIlogInterface *log, VXIunsigned tag, 
  66.      const VXIchar *subtag, const VXIchar *format,
  67.      ...) const;
  68.   static VXIlogResult Diag (VXIlogInterface *log, VXIunsigned diagTagBase,
  69.     VXIunsigned tag, const VXIchar *subtag, 
  70.     const VXIchar *format, ...);
  71.   VXIlogResult VDiag (VXIunsigned tag, const VXIchar *subtag, 
  72.       const VXIchar *format, va_list args) const;
  73.  private:
  74.   SBjsiString      _moduleName;
  75.   VXIlogInterface  *_log;
  76.   VXIunsigned       _diagTagBase;
  77. };
  78. /* Logging object for conveniently logging function entrance/exit */
  79. class SBjsiLogFunc {
  80.  public:
  81.   /* Constructor and destructor */
  82.   SBjsiLogFunc (VXIlogInterface *log, VXIunsigned tag, const VXIchar *func, 
  83. const int *rcvar, const VXIchar *format = NULL, ...) :
  84.     _log(log), _tag(tag), _func(func), _rcvar(rcvar) {
  85.     if ( _log ) {
  86.       va_list ap;
  87.       va_start (ap, format);
  88.       _log->VDiagnostic (_log, _tag, _func, format, ap);
  89.       va_end (ap);
  90.     }
  91.   }
  92.   ~SBjsiLogFunc( ) {
  93.     if ( _log ) {
  94.       if ( _rcvar )
  95. _log->Diagnostic (_log, _tag, _func, L"exiting, returned %d", *_rcvar);
  96.       else
  97. _log->Diagnostic (_log, _tag, _func, L"exiting");
  98.     }
  99.   }
  100.  private:
  101.   VXIlogInterface  *_log;
  102.   VXIunsigned       _tag;
  103.   const VXIchar    *_func;
  104.   const int        *_rcvar;
  105. };
  106. #include "VXIheaderSuffix.h"
  107. #endif  /* define _SBJSI_LOGGER_H__ */