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.      );
  60. int SBlogVswprintf(wchar_t* wcs, size_t maxlen, 
  61.    const wchar_t* format, va_list args);
  62. /* platform independent directory manipulation */
  63. int SBlogMkDir(const char *path);
  64. int SBlogIsDir(const SBlogFileStats *statInfo);
  65. /* platform independent wide char -> char conversion util */
  66. VXIbool SBlogWchar2Latin1(const wchar_t * input, char * output,
  67.   VXIunsigned maxOutputChars);
  68. VXIbool SBlogWchar2UTF8(const wchar_t * input, char * output,
  69. VXIunsigned maxOutputBytes, VXIunsigned * outputBytes);
  70. VXIlogResult SBlogLogErrorToConsole(const VXIchar *moduleName, 
  71.     VXIunsigned errorID,
  72.     const VXIchar *errorIDText);
  73. VXIlogResult SBlogVLogErrorToConsole(const VXIchar *moduleName, 
  74.      VXIunsigned errorID,
  75.      const VXIchar *errorIDText, 
  76.      const VXIchar *format,
  77.      va_list arguments);
  78.   
  79. #ifdef __cplusplus
  80. }
  81. /* Avoid locale dependant ctype.h macros */
  82. static inline bool SBlogIsSpace(const char c) {
  83.   return (((c == ' ') || (c == 't') || (c == 'n') || (c == 'r')) ? 
  84.   true : false);
  85. }
  86. static inline bool SBlogIsSpace(const wchar_t c) {
  87.   return (((c == L' ') || (c == L't') || (c == L'n') || (c == L'r')) ?
  88.   true : false);
  89. }
  90. static inline bool SBlogIsAlpha(const wchar_t c) {
  91.   return ((((c >= L'a') && (c <= L'z')) || ((c >= L'A') && (c <= L'Z'))) ?
  92.   true : false);
  93. }
  94. #endif /* __cplusplus */
  95. #endif /* include guard */