SBlogOSUtils.h
上传用户: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. #ifndef SBLOG_OS_UTILS
  23. #define SBLOG_OS_UTILS
  24. #include <stdarg.h>
  25. #include <time.h>
  26. #include <wchar.h>
  27. #include <limits.h>
  28. #include <VXItypes.h>
  29. #include <VXIlog.h>
  30. /* Only support 8 bit unicode char */
  31. #if (CHAR_BIT != 8)
  32. #error REQUIRING 8 BIT REPRESENTATIONS FOR TYPE 'char'!
  33. #endif
  34. #if (CHAR_MIN == -127)
  35. #error CANNOT HANDLE ONES COMPLEMENT NOTATION!
  36. #endif
  37. #ifdef __cplusplus
  38. extern "C" {
  39. #endif
  40. int SBlogGetTime(time_t       *timestamp, 
  41.                  VXIunsigned  *timestampMsec);
  42. int SBlogGetTimeStampStr(time_t          timestamp,
  43.                          VXIunsigned     timestampMsec,
  44.                          char*           timestampStr);
  45. typedef struct SBlogFileStats
  46. {
  47.   long int st_size;
  48.   long int st_mode;
  49.   time_t st_atim;
  50.   time_t st_mtim;
  51.   time_t st_ctim;
  52. } SBlogFileStats;
  53. int SBlogGetFileStats(const char      *path, 
  54.                       SBlogFileStats  *fileStats);
  55. int SBlogGetCPUTimes(long *userTime
  56.                      /* ms spent in user mode */,
  57.                      long *kernelTime
  58.                      /* ms spent in kernel mode*/);
  59. int SBlogVswprintf(wchar_t        *wcs, size_t     maxlen, 
  60.                    const wchar_t  *format, va_list args);
  61. /* platform independent directory manipulation */
  62. int SBlogMkDir(const char *path);
  63. int SBlogIsDir(const SBlogFileStats *statInfo);
  64. /* platform independent wide char -> char conversion util */
  65. VXIbool SBlogWchar2Latin1(const wchar_t * input, char * output,
  66.         VXIunsigned maxOutputChars);
  67. VXIbool SBlogWchar2UTF8(const wchar_t * input, char * output,
  68.       VXIunsigned maxOutputBytes, VXIunsigned * outputBytes);
  69. VXIlogResult SBlogLogErrorToConsole(const VXIchar *moduleName, 
  70.             VXIunsigned errorID,
  71.             const VXIchar *errorIDText);
  72. VXIlogResult SBlogVLogErrorToConsole(const VXIchar *moduleName, 
  73.              VXIunsigned errorID,
  74.              const VXIchar *errorIDText, 
  75.              const VXIchar *format,
  76.              va_list arguments);
  77.   
  78. #ifdef __cplusplus
  79. }
  80. /* Avoid locale dependant ctype.h macros */
  81. static inline bool SBlogIsSpace(const char c) {
  82.   return (((c == ' ') || (c == 't') || (c == 'n') || (c == 'r')) ? 
  83.     true : false);
  84. }
  85. static inline bool SBlogIsSpace(const wchar_t c) {
  86.   return (((c == L' ') || (c == L't') || (c == L'n') || (c == L'r')) ?
  87.     true : false);
  88. }
  89. static inline bool SBlogIsAlpha(const wchar_t c) {
  90.   return ((((c >= L'a') && (c <= L'z')) || ((c >= L'A') && (c <= L'Z'))) ?
  91.     true : false);
  92. }
  93. #endif /* __cplusplus */
  94. #endif /* include guard */