pacutil.cpp
上传用户:zhongxx05
上传日期:2007-06-06
资源大小:33641k
文件大小:6k
源码类别:

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. #include "hxtypes.h"
  36. #include "hxcom.h"
  37. #include "hxcomm.h"
  38. #include "hxslist.h"
  39. #include "hxbuffer.h"
  40. #include "hxdir.h"
  41. #include "pacutil.h"
  42. #include "hxstrutl.h"
  43. HX_RESULT 
  44. ParsePACInfo(char* pszPACInfo, CHXSimpleList*& pPACInfoList)
  45. {
  46.     HX_RESULT rc = HXR_OK;
  47.     INT32 i = 0;
  48.     char* pToken = NULL;
  49.     PACInfo* pPACInfo = NULL;
  50.     HX_ASSERT(!pPACInfoList || pPACInfoList->GetCount() == 0);
  51.     if (pszPACInfo)
  52.     {
  53. pToken = strtok(pszPACInfo, ";");
  54. // At least one entry should present
  55. HX_ASSERT(pToken);
  56.     
  57.         while (pToken)
  58. {
  59.     pPACInfo = NULL;
  60.     CHXString entry = pToken;
  61.     entry.TrimLeft();
  62.     entry.TrimRight();
  63.     i = entry.Find(' ');
  64.     // DIRECT - no host::port info
  65.     if (-1 == i)
  66.     {
  67. pPACInfo = new PACInfo;
  68. pPACInfo->type = PAC_DIRECT;
  69.     }
  70.     else
  71.     {
  72. CHXString type;
  73. CHXString proxyinfo;
  74. CHXString host;
  75. CHXString port;
  76. type = entry.NthField(' ', 1);
  77. proxyinfo = entry.NthField(' ', 2);
  78. i = proxyinfo.Find(':');
  79. if (-1 == i)
  80. {
  81.     host = proxyinfo;
  82. }
  83. else
  84. {
  85.     host = proxyinfo.NthField(':', 1);
  86.     port = proxyinfo.NthField(':', 2);
  87. }
  88. // we treat SOCKS the same as PROXY
  89. pPACInfo = new PACInfo;
  90. pPACInfo->type = PAC_PROXY;
  91. pPACInfo->pszHost = new char[host.GetLength() + 1];
  92. strcpy(pPACInfo->pszHost, (const char*)host); /* Flawfinder: ignore */
  93. if (!port.IsEmpty())
  94. {
  95.     pPACInfo->ulPort = atoi((const char*)port);
  96. }
  97.     }
  98.     if (pPACInfo)
  99.     {
  100. if (!pPACInfoList)
  101. {
  102.     pPACInfoList = new CHXSimpleList();
  103. }
  104. pPACInfoList->AddTail(pPACInfo);
  105.     }
  106.     
  107.     pToken = strtok(NULL, ";");
  108. }
  109.     }
  110.     return rc;
  111. }
  112. // used by HXPreferredTransportManager and HXPACPlugin to
  113. // manage persistent config files
  114. // <filename0>,<expiration0>;<filename1>,<expiration1>;<filename2>,<expiration2>
  115. HX_RESULT 
  116. AddFileToFileListWithCap(const char* pszNewFile, 
  117.  UINT32 ulExpiration, 
  118.  const char* pszPath, 
  119.  IHXBuffer*& pBuffer)
  120. {
  121.     HX_RESULT     rc = HXR_OK;
  122.     int     nFields = 0;
  123.     int     nFiles = 0;
  124.     int     i = 0;
  125.     char     buffer[20] = {0}; /* Flawfinder: ignore */
  126.     char*     pszFile = NULL;
  127.     CHXString     filesIn;
  128.     CHXString     filesOut;
  129.     CHXString     fileInfo;
  130.     CHXString     fileName;
  131.     CHXDirectory    Dir;
  132.     filesOut = pszNewFile;
  133.     filesOut +=",";
  134.     filesOut += itoa(ulExpiration, buffer, 10);
  135.     nFiles++;
  136.     if (pBuffer)
  137.     {
  138. filesIn = (const char*)pBuffer->GetBuffer();
  139.     
  140. nFields = filesIn.CountFields(';');
  141. for (i = 1; i <= nFields; i++)
  142. {
  143.     fileInfo = filesIn.NthField(';', i);
  144.     fileName = fileInfo.NthField(',', 1);
  145.     if (fileName.CompareNoCase(pszNewFile) != 0)
  146.     {
  147. if (nFiles >= MAX_CFG_FILES)
  148. {
  149.     pszFile = new char[strlen(pszPath) + fileName.GetLength() + 10];
  150.     ::strcpy(pszFile, pszPath); /* Flawfinder: ignore */
  151.     if (pszFile[::strlen(pszFile)-1] != OS_SEPARATOR_CHAR)
  152.     {
  153. strcat(pszFile, OS_SEPARATOR_STRING); /* Flawfinder: ignore */
  154.     }
  155.     strcat(pszFile, (const char*)fileName); /* Flawfinder: ignore */
  156.     CHXDirectory Dir;
  157.     Dir.DeleteFile(pszFile);
  158.     HX_VECTOR_DELETE(pszFile);
  159. }
  160. else
  161. {
  162.     filesOut += ";";
  163.     filesOut += fileInfo;
  164.     nFiles++;
  165. }
  166.     }
  167. }
  168.     }
  169.     else
  170.     {
  171. pBuffer = new CHXBuffer();
  172. pBuffer->AddRef();
  173.     }
  174.     pBuffer->Set((const UCHAR*)(const char*)filesOut, filesOut.GetLength() + 1);
  175.     return rc;
  176. }
  177. // used by HXPreferredTransportManager and HXPACPlugin to
  178. // manage persistent config files
  179. // <filename0>,<expiration0>;<filename1>,<expiration1>;<filename2>,<expiration2>
  180. HX_RESULT 
  181. GetFileFromFileListWithCap(const char* pszNewFile, UINT32& ulExpiration, IHXBuffer* pBuffer)
  182. {
  183.     HX_RESULT     rc = HXR_FAILED;
  184.     int     nFields = 0;    
  185.     int     i = 0;
  186.     char*     pszFile = NULL;
  187.     CHXString     filesIn;
  188.     CHXString     fileInfo;
  189.     CHXString     fileName;
  190.     CHXString     fileExpiration;
  191.     if (pBuffer)
  192.     {
  193. filesIn = (const char*)pBuffer->GetBuffer();
  194.     
  195. nFields = filesIn.CountFields(';');
  196. for (i = 1; i <= nFields; i++)
  197. {
  198.     fileInfo = filesIn.NthField(';', i);
  199.     fileName = fileInfo.NthField(',', 1);
  200.     fileExpiration = fileInfo.NthField(',', 2);
  201.     if (fileName.CompareNoCase(pszNewFile) == 0)
  202.     {
  203. ulExpiration = atoi((const char*)fileExpiration);
  204. rc = HXR_OK;
  205. break;
  206.     }
  207. }
  208.     }
  209.     return rc;
  210. }