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

Symbian

开发平台:

Visual C++

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Source last modified: $Id: corshare.cpp,v 1.8.30.1 2004/07/09 02:05:57 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 "hxcom.h"
  50. #include "hlxclib/stdio.h"
  51. #include "hlxclib/stdlib.h"
  52. #ifdef _WINDOWS
  53. #include <windows.h>
  54. #endif
  55. #include "prefdefs.h"
  56. #include "plprefk.h"
  57. #include "ihxpckts.h"
  58. #include "hxfiles.h"
  59. #include "hxengin.h"
  60. #include "hxcore.h"
  61. #include "hxprefs.h"
  62. #include "hxpref.h"
  63. #include "hxausvc.h"
  64. #include "hxmon.h"
  65. #include "hxclreg.h"
  66. #include "hxgroup.h"
  67. #include "hxsmbw.h"
  68. #include "chxeven.h"
  69. #include "chxelst.h"
  70. #include "hxmap.h"
  71. #include "hxrquest.h"
  72. #include "hxmangle.h"
  73. #include "hxstrutl.h"
  74. #include "strminfo.h"
  75. #include "timeval.h"
  76. #include "smiltype.h"
  77. #include "hxbsrc.h"
  78. #include "hxsrc.h"
  79. #include "srcinfo.h"
  80. // will be taken out once flags are defined in a separate file
  81. #include "rmfftype.h"
  82. #include "hxplay.h"
  83. #include "hxheap.h"
  84. #ifdef _DEBUG
  85. #undef HX_THIS_FILE
  86. static const char HX_THIS_FILE[] = __FILE__;
  87. #endif
  88. HX_RESULT 
  89. SetRequest(const char* pURL, 
  90.    BOOL bAltURL, 
  91.    IHXPreferences* pPreferences,
  92.    IHXRegistry* pRegistry,
  93.    IHXValues* pValuesInRequest,
  94.    REF(IHXRequest*) pRequest)
  95. {
  96.     HX_RESULT hr = HXR_OK;
  97.     BOOL bSetRequestHeader = FALSE;
  98.     IHXBuffer* pRegionData = NULL;
  99.     IHXBuffer* pBandwidth = NULL;
  100.     IHXBuffer* pLanguage = NULL;
  101.     IHXValues* pHeaders = NULL;
  102.     IHXBuffer* pClientID = NULL;
  103.     IHXBuffer* pGUID = NULL;
  104.     IHXBuffer* pMaxASMBW = NULL;
  105.     IHXBuffer* pValue = NULL;
  106.     BOOL bCanSendGuid = FALSE;
  107.     if (!pRequest)
  108.     {
  109. // create our own if it doesn't exist
  110. pRequest = new CHXRequest();
  111.         if(!pRequest)
  112.         {
  113.             hr = HXR_OUTOFMEMORY;
  114.             goto exit;
  115.         }
  116. pRequest->AddRef();
  117.     }
  118.     pRequest->SetURL(pURL);    
  119.     if(pPreferences)
  120.     {
  121.         pPreferences->ReadPref("Bandwidth", pBandwidth);
  122.         ReadPrefBOOL(pPreferences, "AllowAuthID", bCanSendGuid);
  123.     }
  124.     if (pRegistry)
  125.     {
  126. CHXString strTemp;
  127. strTemp = HXREGISTRY_PREFPROPNAME;
  128. strTemp += '.';
  129. strTemp += CLIENT_ID_REGNAME;
  130. pRegistry->GetStrByName(strTemp, pClientID);
  131. strTemp = HXREGISTRY_PREFPROPNAME;
  132. strTemp += ".RegionData";
  133. pRegistry->GetStrByName(strTemp, pRegionData);
  134. strTemp = HXREGISTRY_PREFPROPNAME;
  135. strTemp += ".Language";
  136. pRegistry->GetStrByName(strTemp, pLanguage);
  137.     }
  138.     if(bCanSendGuid &&
  139.        pPreferences && 
  140.        pPreferences->ReadPref(CLIENT_GUID_REGNAME, pGUID) == HXR_OK)
  141.     {
  142. char* pszGUID = DeCipher((char*)pGUID->GetBuffer());
  143. HX_RELEASE(pGUID);
  144. pGUID = (IHXBuffer*) new CHXBuffer;
  145.         if(pGUID)
  146.         {
  147.     pGUID->AddRef();
  148.     pGUID->Set((UCHAR*) pszGUID, strlen(pszGUID) + 1);
  149.         }
  150.         else
  151.         {
  152.             hr = HXR_OUTOFMEMORY;
  153.             goto exit;
  154.         }
  155. delete[] pszGUID;
  156.     }
  157.     else
  158.     {
  159. pGUID = (IHXBuffer*) new CHXBuffer;
  160.         if(pGUID)
  161.         {
  162.     pGUID->AddRef();
  163.     pGUID->Set((UCHAR*) CLIENT_ZERO_GUID, sizeof(CLIENT_ZERO_GUID));
  164.         }
  165.         else
  166.         {
  167.             hr = HXR_OUTOFMEMORY;
  168.             goto exit;
  169.         }
  170.     }
  171.     // set attributes to the request header
  172.     if (HXR_OK != pRequest->GetRequestHeaders(pHeaders) || !pHeaders)
  173.     {
  174. pHeaders = new CHXHeader();
  175.         if(!pHeaders)
  176.         {
  177.             hr = HXR_OUTOFMEMORY;
  178.             goto exit;
  179.         }
  180. pHeaders->AddRef();
  181. bSetRequestHeader = TRUE;
  182.     }
  183.     pHeaders->SetPropertyULONG32("IsAltURL", bAltURL);
  184.     if (HXR_OK != pHeaders->GetPropertyCString("Bandwidth", pValue) &&
  185. pBandwidth && pBandwidth->GetSize())
  186.     {
  187. pHeaders->SetPropertyCString("Bandwidth", pBandwidth);
  188.     }
  189.     HX_RELEASE(pValue);
  190.     if (HXR_OK != pHeaders->GetPropertyCString("Language", pValue) &&
  191. pLanguage && pLanguage->GetSize())
  192.     {
  193. pHeaders->SetPropertyCString("Language", pLanguage);
  194.     }
  195.     HX_RELEASE(pValue);
  196.     if (HXR_OK != pHeaders->GetPropertyCString("RegionData", pValue) &&
  197. pRegionData && pRegionData->GetSize())
  198.     {
  199. pHeaders->SetPropertyCString("RegionData", pRegionData);
  200.     }
  201.     HX_RELEASE(pValue);
  202.     if (HXR_OK != pHeaders->GetPropertyCString("ClientID", pValue) &&
  203. pClientID && pClientID->GetSize())
  204.     {
  205. pHeaders->SetPropertyCString("ClientID", pClientID);
  206.     }
  207.     HX_RELEASE(pValue);
  208.     if (HXR_OK != pHeaders->GetPropertyCString("GUID", pValue) &&
  209. pGUID && pGUID->GetSize())
  210.     {
  211. pHeaders->SetPropertyCString("GUID", pGUID);
  212.     }
  213.     HX_RELEASE(pValue);
  214.     if (HXR_OK != pHeaders->GetPropertyCString ("SupportsMaximumASMBandwidth", pValue))
  215.     {
  216. pMaxASMBW = (IHXBuffer*)new CHXBuffer;
  217.         if(!pMaxASMBW)
  218.         {
  219.             hr = HXR_OUTOFMEMORY;
  220.             goto exit;
  221.         }
  222. pMaxASMBW->Set((UCHAR*)"1",2);
  223. pMaxASMBW->AddRef();
  224. pHeaders->SetPropertyCString ("SupportsMaximumASMBandwidth",pMaxASMBW);
  225.     }
  226.     HX_RELEASE(pValue);
  227.     if (pValuesInRequest)
  228.     {
  229. CHXHeader::mergeHeaders(pHeaders, pValuesInRequest);
  230.     }
  231.     if (bSetRequestHeader)
  232.     {
  233. pRequest->SetRequestHeaders(pHeaders);
  234.     }
  235. exit:
  236.     HX_RELEASE(pMaxASMBW);
  237.     HX_RELEASE(pBandwidth);
  238.     HX_RELEASE(pLanguage);
  239.     HX_RELEASE(pRegionData);
  240.     HX_RELEASE(pClientID);
  241.     HX_RELEASE(pGUID);
  242.     HX_RELEASE(pHeaders);
  243.     return hr;
  244. }