hxstrutl.h
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:5k
源码类别:

Symbian

开发平台:

C/C++

  1. /* ***** BEGIN LICENSE BLOCK ***** 
  2.  * Version: RCSL 1.0/RPSL 1.0 
  3.  *  
  4.  * Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved. 
  5.  *      
  6.  * The contents of this file, and the files included with this file, are 
  7.  * subject to the current version of the RealNetworks Public Source License 
  8.  * Version 1.0 (the "RPSL") available at 
  9.  * http://www.helixcommunity.org/content/rpsl unless you have licensed 
  10.  * the file under the RealNetworks Community Source License Version 1.0 
  11.  * (the "RCSL") available at http://www.helixcommunity.org/content/rcsl, 
  12.  * in which case the RCSL will apply. You may also obtain the license terms 
  13.  * directly from RealNetworks.  You may not use this file except in 
  14.  * compliance with the RPSL or, if you have a valid RCSL with RealNetworks 
  15.  * applicable to this file, the RCSL.  Please see the applicable RPSL or 
  16.  * RCSL for the rights, obligations and limitations governing use of the 
  17.  * contents of the file.  
  18.  *  
  19.  * This file is part of the Helix DNA Technology. RealNetworks is the 
  20.  * developer of the Original Code and owns the copyrights in the portions 
  21.  * it created. 
  22.  *  
  23.  * This file, and the files included with this file, is distributed and made 
  24.  * available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 
  25.  * EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES, 
  26.  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS 
  27.  * FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 
  28.  * 
  29.  * Technology Compatibility Kit Test Suite(s) Location: 
  30.  *    http://www.helixcommunity.org/content/tck 
  31.  * 
  32.  * Contributor(s): 
  33.  *  
  34.  * ***** END LICENSE BLOCK ***** */ 
  35. #ifndef _HXSTRUTL_H_
  36. #define _HXSTRUTL_H_
  37. #include "hlxclib/string.h" /* for strxxx functions */
  38. #include "hlxclib/stdlib.h" /* for atoi64() and itoa() functionallity */
  39. #include "safestring.h"
  40. #if !defined(_VXWORKS)
  41. #ifdef _UNIX
  42. #include <strings.h>
  43. #include <ctype.h>
  44. #endif
  45. #endif
  46. #ifdef _MACINTOSH
  47. #include <ctype.h>
  48. #endif
  49. #include "hxresult.h"
  50. #if defined (_MACINTOSH) 
  51. #define isascii isprint
  52. inline const char *AnsiNext(const char* pcPtr) { return(  pcPtr + 1 ); }
  53. inline const char *AnsiPrev(const char * /* pcStart */, const char* pcPtr) { return (pcPtr - 1 ); }
  54. int CopyP2CString(ConstStr255Param inSource, char* outDest, int inDestLength);
  55. void CopyC2PString(const char* inSource, Str255 outDest);
  56. char WINToMacCharacter( char inWINChar );
  57. // these functions are used to convert Windows extended chars (used in non-English Roman languages)
  58. // to Mac extended chars & vice-versa
  59. void StripWinChars( char* pChars);
  60. void StripMacChars( char* pChars);
  61. inline void pstrcpy(Str255 dst, ConstStr255Param src) { BlockMoveData(src, dst, 1+src[0]); }
  62. #ifndef _CARBON
  63. inline void PStrCopy(StringPtr dest, ConstStr255Param src) { BlockMoveData(src, dest, 1+src[0]); }
  64. inline void p2cstrcpy(char *dst, ConstStr255Param src) { CopyP2CString(src, dst, 255); }
  65. inline void c2pstrcpy(Str255 dst, const char * src) { CopyC2PString(src, dst); }
  66. #endif
  67. #endif /* _MACINTOSH */
  68. #define CR (CHAR) 'r'
  69. #define LF              (CHAR) 'n'
  70. #define CRLF            "rn"
  71. #ifdef _WIN32
  72.     #define LINEBREAK     "1512"
  73.     #define LINEBREAK_LEN   2
  74. #else
  75.     #define LINEBREAK     "12"
  76.     #define LINEBREAK_LEN   1
  77. #endif /* _WIN32 */
  78. #define LINE_BUFFER_SIZE 4096
  79. #define MAX_BYTES_PER_COOKIE 4096
  80. #define MAX_NUMBER_OF_COOKIES 300
  81. #define MAX_COOKIES_PER_SERVER 20
  82. #define IS_SPACE(x) ((((unsigned int) (x)) > 0x7f) ? 0 : isspace(x))
  83. #ifdef __cplusplus
  84. void     StrAllocCopy(char*& pDest, char* pSrc);
  85. #else
  86. void     StrAllocCopy(char** pDest, char* pSrc);
  87. #endif
  88. char*     StripLine(char* pLine);
  89. #include "hxtypes.h"
  90. #include "hxcom.h"
  91. typedef _INTERFACE IHXValues IHXValues;
  92. HX_RESULT   SaveStringToHeader(IHXValues* /* IN OUT */    pHeader, 
  93.        const char*  /* IN */     pszKey, 
  94.        char*     /* IN */     pszValue);
  95. char* StrStrCaseInsensitive(const char* str1, const char* str2);
  96. char* StrNStr(const char* str1, const char* str2, size_t depth1, size_t depth2);
  97. char *StrNChr(const char *str, int c, size_t depth);
  98. char *StrNRChr(const char *str, int c, size_t depth);
  99. size_t StrNSpn(const char *str1, const char *str2, size_t depth1, size_t depth2);
  100. size_t StrNCSpn(const char *str1, const char *str2, size_t depth1, size_t depth2);
  101. char* StrToUpper(char *pString);
  102. #if defined( _SYMBIAN)
  103. #define NEW_FAST_TEMP_STR(NAME, EstimatedBiggestSize, LenNeeded)
  104.     char*   NAME = new char[(LenNeeded)];         
  105. #define DELETE_FAST_TEMP_STR(NAME)
  106.     delete[] NAME;
  107. #else
  108. /* XXXSMP We can use alloca() on platforms that support it for more speed! */
  109. #define NEW_FAST_TEMP_STR(NAME, EstimatedBiggestSize, LenNeeded)
  110.     char    __##NAME##__StaticVersion[EstimatedBiggestSize];
  111.     char*   NAME;
  112.     UINT32  ulNeeded##NAME##Len = (LenNeeded);
  113.         
  114.     if (ulNeeded##NAME##Len <= EstimatedBiggestSize)
  115.     {   
  116.         NAME = __##NAME##__StaticVersion;
  117.     }       
  118.     else
  119.     {
  120.         NAME = new char[ulNeeded##NAME##Len];
  121.     }
  122. #define DELETE_FAST_TEMP_STR(NAME)
  123.     if (NAME != __##NAME##__StaticVersion)
  124.     { 
  125.         delete[] NAME;
  126.     }
  127. #endif /* defined(_SYMBIAN) */
  128. #endif /* _HXSTRUTL_H_ */