📄 corshare.cpp
字号:
/* ***** BEGIN LICENSE BLOCK *****
* Version: RCSL 1.0/RPSL 1.0
*
* Portions Copyright (c) 1995-2002 RealNetworks, Inc. All Rights Reserved.
*
* The contents of this file, and the files included with this file, are
* subject to the current version of the RealNetworks Public Source License
* Version 1.0 (the "RPSL") available at
* http://www.helixcommunity.org/content/rpsl unless you have licensed
* the file under the RealNetworks Community Source License Version 1.0
* (the "RCSL") available at http://www.helixcommunity.org/content/rcsl,
* in which case the RCSL will apply. You may also obtain the license terms
* directly from RealNetworks. You may not use this file except in
* compliance with the RPSL or, if you have a valid RCSL with RealNetworks
* applicable to this file, the RCSL. Please see the applicable RPSL or
* RCSL for the rights, obligations and limitations governing use of the
* contents of the file.
*
* This file is part of the Helix DNA Technology. RealNetworks is the
* developer of the Original Code and owns the copyrights in the portions
* it created.
*
* This file, and the files included with this file, is distributed and made
* available on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND REALNETWORKS HEREBY DISCLAIMS ALL SUCH WARRANTIES,
* INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, FITNESS
* FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
*
* Technology Compatibility Kit Test Suite(s) Location:
* http://www.helixcommunity.org/content/tck
*
* Contributor(s):
*
* ***** END LICENSE BLOCK ***** */
#include "hxcom.h"
#include "hlxclib/stdio.h"
#include "hlxclib/stdlib.h"
#ifdef _WINDOWS
#include <windows.h>
#endif
#include "prefdefs.h"
#include "plprefk.h"
#include "ihxpckts.h"
#include "hxfiles.h"
#include "hxengin.h"
#include "hxcore.h"
#include "hxprefs.h"
#include "hxpref.h"
#include "hxausvc.h"
#include "hxmon.h"
#include "hxclreg.h"
#include "hxgroup.h"
#include "hxsmbw.h"
#include "chxeven.h"
#include "chxelst.h"
#include "hxmap.h"
#include "hxrquest.h"
#include "hxmangle.h"
#include "hxstrutl.h"
#include "strminfo.h"
#include "timeval.h"
#include "smiltype.h"
#include "hxbsrc.h"
#include "hxsrc.h"
#include "srcinfo.h"
// will be taken out once flags are defined in a separate file
#include "rmfftype.h"
#include "hxplay.h"
#include "hxheap.h"
#ifdef _DEBUG
#undef HX_THIS_FILE
static const char HX_THIS_FILE[] = __FILE__;
#endif
HX_RESULT
SetRequest(const char* pURL,
BOOL bAltURL,
IHXPreferences* pPreferences,
IHXRegistry* pRegistry,
IHXValues* pValuesInRequest,
REF(IHXRequest*) pRequest)
{
HX_RESULT hr = HXR_OK;
BOOL bSetRequestHeader = FALSE;
IHXBuffer* pRegionData = NULL;
IHXBuffer* pBandwidth = NULL;
IHXBuffer* pLanguage = NULL;
IHXValues* pHeaders = NULL;
IHXBuffer* pClientID = NULL;
IHXBuffer* pGUID = NULL;
IHXBuffer* pMaxASMBW = NULL;
IHXBuffer* pValue = NULL;
BOOL bCanSendGuid = FALSE;
if (!pRequest)
{
// create our own if it doesn't exist
pRequest = new CHXRequest();
if(!pRequest)
{
hr = HXR_OUTOFMEMORY;
goto exit;
}
pRequest->AddRef();
}
pRequest->SetURL(pURL);
if(pPreferences)
{
pPreferences->ReadPref("Bandwidth", pBandwidth);
ReadPrefBOOL(pPreferences, "AllowAuthID", bCanSendGuid);
}
if (pRegistry)
{
CHXString strTemp;
strTemp = HXREGISTRY_PREFPROPNAME;
strTemp += '.';
strTemp += CLIENT_ID_REGNAME;
pRegistry->GetStrByName(strTemp, pClientID);
strTemp = HXREGISTRY_PREFPROPNAME;
strTemp += ".RegionData";
pRegistry->GetStrByName(strTemp, pRegionData);
strTemp = HXREGISTRY_PREFPROPNAME;
strTemp += ".Language";
pRegistry->GetStrByName(strTemp, pLanguage);
}
if(bCanSendGuid &&
pPreferences &&
pPreferences->ReadPref(CLIENT_GUID_REGNAME, pGUID) == HXR_OK)
{
char* pszGUID = DeCipher((char*)pGUID->GetBuffer());
HX_RELEASE(pGUID);
pGUID = (IHXBuffer*) new CHXBuffer;
if(pGUID)
{
pGUID->AddRef();
pGUID->Set((UCHAR*) pszGUID, strlen(pszGUID) + 1);
}
else
{
hr = HXR_OUTOFMEMORY;
goto exit;
}
delete[] pszGUID;
}
else
{
pGUID = (IHXBuffer*) new CHXBuffer;
if(pGUID)
{
pGUID->AddRef();
pGUID->Set((UCHAR*) CLIENT_ZERO_GUID, sizeof(CLIENT_ZERO_GUID));
}
else
{
hr = HXR_OUTOFMEMORY;
goto exit;
}
}
// set attributes to the request header
if (HXR_OK != pRequest->GetRequestHeaders(pHeaders) || !pHeaders)
{
pHeaders = new CHXHeader();
if(!pHeaders)
{
hr = HXR_OUTOFMEMORY;
goto exit;
}
pHeaders->AddRef();
bSetRequestHeader = TRUE;
}
pHeaders->SetPropertyULONG32("IsAltURL", bAltURL);
if (HXR_OK != pHeaders->GetPropertyCString("Bandwidth", pValue) &&
pBandwidth && pBandwidth->GetSize())
{
pHeaders->SetPropertyCString("Bandwidth", pBandwidth);
}
HX_RELEASE(pValue);
if (HXR_OK != pHeaders->GetPropertyCString("Language", pValue) &&
pLanguage && pLanguage->GetSize())
{
pHeaders->SetPropertyCString("Language", pLanguage);
}
HX_RELEASE(pValue);
if (HXR_OK != pHeaders->GetPropertyCString("RegionData", pValue) &&
pRegionData && pRegionData->GetSize())
{
pHeaders->SetPropertyCString("RegionData", pRegionData);
}
HX_RELEASE(pValue);
if (HXR_OK != pHeaders->GetPropertyCString("ClientID", pValue) &&
pClientID && pClientID->GetSize())
{
pHeaders->SetPropertyCString("ClientID", pClientID);
}
HX_RELEASE(pValue);
if (HXR_OK != pHeaders->GetPropertyCString("GUID", pValue) &&
pGUID && pGUID->GetSize())
{
pHeaders->SetPropertyCString("GUID", pGUID);
}
HX_RELEASE(pValue);
if (HXR_OK != pHeaders->GetPropertyCString ("SupportsMaximumASMBandwidth", pValue))
{
pMaxASMBW = (IHXBuffer*)new CHXBuffer;
if(!pMaxASMBW)
{
hr = HXR_OUTOFMEMORY;
goto exit;
}
pMaxASMBW->Set((UCHAR*)"1",2);
pMaxASMBW->AddRef();
pHeaders->SetPropertyCString ("SupportsMaximumASMBandwidth",pMaxASMBW);
}
HX_RELEASE(pValue);
if (pValuesInRequest)
{
CHXHeader::mergeHeaders(pHeaders, pValuesInRequest);
}
if (bSetRequestHeader)
{
pRequest->SetRequestHeaders(pHeaders);
}
exit:
HX_RELEASE(pMaxASMBW);
HX_RELEASE(pBandwidth);
HX_RELEASE(pLanguage);
HX_RELEASE(pRegionData);
HX_RELEASE(pClientID);
HX_RELEASE(pGUID);
HX_RELEASE(pHeaders);
return hr;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -