1999-01-09 01:09:02 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2001-09-26 00:40:45 +00:00
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1999-01-09 01:09:02 +00:00
|
|
|
*
|
2001-09-26 00:40:45 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-01-09 01:09:02 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-26 00:40:45 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:43:54 +00:00
|
|
|
*
|
2001-09-26 00:40:45 +00:00
|
|
|
* Contributor(s):
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the NPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. 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 NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-01-09 01:09:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* MODULE NOTES:
|
|
|
|
* @update gess 4/1/98
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __NSHTMLTOKENIZER
|
|
|
|
#define __NSHTMLTOKENIZER
|
|
|
|
|
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "nsITokenizer.h"
|
|
|
|
#include "nsIDTD.h"
|
|
|
|
#include "prtypes.h"
|
|
|
|
#include "nsDeque.h"
|
|
|
|
#include "nsScanner.h"
|
|
|
|
#include "nsHTMLTokens.h"
|
1999-04-05 06:55:49 +00:00
|
|
|
#include "nsDTDUtils.h"
|
1999-01-09 01:09:02 +00:00
|
|
|
|
|
|
|
#define NS_HTMLTOKENIZER_IID \
|
|
|
|
{0xe4238ddd, 0x9eb6, 0x11d2, \
|
|
|
|
{0xba, 0xa5, 0x0, 0x10, 0x4b, 0x98, 0x3f, 0xd4 }}
|
|
|
|
|
|
|
|
|
|
|
|
/***************************************************************
|
|
|
|
Notes:
|
|
|
|
***************************************************************/
|
|
|
|
|
|
|
|
#if defined(XP_PC)
|
|
|
|
#pragma warning( disable : 4275 )
|
|
|
|
#endif
|
|
|
|
|
2001-10-23 01:37:21 +00:00
|
|
|
class nsHTMLTokenizer : public nsITokenizer {
|
1999-01-09 01:09:02 +00:00
|
|
|
public:
|
2000-05-04 05:53:52 +00:00
|
|
|
nsHTMLTokenizer( PRInt32 aParseMode=eDTDMode_quirks,
|
2001-09-08 18:37:19 +00:00
|
|
|
eParserDocType aDocType=eHTML3_Quirks,
|
2000-03-25 03:35:50 +00:00
|
|
|
eParserCommands aCommand=eViewNormal);
|
1999-01-26 01:24:31 +00:00
|
|
|
virtual ~nsHTMLTokenizer();
|
1999-01-09 01:09:02 +00:00
|
|
|
|
1999-01-26 01:24:31 +00:00
|
|
|
NS_DECL_ISUPPORTS
|
1999-01-09 01:09:02 +00:00
|
|
|
|
2000-08-30 18:22:03 +00:00
|
|
|
virtual nsresult WillTokenize(PRBool aIsFinalChunk,nsTokenAllocator* aTokenAllocator);
|
2000-01-15 20:35:57 +00:00
|
|
|
virtual nsresult ConsumeToken(nsScanner& aScanner,PRBool& aFlushTokens);
|
1999-07-15 08:23:37 +00:00
|
|
|
virtual nsresult DidTokenize(PRBool aIsFinalChunk);
|
2000-08-30 18:22:03 +00:00
|
|
|
virtual nsTokenAllocator* GetTokenAllocator(void);
|
1999-01-09 01:09:02 +00:00
|
|
|
|
|
|
|
virtual CToken* PushTokenFront(CToken* theToken);
|
|
|
|
virtual CToken* PushToken(CToken* theToken);
|
2000-09-08 23:06:13 +00:00
|
|
|
virtual CToken* PopToken(void);
|
|
|
|
virtual CToken* PeekToken(void);
|
|
|
|
virtual CToken* GetTokenAt(PRInt32 anIndex);
|
|
|
|
virtual PRInt32 GetCount(void);
|
1999-01-09 01:09:02 +00:00
|
|
|
|
1999-04-05 06:55:49 +00:00
|
|
|
virtual void PrependTokens(nsDeque& aDeque);
|
|
|
|
|
1999-01-09 01:09:02 +00:00
|
|
|
protected:
|
|
|
|
|
1999-05-16 05:27:23 +00:00
|
|
|
virtual nsresult ConsumeScriptContent(nsScanner& aScanner,CToken*& aToken);
|
2000-01-15 20:35:57 +00:00
|
|
|
virtual nsresult ConsumeTag(PRUnichar aChar,CToken*& aToken,nsScanner& aScanner,PRBool& aFlushTokens);
|
|
|
|
virtual nsresult ConsumeStartTag(PRUnichar aChar,CToken*& aToken,nsScanner& aScanner,PRBool& aFlushTokens);
|
1999-01-09 01:09:02 +00:00
|
|
|
virtual nsresult ConsumeEndTag(PRUnichar aChar,CToken*& aToken,nsScanner& aScanner);
|
2000-12-12 21:58:14 +00:00
|
|
|
virtual nsresult ConsumeAttributes(PRUnichar aChar,CStartToken* aToken,nsScanner& aScanner);
|
1999-01-09 01:09:02 +00:00
|
|
|
virtual nsresult ConsumeEntity(PRUnichar aChar,CToken*& aToken,nsScanner& aScanner);
|
|
|
|
virtual nsresult ConsumeWhitespace(PRUnichar aChar,CToken*& aToken,nsScanner& aScanner);
|
|
|
|
virtual nsresult ConsumeComment(PRUnichar aChar,CToken*& aToken,nsScanner& aScanner);
|
|
|
|
virtual nsresult ConsumeNewline(PRUnichar aChar,CToken*& aToken,nsScanner& aScanner);
|
2000-12-12 21:58:14 +00:00
|
|
|
virtual nsresult ConsumeText(CToken*& aToken,nsScanner& aScanner);
|
1999-09-15 17:54:23 +00:00
|
|
|
virtual nsresult ConsumeSpecialMarkup(PRUnichar aChar,CToken*& aToken,nsScanner& aScanner);
|
1999-01-09 01:09:02 +00:00
|
|
|
virtual nsresult ConsumeProcessingInstruction(PRUnichar aChar,CToken*& aToken,nsScanner& aScanner);
|
2000-09-08 23:06:13 +00:00
|
|
|
|
|
|
|
nsresult ScanDocStructure(PRBool aIsFinalChunk);
|
|
|
|
|
2000-12-12 21:58:14 +00:00
|
|
|
virtual void RecordTrailingContent(CStartToken* aStartToken, nsScanner& aScanner, nsReadingIterator<PRUnichar> aOrigin);
|
1999-01-09 01:09:02 +00:00
|
|
|
|
2000-08-30 18:22:03 +00:00
|
|
|
static void AddToken(CToken*& aToken,nsresult aResult,nsDeque* aDeque,nsTokenAllocator* aTokenAllocator);
|
1999-03-02 23:20:45 +00:00
|
|
|
|
2000-08-30 18:22:03 +00:00
|
|
|
nsDeque mTokenDeque;
|
2001-05-15 22:32:26 +00:00
|
|
|
PRInt32 mFlags;
|
2000-08-30 18:22:03 +00:00
|
|
|
PRBool mRecordTrailingContent;
|
|
|
|
nsTokenAllocator* mTokenAllocator;
|
2000-09-08 23:06:13 +00:00
|
|
|
PRInt32 mTokenScanPos;
|
|
|
|
PRBool mIsFinalChunk;
|
1999-01-09 01:09:02 +00:00
|
|
|
};
|
|
|
|
|
2001-10-23 01:37:21 +00:00
|
|
|
extern nsresult NS_NewHTMLTokenizer( nsITokenizer** aInstancePtrResult,
|
2000-03-25 03:35:50 +00:00
|
|
|
PRInt32 aMode,
|
|
|
|
eParserDocType aDocType,
|
|
|
|
eParserCommands aCommand);
|
1999-01-09 01:09:02 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|