/* -*- 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. */ /** * MODULE NOTES: * @update gess 4/8/98 * * */ #include "nsIDTDDebug.h" #include "nsViewSourceHTML.h" #include "nsCRT.h" #include "nsParser.h" #include "nsScanner.h" #include "nsIParser.h" #include "nsTokenHandler.h" #include "nsDTDUtils.h" #include "nsIContentSink.h" #include "nsIHTMLContentSink.h" #include "nsHTMLTokenizer.h" #include "prenv.h" //this is here for debug reasons... #include "prtypes.h" //this is here for debug reasons... #include "prio.h" #include "plstr.h" #ifdef XP_PC #include //this is here for debug reasons... #endif #include "prmem.h" static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID); static NS_DEFINE_IID(kIDTDIID, NS_IDTD_IID); static NS_DEFINE_IID(kClassIID, NS_VIEWSOURCE_HTML_IID); static CTokenRecycler* gTokenRecycler=0; /** * This method gets called as part of our COM-like interfaces. * Its purpose is to create an interface to parser object * of some type. * * @update gess 4/8/98 * @param nsIID id of object to discover * @param aInstancePtr ptr to newly discovered interface * @return NS_xxx result code */ nsresult CViewSourceHTML::QueryInterface(const nsIID& aIID, void** aInstancePtr) { if (NULL == aInstancePtr) { return NS_ERROR_NULL_POINTER; } if(aIID.Equals(kISupportsIID)) { //do IUnknown... *aInstancePtr = (nsIDTD*)(this); } else if(aIID.Equals(kIDTDIID)) { //do IParser base class... *aInstancePtr = (nsIDTD*)(this); } else if(aIID.Equals(kClassIID)) { //do this class... *aInstancePtr = (CViewSourceHTML*)(this); } else { *aInstancePtr=0; return NS_NOINTERFACE; } NS_ADDREF_THIS(); return NS_OK; } /** * This method is defined in nsIParser. It is used to * cause the COM-like construction of an nsParser. * * @update gess 4/8/98 * @param nsIParser** ptr to newly instantiated parser * @return NS_xxx error result */ NS_HTMLPARS nsresult NS_NewViewSourceHTML(nsIDTD** aInstancePtrResult) { CViewSourceHTML* it = new CViewSourceHTML(); if (it == 0) { return NS_ERROR_OUT_OF_MEMORY; } return it->QueryInterface(kClassIID, (void **) aInstancePtrResult); } NS_IMPL_ADDREF(CViewSourceHTML) NS_IMPL_RELEASE(CViewSourceHTML) /******************************************** ********************************************/ class CIndirectTextToken : public CTextToken { public: CIndirectTextToken() : CTextToken() { mIndirectString=0; } void SetIndirectString(const nsString& aString) { mIndirectString=&aString; } virtual nsString& GetStringValueXXX(void){ return (nsString&)*mIndirectString; } const nsString* mIndirectString; }; /******************************************************************* Now define the CSharedVSCOntext class... *******************************************************************/ class CSharedVSContext { public: CSharedVSContext() : mStartEntity("lt"), mEndEntity("gt"), mEndTextToken("/"), mEndNode(), mEndTextNode(&mEndTextToken), mStartNode(), mTokenNode(), mITextToken(), mITextNode(&mITextToken), mTextToken(), mTextNode(&mTextToken){ } ~CSharedVSContext() { } static CSharedVSContext& GetSharedContext() { static CSharedVSContext gSharedVSContext; return gSharedVSContext; } CEntityToken mStartEntity; CEntityToken mEndEntity; CTextToken mEndTextToken; nsCParserNode mEndNode; nsCParserNode mEndTextNode; nsCParserNode mStartNode; nsCParserNode mTokenNode; CIndirectTextToken mITextToken; nsCParserNode mITextNode; CTextToken mTextToken; nsCParserNode mTextNode; }; static void SetFont(const char* aFace,const char* aSize,PRBool aEnable,nsIContentSink& aSink) { static nsCParserNode theNode; CToken* theToken=0; if(aEnable){ theToken=gTokenRecycler->CreateTokenOfType(eToken_start,eHTMLTag_font); theNode.Init(theToken,0); CAttributeToken theFontAttr("face",aFace); theNode.AddAttribute(&theFontAttr); CAttributeToken theSizeAttr("size",aSize); theNode.AddAttribute(&theSizeAttr); aSink.OpenContainer(theNode); } else { theToken=gTokenRecycler->CreateTokenOfType(eToken_end,eHTMLTag_font); theNode.Init(theToken,0); aSink.CloseContainer(theNode); } if(theToken) gTokenRecycler->RecycleToken(theToken); } static void SetColor(const char* aColor,PRBool aEnable,nsIContentSink& aSink) { static nsCParserNode theNode; CToken* theToken=0; if(aEnable){ theToken=gTokenRecycler->CreateTokenOfType(eToken_start,eHTMLTag_font); theNode.Init(theToken,0); CAttributeToken theFontAttr("color",aColor); theNode.AddAttribute(&theFontAttr); aSink.OpenContainer(theNode); } else { theToken=gTokenRecycler->CreateTokenOfType(eToken_end,eHTMLTag_font); theNode.Init(theToken,0); aSink.CloseContainer(theNode); } if(theToken) gTokenRecycler->RecycleToken(theToken); } static void SetStyle(eHTMLTags theTag,PRBool aEnable,nsIContentSink& aSink) { nsCParserNode theNode; CToken* theToken=0; if(aEnable){ theToken=gTokenRecycler->CreateTokenOfType(eToken_start,theTag); theNode.Init(theToken); aSink.OpenContainer(theNode); } else { theToken=gTokenRecycler->CreateTokenOfType(eToken_end,theTag); theNode.Init(theToken); aSink.CloseContainer(theNode); } if(theToken) gTokenRecycler->RecycleToken(theToken); } /** * Default constructor * * @update gess 4/9/98 * @param * @return */ CViewSourceHTML::CViewSourceHTML() : nsIDTD() { NS_INIT_REFCNT(); mParser=0; mSink=0; mFilename; mLineNumber=0; mTokenizer=0; mIsHTML=PR_FALSE; mHasOpenHead=0; mNeedsFontSpec=PR_TRUE; } /** * Default destructor * * @update gess 4/9/98 * @param * @return */ CViewSourceHTML::~CViewSourceHTML(){ mParser=0; //just to prove we destructed... } /** * * @update gess1/8/99 * @param * @return */ const nsIID& CViewSourceHTML::GetMostDerivedIID(void) const{ return kClassIID; } /** * Call this method if you want the DTD to construct a fresh * instance of itself. * @update gess7/23/98 * @param * @return */ nsresult CViewSourceHTML::CreateNewInstance(nsIDTD** aInstancePtrResult){ return NS_NewViewSourceHTML(aInstancePtrResult); } /** * 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 * @return TRUE if this DTD can satisfy the request; FALSE otherwise. */ eAutoDetectResult CViewSourceHTML::CanParse(nsString& aContentType, nsString& aCommand, nsString& aBuffer, PRInt32 aVersion) { eAutoDetectResult result=eUnknownDetect; if(PR_TRUE==aContentType.Equals(kPlainTextContentType)) { result=eValidDetect; } else if(aCommand.Equals(kViewSourceCommand)) { if(aContentType.Equals(kXMLTextContentType) || aContentType.Equals(kRDFTextContentType) || aContentType.Equals(kHTMLTextContentType) || aContentType.Equals(kPlainTextContentType) || aContentType.Equals(kXULTextContentType)) { result=ePrimaryDetect; } } return result; } /** * * @update gess5/18/98 * @param * @return */ NS_IMETHODIMP CViewSourceHTML::WillBuildModel(nsString& aFilename,PRBool aNotifySink,nsString& aSourceType,nsIContentSink* aSink){ nsresult result=NS_OK; mFilename=aFilename; mSink=(nsIHTMLContentSink*)aSink; if((aNotifySink) && (mSink)) { mLineNumber=0; result = mSink->WillBuildModel(); mIsHTML=aSourceType.Equals(kHTMLTextContentType); mIsPlaintext=aSourceType.Equals(kPlainTextContentType); //now let's automatically open the html... CStartToken theHTMLToken(eHTMLTag_html); nsCParserNode theNode(&theHTMLToken,0); mSink->OpenHTML(theNode); //now let's automatically open the body... CStartToken theBodyToken(eHTMLTag_body); theNode.Init(&theBodyToken,0); mSink->OpenBody(theNode); //now let's automatically open the body... if(mIsPlaintext) { CStartToken thePREToken(eHTMLTag_pre); theNode.Init(&thePREToken,0); mSink->OpenContainer(theNode); } } return result; } /** * The parser uses a code sandwich to wrap the parsing process. Before * the process begins, WillBuildModel() is called. Afterwards the parser * calls DidBuildModel(). * @update gess5/18/98 * @param aFilename is the name of the file being parsed. * @return error code (almost always 0) */ NS_IMETHODIMP CViewSourceHTML::BuildModel(nsIParser* aParser,nsITokenizer* aTokenizer,nsITokenObserver* anObserver,nsIContentSink* aSink) { nsresult result=NS_OK; if(aTokenizer) { nsITokenizer* oldTokenizer=mTokenizer; mTokenizer=aTokenizer; gTokenRecycler=(CTokenRecycler*)mTokenizer->GetTokenRecycler(); if(gTokenRecycler) { if(mNeedsFontSpec){ SetFont("courier","-1",PR_TRUE,*mSink); mNeedsFontSpec=PR_FALSE; } while(NS_OK==result){ CToken* theToken=mTokenizer->PopToken(); if(theToken) { result=HandleToken(theToken,aParser); if(NS_SUCCEEDED(result)) { gTokenRecycler->RecycleToken(theToken); } else if(NS_ERROR_HTMLPARSER_BLOCK!=result){ mTokenizer->PushTokenFront(theToken); } // theRootDTD->Verify(kEmptyString,aParser); } else break; }//while } mTokenizer=oldTokenizer; } else result=NS_ERROR_HTMLPARSER_BADTOKENIZER; return result; } /** * * @update gess5/18/98 * @param * @return */ NS_IMETHODIMP CViewSourceHTML::DidBuildModel(nsresult anErrorCode,PRBool aNotifySink,nsIParser* aParser,nsIContentSink* aSink){ nsresult result= NS_OK; //ADD CODE HERE TO CLOSE OPEN CONTAINERS... if(aParser){ mSink=(nsIHTMLContentSink*)aParser->GetContentSink(); if((aNotifySink) && (mSink)) { //now let's automatically close the pre... if(!mIsPlaintext){ SetStyle(eHTMLTag_font,PR_FALSE,*mSink); } nsCParserNode theNode; //now let'close our containing PRE... if(mIsPlaintext) { CEndToken thePREToken(eHTMLTag_pre); theNode.Init(&thePREToken,0); mSink->CloseContainer(theNode); } //now let's automatically close the body... CEndToken theBodyToken(eHTMLTag_body); theNode.Init(&theBodyToken,0); mSink->CloseBody(theNode); //now let's automatically close the html... CEndToken theHTMLToken(eHTMLTag_html); theNode.Init(&theHTMLToken,0); mSink->CloseHTML(theNode); result = mSink->DidBuildModel(1); } } return result; } /** * * @update gess8/4/98 * @param * @return */ nsITokenRecycler* CViewSourceHTML::GetTokenRecycler(void){ nsITokenizer* theTokenizer=GetTokenizer(); if(theTokenizer) return theTokenizer->GetTokenRecycler(); return 0; } /** * Retrieve the preferred tokenizer for use by this DTD. * @update gess12/28/98 * @param none * @return ptr to tokenizer */ nsITokenizer* CViewSourceHTML::GetTokenizer(void) { if(!mTokenizer) mTokenizer=new nsHTMLTokenizer(); return mTokenizer; } /** * * @update gess5/18/98 * @param * @return */ NS_IMETHODIMP CViewSourceHTML::WillResumeParse(void){ nsresult result = NS_OK; if(mSink) { result = mSink->WillResume(); } return result; } /** * * @update gess5/18/98 * @param * @return */ NS_IMETHODIMP CViewSourceHTML::WillInterruptParse(void){ nsresult result = NS_OK; if(mSink) { result = mSink->WillInterrupt(); } return result; } /** * Called by the parser to initiate dtd verification of the * internal context stack. * @update gess 7/23/98 * @param * @return */ PRBool CViewSourceHTML::Verify(nsString& aURLRef,nsIParser* aParser) { PRBool result=PR_TRUE; mParser=(nsParser*)aParser; return result; } /** * Called by the parser to enable/disable dtd verification of the * internal context stack. * @update gess 7/23/98 * @param * @return */ void CViewSourceHTML::SetVerification(PRBool aEnabled){ } /** * 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 */ PRBool CViewSourceHTML::CanContain(PRInt32 aParent,PRInt32 aChild) const{ PRBool result=PR_TRUE; return result; } /** * 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 */ PRBool CViewSourceHTML::IsContainer(PRInt32 aTag) const{ PRBool result=PR_TRUE; return result; } /** * This method gets called when a tag needs to be sent out * * @update gess 3/25/98 * @param * @return result status */ static nsresult WriteNewline(nsIContentSink& aSink,CSharedVSContext& aContext) { nsresult result=NS_OK; //if you're here, we already know gTokenRecyler is valid... CToken* theToken = (CStartToken*)gTokenRecycler->CreateTokenOfType(eToken_start,eHTMLTag_br); if(theToken){ aContext.mStartNode.Init(theToken); result=aSink.AddLeaf(aContext.mStartNode); gTokenRecycler->RecycleToken(theToken); } return NS_OK; } /** * This method gets called when a tag needs to be sent out * * @update gess 3/25/98 * @param * @return result status */ static nsresult WriteNBSP(PRInt32 aCount, nsIContentSink& aSink,CSharedVSContext& aContext) { nsresult result=NS_OK; //if you're here, we already know gTokenRecyler is valid... CToken* theToken = (CEntityToken*)gTokenRecycler->CreateTokenOfType(eToken_entity,eHTMLTag_unknown,"nbsp"); if(theToken){ aContext.mStartNode.Init(theToken); int theIndex; for(theIndex=0;theIndexRecycleToken(theToken); } return NS_OK; } /** * This method gets called when a tag needs to be sent out * * @update gess 3/25/98 * @param * @return result status */ nsresult WriteText(const nsString& aTextString,nsIContentSink& aSink,PRBool aPreserveSpace,PRBool aPlainText,CSharedVSContext& aContext) { nsresult result=NS_OK; nsString& temp=aContext.mTextToken.GetStringValueXXX(); temp.Truncate(); PRInt32 theEnd=aTextString.Length(); PRInt32 theTextOffset=0; PRInt32 theOffset=-1; //aTextString.FindCharInSet("\t\n\r ",theStartOffset); PRInt32 theSpaces=0; PRBool theOutputReady=PR_FALSE; PRUnichar theChar=0; PRUnichar theNextChar=0; while(++theOffsetGetStringValueXXX()); theStr.Append(";"); ::WriteText(theStr,*mSink,PR_FALSE,mIsPlaintext,theContext); if(!mIsPlaintext){ SetStyle(eHTMLTag_font,PR_FALSE,*mSink); } } break; case eToken_comment: { if(!mIsPlaintext){ SetColor("green",PR_TRUE,*mSink); SetStyle(eHTMLTag_i,PR_TRUE,*mSink); } nsString& theText=aToken->GetStringValueXXX(); //if the comment has had it's markup stripped, then write it out seperately... if(0!=theText.Find(""),*mSink,PR_TRUE,mIsPlaintext,theContext); if(!mIsPlaintext){ SetStyle(eHTMLTag_i,PR_FALSE,*mSink); SetStyle(eHTMLTag_font,PR_FALSE,*mSink); } } break; case eToken_style: case eToken_skippedcontent: { CAttributeToken* theToken=(CAttributeToken*)aToken; nsString& theText=theToken->GetKey(); ::WriteText(theText,*mSink,PR_FALSE,mIsPlaintext,theContext); } break; case eToken_whitespace: case eToken_text: { if(!mIsPlaintext) { nsString& theText=aToken->GetStringValueXXX(); ::WriteText(theText,*mSink,PR_TRUE,mIsPlaintext,theContext); } else { result=mSink->AddLeaf(theContext.mTokenNode); } } break; case eToken_instruction: { if(!mIsPlaintext){ SetColor("orange",PR_TRUE,*mSink); SetStyle(eHTMLTag_i,PR_TRUE,*mSink); } nsString& theText=aToken->GetStringValueXXX(); theContext.mITextToken.SetIndirectString(theText); mSink->AddLeaf(theContext.mITextNode); if(!mIsPlaintext){ SetStyle(eHTMLTag_i,PR_FALSE,*mSink); SetStyle(eHTMLTag_font,PR_FALSE,*mSink); } } break; case eToken_start: { PRInt16 attrCount=aToken->GetAttributeCount(); theEndTag=PR_FALSE; if(0PeekToken(); if(theToken) { eHTMLTokenTypes theType=eHTMLTokenTypes(theToken->GetTokenType()); if(eToken_attribute==theType){ mTokenizer->PopToken(); //pop it for real... theContext.mTokenNode.AddAttribute(theToken); } } else return kEOF; } } } WriteTag(theContext.mTokenNode,*mSink,theEndTag,mIsHTML,mIsPlaintext,theContext); // We make sure to display the title on the view source window. if(eHTMLTag_title == theTag){ nsCParserNode attrNode(theToken,mLineNumber,GetTokenRecycler()); CToken* theNextToken = mTokenizer->PopToken(); if(theNextToken) { theType=eHTMLTokenTypes(theNextToken->GetTokenType()); if(eToken_text==theType) { attrNode.SetSkippedContent(theNextToken->GetStringValueXXX()); } } result= OpenHead(attrNode); if(NS_OK==result) { if(mSink) { mSink->SetTitle(attrNode.GetSkippedContent()); } if(NS_OK==result) result=CloseHead(attrNode); } const nsString& theText=attrNode.GetSkippedContent(); ::WriteText(theText,*mSink,PR_FALSE,mIsPlaintext,theContext); } break; case eToken_end: WriteTag(theContext.mTokenNode,*mSink,theEndTag,mIsHTML,mIsPlaintext,theContext); break; default: result=NS_OK; }//switch return result; } /** * 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) */ nsresult CViewSourceHTML::CaptureTokenPump(nsITagHandler* aHandler) { nsresult result=NS_OK; return result; } /** * 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) */ nsresult CViewSourceHTML::ReleaseTokenPump(nsITagHandler* aHandler){ nsresult result=NS_OK; return result; } #include "windows.h" #include const double gTicks = 1.0e-7;