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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: mimechk.cpp,v 1.2.32.3 2004/07/09 01:48:16 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. /****************************************************************************
  50.  *  Defines
  51.  */
  52. #define ENCRYPTED_MIME_EXTENSION "-encrypted"
  53. #define ENCRYPTED_MIME_EXTENSION_SIZE (sizeof(ENCRYPTED_MIME_EXTENSION) - 1)
  54. /****************************************************************************
  55.  *  Includes
  56.  */
  57. // #include "hlxclib/stdio.h"
  58. #include "hlxclib/string.h"
  59. #include "hxtypes.h"
  60. #include "hxstrutl.h"
  61. #include "mimechk.h"
  62. BOOL isProhibitedMimeType(const char* pMimeType, ULONG32 ulMimeLen)
  63. {
  64.     BOOL bProhibited = TRUE;
  65.     // First disqualify based solely on length
  66.     if ((ulMimeLen != 20) && (ulMimeLen != 29) && (ulMimeLen != 26) &&
  67. (ulMimeLen != 25) && (ulMimeLen != 23) && (ulMimeLen != 21) &&
  68. (ulMimeLen != 24))
  69.     {
  70. return TRUE;
  71.     }
  72.     // Now walk the input string backwards and find out if it matches
  73.     // any of the following acceptable mime types:
  74.     //
  75.     // "audio/x-pn-realaudio" "oidualaer-np-x/oidua"
  76.     // "application/x-shockwave-flash" "hsalf-evawkcohs-x/noitacilppa"
  77.     // "application/x-pn-realmedia" "aidemlaer-np-x/noitacilppa"
  78.     // "application/x-pn-realevent" "tnevelaer-np-x/noitacilppa"
  79.     // "application/x-pn-imagemap" "pamegami-np-x/noitacilppa"
  80.     // "application/x-pn-realad" "dalaer-np-x/noitacilppa"
  81.     // "syncMM/x-pn-realvideo" "oedivlaer-np-x/MMcnys"
  82.     // "image_map/x-pn-realvideo" "oedivlaer-np-x/pam_egami"
  83.     // "video/x-pn-realvideo"
  84.     if (pMimeType[ulMimeLen - 1] == 'o')
  85.     {
  86. if (pMimeType[ulMimeLen - 2] == 'e')
  87. {
  88.     if (pMimeType[0] == 's')
  89.     {
  90. // "syncMM/x-pn-realvideo"
  91. if (strcmp(pMimeType, "syncMM/x-pn-realvideo") == 0)
  92. {
  93.     bProhibited = FALSE;
  94. }
  95.     }
  96.     else if (pMimeType[0] == 'i')
  97.     {
  98. // "image_map/x-pn-realvideo"
  99. if (strcmp(pMimeType, "image_map/x-pn-realvideo") == 0)
  100. {
  101.     bProhibited = FALSE;
  102. }
  103.     }
  104.     else if (pMimeType[0] == 'v')
  105.     {
  106. // "video/x-pn-realvideo"
  107. if (strcmp(pMimeType, "video/x-pn-realvideo") == 0)
  108. {
  109.     bProhibited = FALSE;
  110. }
  111.     }
  112. }
  113. else if (pMimeType[ulMimeLen - 2] == 'i')
  114. {
  115.     // "audio/x-pn-realaudio"
  116.     if (strcmp(pMimeType, "audio/x-pn-realaudio") == 0)
  117.     {
  118. bProhibited = FALSE;
  119.     }
  120. }
  121.     }
  122.     else if (pMimeType[ulMimeLen - 1] == 'h')
  123.     {
  124. // "application/x-shockwave-flash"
  125. if (strcmp(pMimeType, "application/x-shockwave-flash") == 0)
  126. {
  127.     bProhibited = FALSE;
  128. }
  129.     }
  130.     else if (pMimeType[ulMimeLen - 1] == 'a')
  131.     {
  132. // "application/x-pn-realmedia"
  133. if (strcmp(pMimeType, "application/x-pn-realmedia") == 0)
  134. {
  135.     bProhibited = FALSE;
  136. }
  137.     }
  138.     else if (pMimeType[ulMimeLen - 1] == 't')
  139.     {
  140. // "application/x-pn-realevent"
  141. if (strcmp(pMimeType, "application/x-pn-realevent") == 0)
  142. {
  143.     bProhibited = FALSE;
  144. }
  145.     }
  146.     else if (pMimeType[ulMimeLen - 1] == 'p')
  147.     {
  148. // "application/x-pn-imagemap"
  149. if (strcmp(pMimeType, "application/x-pn-imagemap") == 0)
  150. {
  151.     bProhibited = FALSE;
  152. }
  153.     }
  154.     else if (pMimeType[ulMimeLen - 1] == 'd')
  155.     {
  156. // "application/x-pn-realad"
  157. if (strcmp(pMimeType, "application/x-pn-realad") == 0)
  158. {
  159.     bProhibited = FALSE;
  160. }
  161.     }
  162.     return bProhibited;
  163. }
  164. int hxMimeRootCmp(const char* pMimeType1, const char* pMimeType2)
  165. {
  166.     int retVal;
  167.     retVal = strcasecmp(pMimeType1, pMimeType2);
  168.     if (retVal != 0)
  169.     {
  170. ULONG32 ulLength1 = strlen(pMimeType1);
  171. ULONG32 ulLength2 = strlen(pMimeType2);
  172. if (ulLength1 == (ulLength2 + ENCRYPTED_MIME_EXTENSION_SIZE))
  173. {
  174.     if ((strcasecmp(pMimeType1 + ulLength1 - ENCRYPTED_MIME_EXTENSION_SIZE,
  175.     ENCRYPTED_MIME_EXTENSION) == 0) &&
  176. (strncasecmp(pMimeType1, pMimeType2, ulLength2) == 0))
  177.     {
  178. retVal = 0;
  179.     }
  180. }
  181. else if (ulLength2 == (ulLength1 + ENCRYPTED_MIME_EXTENSION_SIZE))
  182. {
  183.     if ((strcasecmp(pMimeType2 + ulLength2 - ENCRYPTED_MIME_EXTENSION_SIZE,
  184.     ENCRYPTED_MIME_EXTENSION) == 0) &&
  185. (strncasecmp(pMimeType1, pMimeType2, ulLength1) == 0))
  186.     {
  187. retVal = 0;
  188.     }
  189. }
  190.     }
  191.     return retVal;
  192. }
  193. BOOL decryptMimeType(CHXString &strMimeType)
  194. {
  195.     BOOL bRetVal = FALSE; // assume no decryption
  196.     ULONG32 ulMimeLength = strMimeType.GetLength();
  197.     if (ulMimeLength > ENCRYPTED_MIME_EXTENSION_SIZE)
  198.     {
  199. const char* pMimeChars = (const char*) (strMimeType);
  200. if (strcmp(ENCRYPTED_MIME_EXTENSION, 
  201.     &pMimeChars[ulMimeLength - ENCRYPTED_MIME_EXTENSION_SIZE]) == 0)
  202. {
  203.     ulMimeLength -= ENCRYPTED_MIME_EXTENSION_SIZE;
  204.     strMimeType.GetBufferSetLength(ulMimeLength);
  205.     bRetVal = TRUE; // decrypted
  206. }
  207.     }
  208.     
  209.     return bRetVal;
  210. }
  211. BOOL encryptMimeType(CHXString &strMimeType)
  212. {
  213.     BOOL bRetVal = FALSE; // assume no encryption
  214.     ULONG32 ulMimeLength = strMimeType.GetLength();
  215.     const char* pMimeChars = (const char*) (strMimeType);
  216.     if ((ulMimeLength < ENCRYPTED_MIME_EXTENSION_SIZE) ||
  217. (strcmp(ENCRYPTED_MIME_EXTENSION, 
  218. &pMimeChars[ulMimeLength - ENCRYPTED_MIME_EXTENSION_SIZE]) != 0))
  219.     {
  220. strMimeType += ENCRYPTED_MIME_EXTENSION;
  221. bRetVal = TRUE;
  222.     }
  223.     return bRetVal;
  224. }
  225.