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

xml/soap/webservice

开发平台:

Visual C++

  1. #ifndef _VXI_SimpleLogger_HPP
  2. #define _VXI_SimpleLogger_HPP
  3. /****************License************************************************
  4.  * Vocalocity OpenVXI
  5.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  6.  * This program is free software; you can redistribute it and/or
  7.  * modify it under the terms of the GNU General Public License
  8.  * as published by the Free Software Foundation; either version 2
  9.  * of the License, or (at your option) any later version.
  10.  *  
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  19.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  20.  * registered trademarks of Vocalocity, Inc. 
  21.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  22.  * by Vocalocity.
  23.  ***********************************************************************/
  24. #include <cwchar>
  25. #include <ostream>
  26. extern "C" struct VXIlogInterface;
  27. extern "C" struct VXIMap;
  28. extern "C" struct VXIString;
  29. extern "C" struct VXIVector;
  30. class SimpleLoggerImpl;
  31. class SimpleLogger {
  32.   friend class SimpleLoggerImpl;
  33. public:
  34.   enum InfoTag {
  35.     ENCODING,
  36.     EXCEPTION,
  37.     MESSAGE,
  38.     URI,
  39.     DOC_PARSE_ERROR_DUMPS,
  40.     DOC_DUMPS,
  41.     RECORDING
  42.   };
  43.   static void SetMessageBase(unsigned int base);
  44.   static SimpleLogger * CreateResource(VXIlogInterface *);
  45.   static void DestroyResource(SimpleLogger * &);
  46. public:
  47.   typedef unsigned int TAGID;
  48.   virtual void SetUri(const std::basic_string<wchar_t> & uri) = 0;
  49.   
  50.   // Error logging
  51.   virtual void LogError(int errorNum) const = 0;
  52.   virtual void LogError(int errorNum,
  53.                         InfoTag, const wchar_t * text) const = 0;
  54.   virtual void LogError(int errorNum,
  55.                         InfoTag, const wchar_t * text1,
  56.                         InfoTag, const wchar_t * text2) const = 0;
  57.   virtual void LogError(int errorNum,
  58.                         const wchar_t *key1, const wchar_t * text1) const = 0;
  59.   // Event logging
  60.   virtual void LogEvent(int eventNum, const VXIVector * keys,
  61.                         const VXIVector * values) const = 0;
  62.   // Diagnostic logging.  There are two basic modes.
  63.   virtual bool IsLogging(TAGID tagID) const = 0;
  64.   virtual std::basic_ostream<wchar_t> & StartDiagnostic(TAGID tagID) const = 0;
  65.   virtual void EndDiagnostic() const = 0;
  66.   virtual void LogDiagnostic(TAGID tagID, const wchar_t * text) const = 0;
  67.   virtual void LogDiagnostic(TAGID tagID, const wchar_t* subtag,
  68.                              const wchar_t * format, ...) = 0;
  69.   // Content logging.
  70.   virtual bool LogContent(const wchar_t *mimetype, 
  71.   const unsigned char *content, 
  72.   unsigned long size, 
  73.   VXIString **key, 
  74.   VXIString **value) const = 0;
  75.   
  76.   // Set module name
  77.   virtual void SetModuleName(const wchar_t* modulename) = 0;
  78. private:
  79.   SimpleLogger() { }
  80.   virtual ~SimpleLogger() { }
  81. };
  82. #endif  /* include guard */