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

Symbian

开发平台:

Visual C++

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