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 *****
|
2004-04-23 13:24:28 +00:00
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
1999-01-09 01:09:02 +00:00
|
|
|
*
|
2004-04-23 13:24:28 +00:00
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
2001-09-26 00:40:45 +00:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
2004-04-23 13:24:28 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
2001-09-26 00:40:45 +00:00
|
|
|
* 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
|
2004-04-23 13:24:28 +00:00
|
|
|
* either of 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"),
|
2001-09-26 00:40:45 +00:00
|
|
|
* 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
|
2004-04-23 13:24:28 +00:00
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
2001-09-26 00:40:45 +00:00
|
|
|
* 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
|
2004-04-23 13:24:28 +00:00
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
2001-09-26 00:40:45 +00:00
|
|
|
*
|
|
|
|
* ***** 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:
|
|
|
|
***************************************************************/
|
|
|
|
|
2003-04-02 22:45:08 +00:00
|
|
|
#ifdef _MSC_VER
|
1999-01-09 01:09:02 +00:00
|
|
|
#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:
|
2002-01-09 01:37:50 +00:00
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSITOKENIZER
|
2003-05-28 20:56:21 +00:00
|
|
|
nsHTMLTokenizer(PRInt32 aParseMode = eDTDMode_quirks,
|
|
|
|
eParserDocType aDocType = eHTML3_Quirks,
|
|
|
|
eParserCommands aCommand = eViewNormal);
|
1999-01-26 01:24:31 +00:00
|
|
|
virtual ~nsHTMLTokenizer();
|
1999-01-09 01:09:02 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
|
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);
|
2002-04-10 22:16:46 +00:00
|
|
|
virtual nsresult ConsumeAttributes(PRUnichar aChar, CToken* 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
|
|
|
|
2003-05-28 20:56:21 +00:00
|
|
|
nsresult ScanDocStructure(PRBool aIsFinalChunk);
|
2000-09-08 23:06:13 +00:00
|
|
|
|
2004-02-19 02:44:03 +00:00
|
|
|
virtual void PreserveToken(CStartToken* aStartToken, nsScanner& aScanner, nsScannerIterator 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;
|
2002-08-06 01:22:59 +00:00
|
|
|
PRPackedBool mIsFinalChunk;
|
2000-08-30 18:22:03 +00:00
|
|
|
nsTokenAllocator* mTokenAllocator;
|
2000-09-08 23:06:13 +00:00
|
|
|
PRInt32 mTokenScanPos;
|
2003-05-28 20:56:21 +00:00
|
|
|
PRUint32 mFlags;
|
|
|
|
eHTMLTags mPreserveTarget; // Tag whose content is preserved
|
1999-01-09 01:09:02 +00:00
|
|
|
};
|
|
|
|
|
2003-05-28 20:56:21 +00:00
|
|
|
extern nsresult NS_NewHTMLTokenizer(nsITokenizer** aInstancePtrResult,
|
|
|
|
PRInt32 aMode,eParserDocType aDocType,
|
|
|
|
eParserCommands aCommand);
|
1999-01-09 01:09:02 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|