📄 cookies.h
字号:
/* ***** BEGIN LICENSE BLOCK ***** * Source last modified: $Id: cookies.h,v 1.1.1.1.50.3 2004/07/09 01:48:00 hubbe Exp $ * * Portions Copyright (c) 1995-2004 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 (the "RPSL") available at * http://www.helixcommunity.org/content/rpsl unless you have licensed * the file under the current version of the RealNetworks Community * Source License (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. * * Alternatively, the contents of this file may be used under the * terms of the GNU General Public License Version 2 or later (the * "GPL") in which case the provisions of the GPL are applicable * instead of those above. If you wish to allow use of your version of * this file only under the terms of the GPL, and not to allow others * to use your version of this file under the terms of either the RPSL * or RCSL, indicate your decision by deleting the provisions above * and replace them with the notice and other provisions required by * the GPL. If you do not delete the provisions above, a recipient may * use your version of this file under the terms of any one of the * RPSL, the RCSL or the GPL. * * 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 _WINDOWStypedef 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 + -