1998-04-13 20:24:54 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/*
|
1999-11-06 03:43:54 +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/
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +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.
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1998-04-13 20:24:54 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1998-04-13 20:24:54 +00:00
|
|
|
*/
|
1999-01-09 01:09:02 +00:00
|
|
|
|
1998-07-15 22:30:39 +00:00
|
|
|
#ifndef nsIDTD_h___
|
|
|
|
#define nsIDTD_h___
|
1998-04-13 20:24:54 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* MODULE NOTES:
|
1998-07-23 08:21:02 +00:00
|
|
|
* @update gess 7/20/98
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
1998-07-23 08:21:02 +00:00
|
|
|
* 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)
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
|
|
|
*/
|
1998-07-23 08:21:02 +00:00
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "prtypes.h"
|
1999-01-09 01:09:02 +00:00
|
|
|
#include "nsITokenizer.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-07-15 22:30:39 +00:00
|
|
|
#define NS_IDTD_IID \
|
|
|
|
{ 0xa6cf9053, 0x15b3, 0x11d2,{0x93, 0x2e, 0x00, 0x80, 0x5f, 0x8a, 0xdd, 0x32}}
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1999-02-18 23:45:44 +00:00
|
|
|
enum eAutoDetectResult {
|
|
|
|
eUnknownDetect,
|
|
|
|
eValidDetect,
|
|
|
|
ePrimaryDetect,
|
|
|
|
eInvalidDetect
|
|
|
|
};
|
|
|
|
|
2000-05-04 05:53:52 +00:00
|
|
|
enum nsDTDMode {
|
|
|
|
eDTDMode_unknown=0,
|
2000-06-10 02:53:04 +00:00
|
|
|
eDTDMode_quirks, //pre 4.0 versions
|
2000-05-04 05:53:52 +00:00
|
|
|
eDTDMode_strict,
|
|
|
|
eDTDMode_autodetect
|
1999-10-05 04:54:53 +00:00
|
|
|
};
|
1999-02-18 23:45:44 +00:00
|
|
|
|
2000-05-04 05:53:52 +00:00
|
|
|
|
1998-04-30 05:56:39 +00:00
|
|
|
class nsIParser;
|
1998-06-17 23:13:28 +00:00
|
|
|
class CToken;
|
1999-06-23 03:29:44 +00:00
|
|
|
class nsIURI;
|
1998-07-02 08:14:22 +00:00
|
|
|
class nsString;
|
1999-01-26 01:24:31 +00:00
|
|
|
class nsIContentSink;
|
2000-03-25 03:35:50 +00:00
|
|
|
class CParserContext;
|
1998-08-05 02:01:44 +00:00
|
|
|
|
1998-07-15 22:30:39 +00:00
|
|
|
class nsIDTD : public nsISupports {
|
1998-04-25 19:45:14 +00:00
|
|
|
public:
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1999-06-30 19:12:21 +00:00
|
|
|
static const nsIID& GetIID() { static nsIID iid = NS_IDTD_IID; return iid; }
|
1998-07-24 21:57:43 +00:00
|
|
|
|
1999-01-09 01:09:02 +00:00
|
|
|
virtual const nsIID& GetMostDerivedIID(void) const =0;
|
1998-07-24 21:57:43 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
|
1998-07-02 08:14:22 +00:00
|
|
|
/**
|
1998-07-10 05:35:23 +00:00
|
|
|
* 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.
|
1998-07-02 08:14:22 +00:00
|
|
|
* @update gess6/24/98
|
1998-07-23 08:21:02 +00:00
|
|
|
* @param aContentType -- string representing type of doc to be converted (ie text/html)
|
1998-07-10 05:35:23 +00:00
|
|
|
* @return TRUE if this DTD can satisfy the request; FALSE otherwise.
|
|
|
|
*/
|
2000-03-25 03:35:50 +00:00
|
|
|
virtual eAutoDetectResult CanParse(CParserContext& aParserContext,nsString& aBuffer, PRInt32 aVersion)=0;
|
1998-07-02 08:14:22 +00:00
|
|
|
|
1998-04-25 19:45:14 +00:00
|
|
|
/**
|
1998-07-23 08:21:02 +00:00
|
|
|
* Called by the parser just before the parsing process begins
|
1998-06-17 23:13:28 +00:00
|
|
|
* @update gess5/18/98
|
1998-07-23 08:21:02 +00:00
|
|
|
* @param aFilename--string that contains name of file being parsed (if applicable)
|
|
|
|
* @return
|
1998-04-25 19:45:14 +00:00
|
|
|
*/
|
2000-03-25 03:35:50 +00:00
|
|
|
NS_IMETHOD WillBuildModel( const CParserContext& aParserContext,nsIContentSink* aSink=0)=0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-04-25 19:45:14 +00:00
|
|
|
/**
|
1998-07-23 08:21:02 +00:00
|
|
|
* Called by the parser after the parsing process has concluded
|
1998-06-17 23:13:28 +00:00
|
|
|
* @update gess5/18/98
|
1998-07-23 08:21:02 +00:00
|
|
|
* @param anErrorCode - contains error code resulting from parse process
|
1998-06-17 23:13:28 +00:00
|
|
|
* @return
|
1998-04-25 19:45:14 +00:00
|
|
|
*/
|
1999-01-26 01:24:31 +00:00
|
|
|
NS_IMETHOD DidBuildModel(nsresult anErrorCode,PRBool aNotifySink,nsIParser* aParser,nsIContentSink* aSink=0)=0;
|
1999-01-09 01:09:02 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Called by the parser after the parsing process has concluded
|
|
|
|
* @update gess5/18/98
|
|
|
|
* @param anErrorCode - contains error code resulting from parse process
|
|
|
|
* @return
|
|
|
|
*/
|
1999-01-26 01:24:31 +00:00
|
|
|
NS_IMETHOD BuildModel(nsIParser* aParser,nsITokenizer* aTokenizer,nsITokenObserver* anObserver=0,nsIContentSink* aSink=0)=0;
|
1998-06-17 23:13:28 +00:00
|
|
|
|
1998-04-25 19:45:14 +00:00
|
|
|
/**
|
1998-07-23 08:21:02 +00:00
|
|
|
* Called during model building phase of parse process. Each token created during
|
1999-01-09 01:09:02 +00:00
|
|
|
* 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.
|
1998-04-13 20:24:54 +00:00
|
|
|
* @update gess 3/25/98
|
1998-06-17 23:13:28 +00:00
|
|
|
* @param aToken -- token object to be put into content model
|
1999-01-09 01:09:02 +00:00
|
|
|
* @return error code (usually 0)
|
1998-04-25 19:45:14 +00:00
|
|
|
*/
|
1998-11-26 02:55:59 +00:00
|
|
|
NS_IMETHOD HandleToken(CToken* aToken,nsIParser* aParser)=0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-05-04 23:36:46 +00:00
|
|
|
/**
|
1999-12-21 07:53:20 +00:00
|
|
|
*
|
|
|
|
* @update gess 12/20/99
|
|
|
|
* @param ptr-ref to (out) tokenizer
|
|
|
|
* @return nsresult
|
1998-05-04 23:36:46 +00:00
|
|
|
*/
|
1999-12-21 07:53:20 +00:00
|
|
|
NS_IMETHOD GetTokenizer(nsITokenizer*& aTokenizer)=0;
|
1999-01-09 01:09:02 +00:00
|
|
|
|
1999-01-15 19:29:35 +00:00
|
|
|
|
2000-08-30 18:22:03 +00:00
|
|
|
virtual nsTokenAllocator* GetTokenAllocator(void)=0;
|
1998-04-22 23:56:57 +00:00
|
|
|
|
1998-04-25 19:45:14 +00:00
|
|
|
/**
|
1998-07-23 08:21:02 +00:00
|
|
|
* If the parse process gets interrupted midway, this method is called by the
|
|
|
|
* parser prior to resuming the process.
|
1998-06-17 23:13:28 +00:00
|
|
|
* @update gess5/18/98
|
1998-07-23 08:21:02 +00:00
|
|
|
* @return ignored
|
1998-04-25 19:45:14 +00:00
|
|
|
*/
|
1998-07-15 22:30:39 +00:00
|
|
|
NS_IMETHOD WillResumeParse(void)=0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-04-25 19:45:14 +00:00
|
|
|
/**
|
1998-07-23 08:21:02 +00:00
|
|
|
* If the parse process gets interrupted, this method is called by the parser
|
|
|
|
* to notify the DTD that interruption will occur.
|
1998-06-17 23:13:28 +00:00
|
|
|
* @update gess5/18/98
|
1998-07-23 08:21:02 +00:00
|
|
|
* @return ignored
|
1998-04-25 19:45:14 +00:00
|
|
|
*/
|
1998-07-15 22:30:39 +00:00
|
|
|
NS_IMETHOD WillInterruptParse(void)=0;
|
1998-04-22 20:22:59 +00:00
|
|
|
|
1998-06-18 22:57:25 +00:00
|
|
|
/**
|
1998-07-10 05:35:23 +00:00
|
|
|
* 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
|
1998-06-18 22:57:25 +00:00
|
|
|
*/
|
1998-08-12 08:53:55 +00:00
|
|
|
virtual PRBool CanContain(PRInt32 aParent,PRInt32 aChild) const =0;
|
1998-07-10 05:35:23 +00:00
|
|
|
|
1998-08-29 05:08:20 +00:00
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
|
1999-07-27 00:54:46 +00:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2000-05-22 21:32:06 +00:00
|
|
|
virtual nsresult Terminate(nsIParser* aParser=nsnull) = 0;
|
1999-07-27 00:54:46 +00:00
|
|
|
|
1999-07-19 22:49:21 +00:00
|
|
|
/* 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;
|
1999-07-27 00:54:46 +00:00
|
|
|
|
1999-09-30 22:01:48 +00:00
|
|
|
NS_IMETHOD IntTagToStringTag(PRInt32 aIntTag, nsString& aTag) const =0;
|
|
|
|
|
|
|
|
NS_IMETHOD ConvertEntityToUnicode(const nsString& aEntity, PRInt32* aUnicode) const =0;
|
2000-06-10 02:53:04 +00:00
|
|
|
|
|
|
|
virtual PRBool IsBlockElement(PRInt32 aTagID,PRInt32 aParentID) const=0;
|
|
|
|
virtual PRBool IsInlineElement(PRInt32 aTagID,PRInt32 aParentID) const=0;
|
|
|
|
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
1998-08-05 02:01:44 +00:00
|
|
|
|
|
|
|
|
1998-07-15 22:30:39 +00:00
|
|
|
#endif /* nsIDTD_h___ */
|
1998-07-23 08:21:02 +00:00
|
|
|
|