📄 cookies.h
字号:
/* ***** 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 ***** */
#ifndef _COOKIES_H_
#define _COOKIES_H_
#ifdef _WINDOWS
typedef BOOL (PASCAL FAR *INTERNETGETCOOKIE)(LPCSTR, LPCSTR, LPSTR, LPDWORD);
typedef BOOL (PASCAL FAR *INTERNETSETCOOKIE)(LPCSTR, LPCSTR, LPCSTR);
#endif /* _WINDOWS */
#ifdef _MACINTOSH
#include <time.h>
#endif
#include "ihxcookies2.h"
struct CookieStruct
{
CookieStruct()
{
pPath = NULL;
pHost = NULL;
pCookieName = NULL;
pCookieValue = NULL;
}
~CookieStruct()
{
HX_DELETE(pPath);
HX_DELETE(pHost);
HX_DELETE(pCookieName);
HX_DELETE(pCookieValue);
}
CHXString* pPath;
CHXString* pHost;
CHXString* pCookieName;
CHXString* pCookieValue;
time_t expires;
BOOL bIsDomain;
BOOL bMemoryOnly; //wasn't read from disk, but arrived via SetCookies (usually from playing a stream)
};
class HXCookies : public IHXCookies, public IHXCookies2
{
protected:
LONG32 m_lRefCount;
IUnknown* m_pContext;
BOOL m_bInitialized;
BOOL m_bSaveCookies;
BOOL m_bMemoryOnly;
char* m_pNSCookiesPath;
char* m_pRMCookiesPath;
time_t m_lastModification;
CHXSimpleList* m_pNSCookies;
CHXSimpleList* m_pRMCookies;
IHXPreferences* m_pPreferences;
IHXCookiesHelper* m_pCookiesHelper;
#ifdef _WINDOWS
HINSTANCE m_hLib;
HXEvent* m_pLock;
INTERNETSETCOOKIE _pInternetSetCookie;
INTERNETGETCOOKIE _pInternetGetCookie;
#elif _UNIX
int m_fileID;
#endif /* _WINDOWS */
HX_RESULT PrepareCookiesPath(void);
HX_RESULT OpenCookies(char* pCookieFile, BOOL bRMCookies, CHXSimpleList*& pCookiesList);
HX_RESULT SaveCookies(void);
HX_RESULT AddCookie(CookieStruct* pCookie, CHXSimpleList*& pCookiesList);
HX_RESULT FileReadLine(FILE* fp, char* pLine, UINT32 ulLineBuf, UINT32* pBytesRead);
void ResetCookies(CHXSimpleList* pCookieList);
BOOL WasCookieAdded(CHXSimpleList* pCookiesFound, CookieStruct* pCookie);
BOOL IsCookieEnabled(void);
CookieStruct* CheckForPrevCookie(char * path,
char * hostname,
char * name);
void UpdateModificationTime(void);
BOOL IsCookieFileModified(void);
HX_RESULT MergeCookieList(CHXSimpleList* pFromList, CHXSimpleList* pToList);
/*
IHXBuffer* ConvertToAsciiString(char* pBuffer, UINT32 nBuffLen);
IHXBuffer* ChecksumFile(char* pszFileName);
HX_RESULT GenerateCookieFileChecksum(REF(IHXBuffer*) pChecksum);
UINT32 GetHDSerialNumber();
void DeleteTamperProofCookies();
bool IsTimeProgressing();
void DecryptTime(const char* szTime, char* szDecryptedTime, int cbEncryptedTime, const char* szKey);
void EncryptTime(const char* szTime, char* szEncryptedTime, int cbEncryptedTime, const char* szKey);
*/
HX_RESULT GetCookiesInternal(const char* pHost,
const char* pPath,
REF(IHXBuffer*) pCookies,
REF(IHXBuffer*) pPlayerCookies);
BOOL DoesDomainMatch(const char* szDomain, const char* szDomainToParse);
public:
HXCookies(IUnknown* pContext, BOOL bMemoryOnly = FALSE);
virtual ~HXCookies();
/*
* IUnknown methods
*/
STDMETHOD(QueryInterface) (THIS_
REFIID riid,
void** ppvObj);
STDMETHOD_(ULONG32,AddRef) (THIS);
STDMETHOD_(ULONG32,Release) (THIS);
/*
* IHXCookies methods
*/
/************************************************************************
* Method:
* IHXCookies::SetCookies
* Purpose:
* Set cookies
*/
STDMETHOD(SetCookies) (THIS_
const char* pHost,
const char* pPath,
IHXBuffer* pCookies);
/************************************************************************
* Method:
* IHXCookies::GetCookies
* Purpose:
* Get cookies
*/
STDMETHOD(GetCookies) (THIS_
const char* pHost,
const char* pPath,
REF(IHXBuffer*) pCookies);
/************************************************************************
* Method:
* IHXCookies2::GetExpiredCookies
* Purpose:
* Get expired cookies
*/
STDMETHOD(GetExpiredCookies)(THIS_ const char* pHost,
const char* pPath,
REF(IHXBuffer*) pCookies);
/************************************************************************
* Method:
* IHXCookies2::GetCookies
* Purpose:
* Get cookies
*/
STDMETHOD(GetCookies) (THIS_
const char* pHost,
const char* pPath,
REF(IHXBuffer*) pCookies,
REF(IHXBuffer*) pPlayerCookies);
virtual HX_RESULT SecureCookies();
virtual HX_RESULT CheckCookies();
HX_RESULT Initialize(void);
void Close(void);
void SetMemoryOnlyFlag(BOOL bMemoryOnly) { m_bMemoryOnly = bMemoryOnly; }
BOOL GetMemoryOnlyFlag() const { return m_bMemoryOnly; }
HX_RESULT SyncRMCookies(BOOL bSave);
#ifdef _TEST
void DumpCookies();
#endif // _TEST
};
#endif /* _COOKIES_H_ */
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -