📄 rtffplin.h
字号:
/* ***** BEGIN LICENSE BLOCK ***** * Source last modified: $Id: rtffplin.h,v 1.1.2.1 2004/07/09 01:50:34 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 _RTFFPLIN_H_#define _RTFFPLIN_H_/////////////////////////////////////////////////////////////////////////////// // Class://// CRealTextFileFormat//// Purpose://// RealText implementation of a basic file format.//class RealTextHeader;class TextParser; //Added this as base class for parsing.class CRealTextFileFormat : public IHXPlugin, public IHXFileFormatObject, public IHXFileResponse, public IHXInterruptSafe, public RealTextHeader, public IHXPendingStatus, public TextParser , public IHXFileStatResponse , public IHXThreadSafeMethods ,public IHXFileMimeMapperResponse{private: //This object will help keep track of what's going on: TextWindow m_txtWin; //This is ptr to the first TextLine in the next packet // and can only be assumed to be valid right after : TextLine* m_pCurTextLine; //This var keeps track of whether or not the current, ready-to-send // packet contains text that was between a <REQUIRED> and a </REQUIRED>, // i.e., whether or not the packet needs to be sent with priority 10: BOOL m_bCurPacketHasREQUIREDContents; //XXXEH- for now, this is not ALL of the unsent data of // the last read, just the parsed part (and the residual will be re- // read!!- this needs to be changed so file ptr doesn't have to be // reset with each GetPacket()'s read: //This is the already-parsed but not-yet-sent part from the last // ReadDone: IHXBuffer* m_pSavedDataFromLastRead; LONG32 m_lRefCount; IUnknown* m_pContext; IHXRegistry* m_pRegistry; IHXErrorMessages* m_pErrorMessages; BOOL m_bRealTextLicensed; IHXFileObject* m_pFileObject; IHXFormatResponse* m_pFFResponse; BOOL m_bHeaderSent; ULONG32 m_ulCurrentTime; IHXRequest* m_pRequest; IHXFileStat* m_pFileStatObj; //for getting the file size. //This is the amount that should be Read() following // a ::Seek() (the Seek() code sets this val and it should only be used // following a Seek() ): ULONG32 m_ulSizeOfNextReadAfterSeek; //This tells us what we've already read and *parsed* // so we don't re-parse any data: ULONG32 m_ulLastByteParsedInFile; //This is where the next SEEK should be done //for the next packet: ULONG32 m_ulNextPacketSeekPoint; //Since header size varies, this helps seek ///where to look for the next packet, offset by ///HEADER_OFFSET + m_pHeaderSize: ULONG32 m_ulHeaderSize; //Since packet size varies, this helps seek ///where to look for the next packet, offset by ///HEADER_OFFSET + m_ulNextPacketSeekPoint: ULONG32 m_ulCurPacketSize; ULONG32 m_ulSequenceNum; //This is the start time of the first text in the last packet that // was sent, which is NOT necessarily equal to that packet's time stamp: ULONG32 m_ulStartTimeOfTextOfPriorPacket; ULONG32 m_ulTotalFileSizeInBytes; char* m_pszFileMimeType; BOOL m_bIsTextPlainStreamMimeType; typedef enum { Ready, InitPending, GetStreamHeaderSeekPending, GetStreamHeaderReadPending, GetPacketSeekPending, GetPacketReadPending, SeekSeekPending, SeekSeekTooFarFwdPending, GetPacketStillBackedUpSeekPending, GetPacketSeekBackReadPending, GetPacketSeekTooFarFwdReadPending , GetFileHeaderSeekPending, GetFileHeaderReadPending } RealTextState; RealTextState m_state; typedef enum { invalid_extension, rtx_extension, txt_extension, html_extension }RTSourceFileExtension; RTSourceFileExtension m_RTSourceFileExtension; static const char* zm_pDescription; static const char* zm_pCopyright; static const char* zm_pMoreInfoURL; static const char* zm_pFileMimeTypes[]; static const char* zm_pFileExtensions[]; static const char* zm_pFileOpenNames[];#define RT_OUTPUT_LOGFILE#if !defined(RT_FF_DEBUG_FLAGS_MASK)#define RT_FF_DEBUG_FLAGS_MASK 0xFFFF0000#endif#ifdef _DEBUG#if defined(RT_OUTPUT_LOGFILE) FILE* m_logfile;#endif#endif ~CRealTextFileFormat(); PRIVATE_DESTRUCTORS_ARE_NOT_A_CRIME void ReportError(UINT32 ulErrorID, HX_RESULT retVal); HX_RESULT GetResourceErrorString(UINT32 ulErrorID, CHXString& rErrorStr); HX_RESULT DealWithFileHeader(char* szLoppedHdr, ULONG32 bufSize);public: CRealTextFileFormat(); // *** IUnknown methods *** STDMETHOD(QueryInterface) (THIS_ REFIID riid, void** ppvObj); STDMETHOD_(ULONG32,AddRef) (THIS); STDMETHOD_(ULONG32,Release) (THIS); // *** IHXPlugin methods *** /************************************************************************ * Method: * IHXPlugin::GetPluginInfo * Purpose: * Returns the basic information about this plugin. Including: * * bLoadMultiple whether or not this plugin DLL can be loaded * multiple times. All File Formats must set * this value to TRUE. * pDescription which is used in about UIs (can be NULL) * pCopyright which is used in about UIs (can be NULL) * pMoreInfoURL which is used in about UIs (can be NULL) */ STDMETHOD(GetPluginInfo) (THIS_ REF(BOOL) /*OUT*/ bLoadMultiple,
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -