Harishd's Changes: Fix for bugs 2749 - Tweaked strict comment handling, i.e., <!------> is now treated as an illegal comment in strict mode 16934 - Rectifed reporting of JS line error when a newline is found within a tag. 15204 - Made TEXTAREA content to reflect the source document. 11979, 16826 - Stoping the parser properly on receiving the stop-error message. 17594 - Added code to parse <!DOCTYPE> content correctly. 17496 - Building up the stack for orphaned OPTIONs r=rickg Rickg's Changes: rickg will be posting comments on his changes by 11/12/99. r=harishd git-svn-id: svn://10.0.0.236/trunk@53402 18797224-902f-48f8-a5cc-f745e15eee43
249 lines
7.8 KiB
C++
249 lines
7.8 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/*
|
|
* 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.
|
|
*
|
|
* The Original Code is mozilla.org code.
|
|
*
|
|
* The Initial Developer of the Original Code is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
* Rights Reserved.
|
|
*
|
|
* Contributor(s):
|
|
*/
|
|
|
|
#ifndef nsIDTD_h___
|
|
#define nsIDTD_h___
|
|
|
|
/**
|
|
* MODULE NOTES:
|
|
* @update gess 7/20/98
|
|
*
|
|
* This interface defines standard interface for DTD's. Note that this isn't HTML specific.
|
|
* DTD's have several primary functions within the parser system:
|
|
* 1) To coordinate the consumption of an input stream via the parser
|
|
* 2) To serve as proxy to represent the containment rules of the underlying document
|
|
* 3) To offer autodetection services to the parser (mainly for doc conversion)
|
|
*
|
|
*/
|
|
|
|
#include "nshtmlpars.h"
|
|
#include "nsISupports.h"
|
|
#include "prtypes.h"
|
|
#include "nsITokenizer.h"
|
|
|
|
#define NS_IDTD_IID \
|
|
{ 0xa6cf9053, 0x15b3, 0x11d2,{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32}}
|
|
|
|
enum eAutoDetectResult {
|
|
eUnknownDetect,
|
|
eValidDetect,
|
|
ePrimaryDetect,
|
|
eInvalidDetect
|
|
};
|
|
|
|
enum eParseMode {
|
|
|
|
eParseMode_unknown=0,
|
|
eParseMode_quirks, //pre 5.0 versions
|
|
eParseMode_noquirks, //raptor versions...)
|
|
eParseMode_other,
|
|
eParseMode_autodetect
|
|
};
|
|
|
|
class nsIParser;
|
|
class CToken;
|
|
class nsIDTDDebug;
|
|
class nsIURI;
|
|
class nsString;
|
|
class nsITagHandler;
|
|
class nsIContentSink;
|
|
|
|
|
|
class nsIDTD : public nsISupports {
|
|
public:
|
|
|
|
static const nsIID& GetIID() { static nsIID iid = NS_IDTD_IID; return iid; }
|
|
|
|
/**
|
|
* Default constructor
|
|
* @update gess6/24/98
|
|
*/
|
|
virtual ~nsIDTD() {};
|
|
|
|
virtual const nsIID& GetMostDerivedIID(void) const =0;
|
|
|
|
/**
|
|
* Call this method if you want the DTD to construct a clone of itself.
|
|
* @update gess7/23/98
|
|
* @param
|
|
* @return
|
|
*/
|
|
virtual nsresult CreateNewInstance(nsIDTD** aInstancePtrResult)=0;
|
|
|
|
/**
|
|
* This method is called to determine if the given DTD can parse
|
|
* a document in a given source-type.
|
|
* NOTE: Parsing always assumes that the end result will involve
|
|
* storing the result in the main content model.
|
|
* @update gess6/24/98
|
|
* @param aContentType -- string representing type of doc to be converted (ie text/html)
|
|
* @return TRUE if this DTD can satisfy the request; FALSE otherwise.
|
|
*/
|
|
virtual eAutoDetectResult CanParse(nsString& aContentType, nsString& aCommand, nsString& aBuffer, PRInt32 aVersion)=0;
|
|
|
|
/**
|
|
* Called by the parser just before the parsing process begins
|
|
* @update gess5/18/98
|
|
* @param aFilename--string that contains name of file being parsed (if applicable)
|
|
* @return
|
|
*/
|
|
NS_IMETHOD WillBuildModel( nsString& aFilename,
|
|
PRBool aNotifySink,
|
|
nsString& aSourceType,
|
|
eParseMode aParseMode,
|
|
nsString& aCommand,
|
|
nsIContentSink* aSink=0)=0;
|
|
|
|
/**
|
|
* Called by the parser after the parsing process has concluded
|
|
* @update gess5/18/98
|
|
* @param anErrorCode - contains error code resulting from parse process
|
|
* @return
|
|
*/
|
|
NS_IMETHOD DidBuildModel(nsresult anErrorCode,PRBool aNotifySink,nsIParser* aParser,nsIContentSink* aSink=0)=0;
|
|
|
|
/**
|
|
* Called by the parser after the parsing process has concluded
|
|
* @update gess5/18/98
|
|
* @param anErrorCode - contains error code resulting from parse process
|
|
* @return
|
|
*/
|
|
NS_IMETHOD BuildModel(nsIParser* aParser,nsITokenizer* aTokenizer,nsITokenObserver* anObserver=0,nsIContentSink* aSink=0)=0;
|
|
|
|
/**
|
|
* Called during model building phase of parse process. Each token created during
|
|
* the parse phase is stored in a deque (in the parser) and are passed to this method
|
|
* so that the DTD can process the token. Ultimately, the DTD will transform given
|
|
* token into calls onto a contentsink.
|
|
* @update gess 3/25/98
|
|
* @param aToken -- token object to be put into content model
|
|
* @return error code (usually 0)
|
|
*/
|
|
NS_IMETHOD HandleToken(CToken* aToken,nsIParser* aParser)=0;
|
|
|
|
/**
|
|
* Cause the tokenizer to consume and create the next token, and
|
|
* return an error result.
|
|
*
|
|
* @update gess 3/25/98
|
|
* @param aToken -- will contain newly created and consumed token
|
|
* @return error code (usually 0)
|
|
*/
|
|
virtual nsITokenizer* GetTokenizer(void)=0;
|
|
|
|
|
|
virtual nsITokenRecycler* GetTokenRecycler(void)=0;
|
|
|
|
/**
|
|
* This method causes all tokens to be dispatched to the given tag handler.
|
|
*
|
|
* @update gess 3/25/98
|
|
* @param aHandler -- object to receive subsequent tokens...
|
|
* @return error code (usually 0)
|
|
*/
|
|
NS_IMETHOD CaptureTokenPump(nsITagHandler* aHandler)=0;
|
|
|
|
/**
|
|
* This method releases the token-pump capture obtained in CaptureTokenPump()
|
|
*
|
|
* @update gess 3/25/98
|
|
* @param aHandler -- object that received tokens...
|
|
* @return error code (usually 0)
|
|
*/
|
|
NS_IMETHOD ReleaseTokenPump(nsITagHandler* aHandler)=0;
|
|
|
|
/**
|
|
* If the parse process gets interrupted midway, this method is called by the
|
|
* parser prior to resuming the process.
|
|
* @update gess5/18/98
|
|
* @return ignored
|
|
*/
|
|
NS_IMETHOD WillResumeParse(void)=0;
|
|
|
|
/**
|
|
* If the parse process gets interrupted, this method is called by the parser
|
|
* to notify the DTD that interruption will occur.
|
|
* @update gess5/18/98
|
|
* @return ignored
|
|
*/
|
|
NS_IMETHOD WillInterruptParse(void)=0;
|
|
|
|
/**
|
|
* This method is called to determine whether or not a tag
|
|
* of one type can contain a tag of another type.
|
|
*
|
|
* @update gess 3/25/98
|
|
* @param aParent -- int tag of parent container
|
|
* @param aChild -- int tag of child container
|
|
* @return PR_TRUE if parent can contain child
|
|
*/
|
|
virtual PRBool CanContain(PRInt32 aParent,PRInt32 aChild) const =0;
|
|
|
|
/**
|
|
* This method gets called to determine whether a given
|
|
* tag is itself a container
|
|
*
|
|
* @update gess 3/25/98
|
|
* @param aTag -- tag to test for containership
|
|
* @return PR_TRUE if given tag can contain other tags
|
|
*/
|
|
virtual PRBool IsContainer(PRInt32 aTag) const=0;
|
|
|
|
/**
|
|
* Called by the parser to initiate dtd verification of the
|
|
* internal context stack.
|
|
* @update gess 7/23/98
|
|
* @param
|
|
* @return
|
|
*/
|
|
virtual PRBool Verify(nsString& aURLRef,nsIParser* aParser)=0;
|
|
|
|
/**
|
|
* Use this id you want to stop the building content model
|
|
* --------------[ Sets DTD to STOP mode ]----------------
|
|
* It's recommended to use this method in accordance with
|
|
* the parser's terminate() method.
|
|
*
|
|
* @update harishd 07/22/99
|
|
* @param
|
|
* @return
|
|
*/
|
|
virtual nsresult Terminate(void) = 0;
|
|
|
|
/* XXX Temporary measure, pending further work by RickG */
|
|
|
|
/**
|
|
* Give rest of world access to our tag enums, so that CanContain(), etc,
|
|
* become useful.
|
|
*/
|
|
NS_IMETHOD StringTagToIntTag(nsString &aTag, PRInt32* aIntTag) const =0;
|
|
|
|
NS_IMETHOD IntTagToStringTag(PRInt32 aIntTag, nsString& aTag) const =0;
|
|
|
|
NS_IMETHOD ConvertEntityToUnicode(const nsString& aEntity, PRInt32* aUnicode) const =0;
|
|
};
|
|
|
|
|
|
|
|
#endif /* nsIDTD_h___ */
|
|
|