hxstrutl.h
上传用户:dangjiwu
上传日期:2013-07-19
资源大小:42019k
文件大小:6k
源码类别:

Symbian

开发平台:

Visual C++

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