1998-04-13 20:24:54 +00:00
|
|
|
/* -*- 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.0 (the "NPL"); you may not use this file except in
|
|
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
|
|
* http://www.mozilla.org/NPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* NPL.
|
|
|
|
*
|
|
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
|
|
* Communications Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
|
|
* Reserved.
|
|
|
|
*/
|
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-07-14 19:24:54 +00:00
|
|
|
#include "nshtmlpars.h"
|
1998-04-13 20:24:54 +00:00
|
|
|
#include "nsISupports.h"
|
|
|
|
#include "prtypes.h"
|
|
|
|
|
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
|
|
|
|
1998-04-30 05:56:39 +00:00
|
|
|
class nsIParser;
|
1998-06-17 23:13:28 +00:00
|
|
|
class CToken;
|
|
|
|
class nsIContentSink;
|
1998-06-25 01:42:50 +00:00
|
|
|
class nsIDTDDebug;
|
1998-06-23 00:53:50 +00:00
|
|
|
class nsIURL;
|
1998-07-02 08:14:22 +00:00
|
|
|
class nsString;
|
|
|
|
|
|
|
|
enum eAutoDetectResult {eUnknownDetect, eValidDetect, eInvalidDetect};
|
1998-04-13 20:24:54 +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
|
|
|
|
1998-07-02 08:14:22 +00:00
|
|
|
/**
|
1998-07-23 08:21:02 +00:00
|
|
|
* Default constructor
|
1998-07-02 08:14:22 +00:00
|
|
|
* @update gess6/24/98
|
|
|
|
*/
|
|
|
|
virtual ~nsIDTD() {};
|
|
|
|
|
1998-04-25 19:45:14 +00:00
|
|
|
/**
|
1998-07-23 08:21:02 +00:00
|
|
|
* This method informs the DTD about the parser being used to drive the parse process
|
1998-04-13 20:24:54 +00:00
|
|
|
*
|
|
|
|
* @update gess 3/25/98
|
1998-07-23 08:21:02 +00:00
|
|
|
* @param aParse -- ptr to parser object
|
|
|
|
* @return nada
|
1998-04-25 19:45:14 +00:00
|
|
|
*/
|
1998-06-17 23:13:28 +00:00
|
|
|
virtual void SetParser(nsIParser* aParser)=0;
|
1998-04-30 05:56:39 +00:00
|
|
|
|
1998-06-17 23:13:28 +00:00
|
|
|
/**
|
1998-07-23 08:21:02 +00:00
|
|
|
* Select given content sink into DTD for output
|
1998-06-17 23:13:28 +00:00
|
|
|
* @update gess5/11/98
|
|
|
|
* @param aSink is the new sink to be used by parser
|
|
|
|
* @return old sink, or NULL
|
1998-04-30 05:56:39 +00:00
|
|
|
*/
|
1998-06-17 23:13:28 +00:00
|
|
|
virtual nsIContentSink* SetContentSink(nsIContentSink* aSink)=0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
virtual PRBool CanParse(nsString& aContentType, PRInt32 aVersion)=0;
|
|
|
|
|
|
|
|
/**
|
1998-07-23 08:21:02 +00:00
|
|
|
* This method, typically called by the parser, is used to try to autodetect the
|
|
|
|
* type of data contained in the given buffer. The implementor should look at the
|
|
|
|
* buffers contents to try to determine its encoding type.
|
1998-07-10 05:35:23 +00:00
|
|
|
* @update gess7/7/98
|
1998-07-23 08:21:02 +00:00
|
|
|
* @param aBuffer-contains data to be scanned to autodetect type
|
|
|
|
* @param aType-will hold the result if type is autodetected
|
|
|
|
* @return eValid (if detected), eInvalid (if not) or eUnknown (if nothing can be done)
|
1998-07-02 08:14:22 +00:00
|
|
|
*/
|
1998-07-10 05:35:23 +00:00
|
|
|
virtual eAutoDetectResult AutoDetectContentType(nsString& aBuffer,nsString& aType)=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
|
|
|
*/
|
1998-07-15 22:30:39 +00:00
|
|
|
NS_IMETHOD WillBuildModel(nsString& aFilename)=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
|
|
|
*/
|
1998-07-15 22:30:39 +00:00
|
|
|
NS_IMETHOD DidBuildModel(PRInt32 anErrorCode)=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
|
|
|
|
* 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
|
1998-07-23 08:21:02 +00:00
|
|
|
* @return error code (usually 0)
|
1998-04-25 19:45:14 +00:00
|
|
|
*/
|
1998-07-15 22:30:39 +00:00
|
|
|
NS_IMETHOD HandleToken(CToken* aToken)=0;
|
1998-04-13 20:24:54 +00:00
|
|
|
|
1998-05-04 23:36:46 +00:00
|
|
|
/**
|
1998-07-23 08:21:02 +00:00
|
|
|
* Cause the tokenizer to consume and create the next token, and
|
1998-06-17 23:13:28 +00:00
|
|
|
* return an error result.
|
1998-07-23 08:21:02 +00:00
|
|
|
*
|
1998-05-04 23:36:46 +00:00
|
|
|
* @update gess 3/25/98
|
1998-07-23 08:21:02 +00:00
|
|
|
* @param aToken -- will contain newly created and consumed token
|
|
|
|
* @return error code (usually 0)
|
1998-05-04 23:36:46 +00:00
|
|
|
*/
|
1998-07-15 22:30:39 +00:00
|
|
|
NS_IMETHOD ConsumeToken(CToken*& aToken)=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-07-10 05:35:23 +00:00
|
|
|
virtual PRBool CanContain(PRInt32 aParent,PRInt32 aChild)=0;
|
|
|
|
|
1998-06-25 01:42:50 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @update jevering6/23/98
|
|
|
|
* @param
|
|
|
|
* @return
|
|
|
|
*/
|
1998-07-02 08:14:22 +00:00
|
|
|
virtual void SetDTDDebug(nsIDTDDebug * aDTDDebug) = 0;
|
1998-04-13 20:24:54 +00:00
|
|
|
};
|
|
|
|
|
1998-07-15 22:30:39 +00:00
|
|
|
#endif /* nsIDTD_h___ */
|
1998-07-23 08:21:02 +00:00
|
|
|
|