/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* ***** BEGIN LICENSE BLOCK ***** * Version: MPL 1.1/GPL 2.0/LGPL 2.1 * * 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/ * * 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 the Initial Developer are Copyright (C) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Simon Fraser * Michael Judge * Charles Manske * Kathleen Brade * * Alternatively, the contents of this file may be used under the terms of * 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"), * 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 * use your version of this file under the terms of the MPL, indicate your * 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 * the terms of any one of the MPL, the GPL or the LGPL. * * ***** END LICENSE BLOCK ***** */ #include "nsIDOMWindow.h" #include "nsIDOMWindowUtils.h" #include "nsIDOMWindowInternal.h" #include "nsIDOMNSHTMLDocument.h" #include "nsIDocument.h" #include "nsIHTMLDocument.h" #include "nsIDOMDocument.h" #include "nsIURI.h" #include "nsIScriptGlobalObject.h" #include "nsISelectionPrivate.h" #include "nsITransactionManager.h" #include "nsIEditorDocShell.h" #include "nsIDocShell.h" #include "nsIChannel.h" #include "nsIWebProgress.h" #include "nsIWebNavigation.h" #include "nsIRefreshURI.h" #include "nsIControllers.h" #include "nsIController.h" #include "nsIControllerContext.h" #include "nsICommandManager.h" #include "nsPICommandUpdater.h" #include "nsIPresShell.h" #include "nsComposerCommandsUpdater.h" #include "nsEditingSession.h" #include "nsComponentManagerUtils.h" #include "nsIInterfaceRequestorUtils.h" #include "nsIContentViewer.h" #include "nsISelectionController.h" #include "nsIPlaintextEditor.h" #include "nsIEditor.h" #include "nsIDOMNSDocument.h" #include "nsIScriptContext.h" #include "imgIContainer.h" #include "nsPresContext.h" #if DEBUG //#define NOISY_DOC_LOADING 1 #endif /*--------------------------------------------------------------------------- nsEditingSession ----------------------------------------------------------------------------*/ nsEditingSession::nsEditingSession() : mDoneSetup(PR_FALSE) , mCanCreateEditor(PR_FALSE) , mScriptsEnabled(PR_TRUE) , mPluginsEnabled(PR_TRUE) , mProgressListenerRegistered(PR_FALSE) , mImageAnimationMode(0) , mEditorFlags(0) , mEditorStatus(eEditorOK) , mBaseCommandControllerId(0) , mDocStateControllerId(0) , mHTMLCommandControllerId(0) { } /*--------------------------------------------------------------------------- ~nsEditingSession ----------------------------------------------------------------------------*/ nsEditingSession::~nsEditingSession() { // Must cancel previous timer? if (mLoadBlankDocTimer) mLoadBlankDocTimer->Cancel(); } NS_IMPL_ISUPPORTS4(nsEditingSession, nsIEditingSession, nsIWebProgressListener, nsIURIContentListener, nsISupportsWeakReference) /*--------------------------------------------------------------------------- MakeWindowEditable aEditorType string, "html" "htmlsimple" "text" "textsimple" void makeWindowEditable(in nsIDOMWindow aWindow, in string aEditorType, in boolean aDoAfterUriLoad); ----------------------------------------------------------------------------*/ #define DEFAULT_EDITOR_TYPE "html" NS_IMETHODIMP nsEditingSession::MakeWindowEditable(nsIDOMWindow *aWindow, const char *aEditorType, PRBool aDoAfterUriLoad) { mEditorType.Truncate(); mEditorFlags = 0; mWindowToBeEdited = do_GetWeakReference(aWindow); // disable plugins nsIDocShell *docShell = GetDocShellFromWindow(aWindow); if (!docShell) return NS_ERROR_FAILURE; // register as a content listener, so that we can fend off URL // loads from sidebar nsresult rv; nsCOMPtr listener = do_GetInterface(docShell, &rv); NS_ENSURE_SUCCESS(rv, rv); rv = listener->SetParentContentListener(this); NS_ENSURE_SUCCESS(rv, rv); // Disable JavaScript in this document: PRBool tmp; rv = docShell->GetAllowJavascript(&tmp); NS_ENSURE_SUCCESS(rv, rv); mScriptsEnabled = tmp; rv = docShell->SetAllowJavascript(PR_FALSE); NS_ENSURE_SUCCESS(rv, rv); // Disable plugins in this document: rv = docShell->GetAllowPlugins(&tmp); NS_ENSURE_SUCCESS(rv, rv); mPluginsEnabled = tmp; rv = docShell->SetAllowPlugins(PR_FALSE); NS_ENSURE_SUCCESS(rv, rv); // Always remove existing editor TearDownEditorOnWindow(aWindow); // Tells embedder that startup is in progress mEditorStatus = eEditorCreationInProgress; //temporary to set editor type here. we will need different classes soon. if (!aEditorType) aEditorType = DEFAULT_EDITOR_TYPE; mEditorType = aEditorType; // if all this does is setup listeners and I don't need listeners, // can't this step be ignored?? (based on aDoAfterURILoad) rv = PrepareForEditing(aWindow); if (NS_FAILED(rv)) return rv; nsCOMPtr editorDocShell; rv = GetEditorDocShellFromWindow(aWindow, getter_AddRefs(editorDocShell)); if (NS_FAILED(rv)) return rv; // set the flag on the docShell to say that it's editable rv = editorDocShell->MakeEditable(aDoAfterUriLoad); if (NS_FAILED(rv)) return rv; // Setup commands common to plaintext and html editors, // including the document creation observers // the first is an editor controller rv = SetupEditorCommandController("@mozilla.org/editor/editorcontroller;1", aWindow, NS_STATIC_CAST(nsIEditingSession*, this), &mBaseCommandControllerId); if (NS_FAILED(rv)) return rv; // The second is a controller to monitor doc state, // such as creation and "dirty flag" rv = SetupEditorCommandController("@mozilla.org/editor/editordocstatecontroller;1", aWindow, NS_STATIC_CAST(nsIEditingSession*, this), &mDocStateControllerId); if (NS_FAILED(rv)) return rv; // aDoAfterUriLoad can be false only when making an existing window editable if (!aDoAfterUriLoad) { rv = SetupEditorOnWindow(aWindow); // mEditorStatus is set to the error reason // Since this is used only when editing an existing page, // it IS ok to destroy current editor if (NS_FAILED(rv)) TearDownEditorOnWindow(aWindow); } return rv; } /*--------------------------------------------------------------------------- WindowIsEditable boolean windowIsEditable (in nsIDOMWindow aWindow); ----------------------------------------------------------------------------*/ NS_IMETHODIMP nsEditingSession::WindowIsEditable(nsIDOMWindow *aWindow, PRBool *outIsEditable) { nsCOMPtr editorDocShell; nsresult rv = GetEditorDocShellFromWindow(aWindow, getter_AddRefs(editorDocShell)); if (NS_FAILED(rv)) return rv; return editorDocShell->GetEditable(outIsEditable); } // These are MIME types that are automatically parsed as "text/plain" // and thus we can edit them as plaintext // Note: in older versions, we attempted to convert the mimetype of // the network channel for these and "text/xml" to "text/plain", // but further investigation reveals that strategy doesn't work const char* const gSupportedTextTypes[] = { "text/plain", "text/css", "text/rdf", "text/xsl", "text/javascript", // obsolete type "text/ecmascript", // obsolete type "application/javascript", "application/ecmascript", "application/x-javascript", // obsolete type "text/xul", // obsolete type "application/vnd.mozilla.xul+xml", NULL // IMPORTANT! Null must be at end }; PRBool IsSupportedTextType(const char* aMIMEType) { if (!aMIMEType) return PR_FALSE; PRInt32 i = 0; while (gSupportedTextTypes[i]) { if (strcmp(gSupportedTextTypes[i], aMIMEType) == 0) { return PR_TRUE; } i ++; } return PR_FALSE; } /*--------------------------------------------------------------------------- SetupEditorOnWindow nsIEditor setupEditorOnWindow (in nsIDOMWindow aWindow); ----------------------------------------------------------------------------*/ NS_IMETHODIMP nsEditingSession::SetupEditorOnWindow(nsIDOMWindow *aWindow) { nsresult rv; //MIME CHECKING //must get the content type // Note: the doc gets this from the network channel during StartPageLoad, // so we don't have to get it from there ourselves nsCOMPtr doc; nsCAutoString mimeCType; //then lets check the mime type if (NS_SUCCEEDED(aWindow->GetDocument(getter_AddRefs(doc))) && doc) { nsCOMPtr nsdoc = do_QueryInterface(doc); if (nsdoc) { nsAutoString mimeType; if (NS_SUCCEEDED(nsdoc->GetContentType(mimeType))) AppendUTF16toUTF8(mimeType, mimeCType); if (IsSupportedTextType(mimeCType.get())) { mEditorType.AssignLiteral("text"); mimeCType = "text/plain"; } else if (!mimeCType.EqualsLiteral("text/html")) { // Neither an acceptable text or html type. mEditorStatus = eEditorErrorCantEditMimeType; // Turn editor into HTML -- we will load blank page later mEditorType.AssignLiteral("html"); mimeCType.AssignLiteral("text/html"); } } // Flush out frame construction to make sure that the subframe's // presshell is set up if it needs to be. nsCOMPtr document(do_QueryInterface(doc)); if (document) { document->FlushPendingNotifications(Flush_Frames); } } PRBool needHTMLController = PR_FALSE; const char *classString = "@mozilla.org/editor/htmleditor;1"; if (mEditorType.EqualsLiteral("textmail")) { mEditorFlags = nsIPlaintextEditor::eEditorPlaintextMask | nsIPlaintextEditor::eEditorEnableWrapHackMask | nsIPlaintextEditor::eEditorMailMask; } else if (mEditorType.EqualsLiteral("text")) { mEditorFlags = nsIPlaintextEditor::eEditorPlaintextMask | nsIPlaintextEditor::eEditorEnableWrapHackMask; } else if (mEditorType.EqualsLiteral("htmlmail")) { if (mimeCType.EqualsLiteral("text/html")) { needHTMLController = PR_TRUE; mEditorFlags = nsIPlaintextEditor::eEditorMailMask; } else //set the flags back to textplain. mEditorFlags = nsIPlaintextEditor::eEditorPlaintextMask | nsIPlaintextEditor::eEditorEnableWrapHackMask; } else // Defaulted to html { needHTMLController = PR_TRUE; } // make the UI state maintainer nsComposerCommandsUpdater *stateMaintainer; NS_NEWXPCOM(stateMaintainer, nsComposerCommandsUpdater); mStateMaintainer = NS_STATIC_CAST(nsISelectionListener*, stateMaintainer); if (!mStateMaintainer) return NS_ERROR_OUT_OF_MEMORY; // now init the state maintainer // This allows notification of error state // even if we don't create an editor rv = stateMaintainer->Init(aWindow); if (NS_FAILED(rv)) return rv; if (mEditorStatus != eEditorCreationInProgress) { // We had an earlier error -- force notification of document creation nsCOMPtr docListener = do_QueryInterface(mStateMaintainer); if (docListener) docListener->NotifyDocumentCreated(); return NS_ERROR_FAILURE; } // Create editor and do other things // only if we haven't found some error above, nsIDocShell *docShell = GetDocShellFromWindow(aWindow); if (!docShell) return NS_ERROR_FAILURE; // Disable animation of images in this document: nsCOMPtr utils(do_GetInterface(aWindow)); if (!utils) return NS_ERROR_FAILURE; rv = utils->GetImageAnimationMode(&mImageAnimationMode); if (NS_FAILED(rv)) return rv; utils->SetImageAnimationMode(imgIContainer::kDontAnimMode); // create and set editor nsCOMPtr editorDocShell = do_QueryInterface(docShell, &rv); if (NS_FAILED(rv)) return rv; nsCOMPtr editor = do_CreateInstance(classString, &rv); if (NS_FAILED(rv)) return rv; // set the editor on the docShell. The docShell now owns it. rv = editorDocShell->SetEditor(editor); if (NS_FAILED(rv)) return rv; // setup the HTML editor command controller if (needHTMLController) { // The third controller takes an nsIEditor as the context rv = SetupEditorCommandController("@mozilla.org/editor/htmleditorcontroller;1", aWindow, editor, &mHTMLCommandControllerId); if (NS_FAILED(rv)) return rv; } // Set mimetype on editor rv = editor->SetContentsMIMEType(mimeCType.get()); if (NS_FAILED(rv)) return rv; nsCOMPtr contentViewer; rv = docShell->GetContentViewer(getter_AddRefs(contentViewer)); if (NS_FAILED(rv)) return rv; if (!contentViewer) return NS_ERROR_FAILURE; nsCOMPtr domDoc; rv = contentViewer->GetDOMDocument(getter_AddRefs(domDoc)); if (NS_FAILED(rv)) return rv; if (!domDoc) return NS_ERROR_FAILURE; // Set up as a doc state listener // Important! We must have this to broadcast the "obs_documentCreated" message rv = editor->AddDocumentStateListener( NS_STATIC_CAST(nsIDocumentStateListener*, stateMaintainer)); if (NS_FAILED(rv)) return rv; // XXXbz we really shouldn't need a presShell here! nsCOMPtr presShell; rv = docShell->GetPresShell(getter_AddRefs(presShell)); if (NS_FAILED(rv)) return rv; if (!presShell) return NS_ERROR_FAILURE; nsCOMPtr selCon = do_QueryInterface(presShell); rv = editor->Init(domDoc, presShell, nsnull /* root content */, selCon, mEditorFlags); if (NS_FAILED(rv)) return rv; nsCOMPtr selection; editor->GetSelection(getter_AddRefs(selection)); nsCOMPtr selPriv = do_QueryInterface(selection); if (!selPriv) return NS_ERROR_FAILURE; rv = selPriv->AddSelectionListener(stateMaintainer); if (NS_FAILED(rv)) return rv; // and as a transaction listener nsCOMPtr txnMgr; editor->GetTransactionManager(getter_AddRefs(txnMgr)); if (txnMgr) txnMgr->AddListener(NS_STATIC_CAST(nsITransactionListener*, stateMaintainer)); // Set context on all controllers to be the editor rv = SetEditorOnControllers(aWindow, editor); if (NS_FAILED(rv)) return rv; // Everything went fine! mEditorStatus = eEditorOK; // This will trigger documentCreation notification return editor->PostCreate(); } /*--------------------------------------------------------------------------- TearDownEditorOnWindow void tearDownEditorOnWindow (in nsIDOMWindow aWindow); ----------------------------------------------------------------------------*/ NS_IMETHODIMP nsEditingSession::TearDownEditorOnWindow(nsIDOMWindow *aWindow) { if (!mDoneSetup) return NS_OK; nsresult rv; // Kill any existing reload timer if (mLoadBlankDocTimer) { mLoadBlankDocTimer->Cancel(); mLoadBlankDocTimer = nsnull; } nsIDocShell *docShell = GetDocShellFromWindow(aWindow); mDoneSetup = PR_FALSE; nsCOMPtr dom_doc; aWindow->GetDocument(getter_AddRefs(dom_doc)); nsCOMPtr html_doc(do_QueryInterface(dom_doc)); PRBool isMidas = PR_FALSE; if (html_doc) { nsAutoString designMode; html_doc->GetDesignMode(designMode); isMidas = designMode.EqualsLiteral("on"); } if (isMidas) { // We're tearing down a midas editor, unregister callbacks since // we're all done editing here. nsCOMPtr webProgress = do_GetInterface(docShell); if (webProgress) { webProgress->RemoveProgressListener(this); mProgressListenerRegistered = PR_FALSE; } } nsCOMPtr editorDocShell; rv = GetEditorDocShellFromWindow(aWindow, getter_AddRefs(editorDocShell)); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr editor; rv = editorDocShell->GetEditor(getter_AddRefs(editor)); NS_ENSURE_SUCCESS(rv, rv); // null out the editor on the controllers first to prevent their weak // references from pointing to a destroyed editor if (mStateMaintainer && editor) { // null out the editor on the controllers SetEditorOnControllers(aWindow, nsnull); } // null out the editor on the docShell to trigger PreDestroy which // needs to happen before document state listeners are removed below editorDocShell->SetEditor(nsnull); if (mStateMaintainer) { if (editor) { // If we had an editor -- we are loading a new URL into existing window // Remove all the listeners nsCOMPtr selection; editor->GetSelection(getter_AddRefs(selection)); nsCOMPtr selPriv = do_QueryInterface(selection); if (selPriv) { nsCOMPtr listener = do_QueryInterface(mStateMaintainer); selPriv->RemoveSelectionListener(listener); } nsCOMPtr docListener = do_QueryInterface(mStateMaintainer); editor->RemoveDocumentStateListener(docListener); nsCOMPtr txnMgr; editor->GetTransactionManager(getter_AddRefs(txnMgr)); if (txnMgr) { nsCOMPtr transactionListener = do_QueryInterface(mStateMaintainer); txnMgr->RemoveListener(transactionListener); } } // Remove editor controllers from the window now that we're not // editing in that window any more. nsCOMPtr domWindowInt(do_QueryInterface(aWindow)); nsCOMPtr controllers; domWindowInt->GetControllers(getter_AddRefs(controllers)); if (controllers) { nsCOMPtr controller; if (mBaseCommandControllerId) { controllers->GetControllerById(mBaseCommandControllerId, getter_AddRefs(controller)); if (controller) { controllers->RemoveController(controller); } } if (mDocStateControllerId) { controllers->GetControllerById(mDocStateControllerId, getter_AddRefs(controller)); if (controller) { controllers->RemoveController(controller); } } if (mHTMLCommandControllerId) { controllers->GetControllerById(mHTMLCommandControllerId, getter_AddRefs(controller)); if (controller) { controllers->RemoveController(controller); } } } // Clear IDs to trigger creation of new controllers mBaseCommandControllerId = 0; mDocStateControllerId = 0; mHTMLCommandControllerId = 0; } if (isMidas) { // Make things the way they were before we started editing. if (mScriptsEnabled) { docShell->SetAllowJavascript(PR_TRUE); } if (mPluginsEnabled) { docShell->SetAllowPlugins(PR_TRUE); } nsCOMPtr utils(do_GetInterface(aWindow)); if (utils) utils->SetImageAnimationMode(mImageAnimationMode); } return rv; } /*--------------------------------------------------------------------------- GetEditorForFrame nsIEditor getEditorForFrame (in nsIDOMWindow aWindow); ----------------------------------------------------------------------------*/ NS_IMETHODIMP nsEditingSession::GetEditorForWindow(nsIDOMWindow *aWindow, nsIEditor **outEditor) { nsCOMPtr editorDocShell; nsresult rv = GetEditorDocShellFromWindow(aWindow, getter_AddRefs(editorDocShell)); if (NS_FAILED(rv)) return rv; return editorDocShell->GetEditor(outEditor); } #ifdef XP_MAC #pragma mark - #endif /*--------------------------------------------------------------------------- OnStateChange ----------------------------------------------------------------------------*/ NS_IMETHODIMP nsEditingSession::OnStateChange(nsIWebProgress *aWebProgress, nsIRequest *aRequest, PRUint32 aStateFlags, nsresult aStatus) { #ifdef NOISY_DOC_LOADING nsCOMPtr channel(do_QueryInterface(aRequest)); if (channel) { nsCAutoString contentType; channel->GetContentType(contentType); if (!contentType.IsEmpty()) printf(" ++++++ MIMETYPE = %s\n", contentType.get()); } #endif // // A Request has started... // if (aStateFlags & nsIWebProgressListener::STATE_START) { #ifdef NOISY_DOC_LOADING { nsCOMPtr channel(do_QueryInterface(aRequest)); if (channel) { nsCOMPtr uri; channel->GetURI(getter_AddRefs(uri)); if (uri) { nsXPIDLCString spec; uri->GetSpec(spec); printf(" **** STATE_START: CHANNEL URI=%s, flags=%x\n", spec.get(), aStateFlags); } } else printf(" STATE_START: NO CHANNEL flags=%x\n", aStateFlags); } #endif // Page level notification... if (aStateFlags & nsIWebProgressListener::STATE_IS_NETWORK) { nsCOMPtr channel(do_QueryInterface(aRequest)); StartPageLoad(channel); #ifdef NOISY_DOC_LOADING printf("STATE_START & STATE_IS_NETWORK flags=%x\n", aStateFlags); #endif } // Document level notification... if (aStateFlags & nsIWebProgressListener::STATE_IS_DOCUMENT) { PRBool progressIsForTargetDocument = IsProgressForTargetDocument(aWebProgress); if (progressIsForTargetDocument) { nsCOMPtr window; aWebProgress->GetDOMWindow(getter_AddRefs(window)); nsCOMPtr doc; window->GetDocument(getter_AddRefs(doc)); nsCOMPtr htmlDoc(do_QueryInterface(doc)); if (htmlDoc && htmlDoc->IsWriting()) { nsCOMPtr htmlDomDoc(do_QueryInterface(doc)); nsAutoString designMode; htmlDomDoc->GetDesignMode(designMode); if (designMode.EqualsLiteral("on")) { // This notification is for data coming in through // document.open/write/close(), ignore it. return NS_OK; } } } mCanCreateEditor = PR_TRUE; StartDocumentLoad(aWebProgress, progressIsForTargetDocument); #ifdef NOISY_DOC_LOADING printf("STATE_START & STATE_IS_DOCUMENT flags=%x\n", aStateFlags); #endif } } // // A Request is being processed // else if (aStateFlags & nsIWebProgressListener::STATE_TRANSFERRING) { if (aStateFlags * nsIWebProgressListener::STATE_IS_DOCUMENT) { // document transfer started } } // // Got a redirection // else if (aStateFlags & nsIWebProgressListener::STATE_REDIRECTING) { if (aStateFlags * nsIWebProgressListener::STATE_IS_DOCUMENT) { // got a redirect } } // // A network or document Request as finished... // else if (aStateFlags & nsIWebProgressListener::STATE_STOP) { #ifdef NOISY_DOC_LOADING { nsCOMPtr channel(do_QueryInterface(aRequest)); if (channel) { nsCOMPtr uri; channel->GetURI(getter_AddRefs(uri)); if (uri) { nsXPIDLCString spec; uri->GetSpec(spec); printf(" **** STATE_STOP: CHANNEL URI=%s, flags=%x\n", spec.get(), aStateFlags); } } else printf(" STATE_STOP: NO CHANNEL flags=%x\n", aStateFlags); } #endif // Document level notification... if (aStateFlags & nsIWebProgressListener::STATE_IS_DOCUMENT) { nsCOMPtr channel = do_QueryInterface(aRequest); EndDocumentLoad(aWebProgress, channel, aStatus, IsProgressForTargetDocument(aWebProgress)); #ifdef NOISY_DOC_LOADING printf("STATE_STOP & STATE_IS_DOCUMENT flags=%x\n", aStateFlags); #endif } // Page level notification... if (aStateFlags & nsIWebProgressListener::STATE_IS_NETWORK) { nsCOMPtr channel = do_QueryInterface(aRequest); (void)EndPageLoad(aWebProgress, channel, aStatus); #ifdef NOISY_DOC_LOADING printf("STATE_STOP & STATE_IS_NETWORK flags=%x\n", aStateFlags); #endif } } return NS_OK; } /*--------------------------------------------------------------------------- OnProgressChange ----------------------------------------------------------------------------*/ NS_IMETHODIMP nsEditingSession::OnProgressChange(nsIWebProgress *aWebProgress, nsIRequest *aRequest, PRInt32 aCurSelfProgress, PRInt32 aMaxSelfProgress, PRInt32 aCurTotalProgress, PRInt32 aMaxTotalProgress) { NS_NOTREACHED("notification excluded in AddProgressListener(...)"); return NS_OK; } /*--------------------------------------------------------------------------- OnLocationChange ----------------------------------------------------------------------------*/ NS_IMETHODIMP nsEditingSession::OnLocationChange(nsIWebProgress *aWebProgress, nsIRequest *aRequest, nsIURI *aURI) { nsCOMPtr domWindow; nsresult rv = aWebProgress->GetDOMWindow(getter_AddRefs(domWindow)); if (NS_FAILED(rv)) return rv; nsCOMPtr domDoc; rv = domWindow->GetDocument(getter_AddRefs(domDoc)); if (NS_FAILED(rv)) return rv; nsCOMPtr doc = do_QueryInterface(domDoc); if (!doc) return NS_ERROR_FAILURE; doc->SetDocumentURI(aURI); // Notify the location-changed observer that // the document URL has changed nsIDocShell *docShell = GetDocShellFromWindow(domWindow); if (!docShell) return NS_ERROR_FAILURE; nsCOMPtr commandManager = do_GetInterface(docShell); nsCOMPtr commandUpdater = do_QueryInterface(commandManager); if (!commandUpdater) return NS_ERROR_FAILURE; return commandUpdater->CommandStatusChanged("obs_documentLocationChanged"); } /*--------------------------------------------------------------------------- OnStatusChange ----------------------------------------------------------------------------*/ NS_IMETHODIMP nsEditingSession::OnStatusChange(nsIWebProgress *aWebProgress, nsIRequest *aRequest, nsresult aStatus, const PRUnichar *aMessage) { NS_NOTREACHED("notification excluded in AddProgressListener(...)"); return NS_OK; } /*--------------------------------------------------------------------------- OnSecurityChange ----------------------------------------------------------------------------*/ NS_IMETHODIMP nsEditingSession::OnSecurityChange(nsIWebProgress *aWebProgress, nsIRequest *aRequest, PRUint32 state) { NS_NOTREACHED("notification excluded in AddProgressListener(...)"); return NS_OK; } #ifdef XP_MAC #pragma mark - #endif /* boolean onStartURIOpen (in nsIURI aURI); */ NS_IMETHODIMP nsEditingSession::OnStartURIOpen(nsIURI *aURI, PRBool *aAbortOpen) { return NS_OK; } /* boolean doContent (in string aContentType, in boolean aIsContentPreferred, in nsIRequest aRequest, out nsIStreamListener aContentHandler); */ NS_IMETHODIMP nsEditingSession::DoContent(const char *aContentType, PRBool aIsContentPreferred, nsIRequest *aRequest, nsIStreamListener **aContentHandler, PRBool *aAbortProcess) { NS_ENSURE_ARG_POINTER(aContentHandler); NS_ENSURE_ARG_POINTER(aAbortProcess); *aContentHandler = nsnull; *aAbortProcess = PR_FALSE; return NS_OK; } /* boolean isPreferred (in string aContentType, out string aDesiredContentType); */ NS_IMETHODIMP nsEditingSession::IsPreferred(const char *aContentType, char **aDesiredContentType, PRBool *_retval) { NS_ENSURE_ARG_POINTER(aDesiredContentType); NS_ENSURE_ARG_POINTER(_retval); *aDesiredContentType = nsnull; *_retval = PR_FALSE; return NS_OK; } /* boolean canHandleContent (in string aContentType, in boolean aIsContentPreferred, out string aDesiredContentType); */ NS_IMETHODIMP nsEditingSession::CanHandleContent(const char *aContentType, PRBool aIsContentPreferred, char **aDesiredContentType, PRBool *_retval) { NS_ENSURE_ARG_POINTER(aDesiredContentType); NS_ENSURE_ARG_POINTER(_retval); *aDesiredContentType = nsnull; *_retval = PR_FALSE; return NS_OK; } /* attribute nsISupports loadCookie; */ NS_IMETHODIMP nsEditingSession::GetLoadCookie(nsISupports * *aLoadCookie) { NS_ENSURE_ARG_POINTER(aLoadCookie); *aLoadCookie = nsnull; return NS_OK; } NS_IMETHODIMP nsEditingSession::SetLoadCookie(nsISupports * aLoadCookie) { return NS_OK; } /* attribute nsIURIContentListener parentContentListener; */ NS_IMETHODIMP nsEditingSession::GetParentContentListener(nsIURIContentListener * *aParentContentListener) { NS_ENSURE_ARG_POINTER(aParentContentListener); *aParentContentListener = nsnull; return NS_OK; } NS_IMETHODIMP nsEditingSession::SetParentContentListener(nsIURIContentListener * aParentContentListener) { return NS_OK; } #ifdef XP_MAC #pragma mark - #endif /*--------------------------------------------------------------------------- IsProgressForTargetDocument Check that this notification is for our document. ----------------------------------------------------------------------------*/ PRBool nsEditingSession::IsProgressForTargetDocument(nsIWebProgress *aWebProgress) { nsCOMPtr domWindow; if (aWebProgress) aWebProgress->GetDOMWindow(getter_AddRefs(domWindow)); nsCOMPtr editedDOMWindow = do_QueryReferent(mWindowToBeEdited); return (domWindow && (domWindow == editedDOMWindow)); } /*--------------------------------------------------------------------------- GetEditorStatus Called during GetCommandStateParams("obs_documentCreated"...) to determine if editor was created and document was loaded successfully ----------------------------------------------------------------------------*/ NS_IMETHODIMP nsEditingSession::GetEditorStatus(PRUint32 *aStatus) { NS_ENSURE_ARG_POINTER(aStatus); *aStatus = mEditorStatus; return NS_OK; } /*--------------------------------------------------------------------------- StartDocumentLoad Called on start of load in a single frame ----------------------------------------------------------------------------*/ nsresult nsEditingSession::StartDocumentLoad(nsIWebProgress *aWebProgress, PRBool aIsToBeMadeEditable) { #ifdef NOISY_DOC_LOADING printf("======= StartDocumentLoad ========\n"); #endif NS_ENSURE_ARG_POINTER(aWebProgress); // If we have an editor here, then we got a reload after making the editor. // We need to blow it away and make a new one at the end of the load. nsCOMPtr domWindow; aWebProgress->GetDOMWindow(getter_AddRefs(domWindow)); if (domWindow) { TearDownEditorOnWindow(domWindow); } if (aIsToBeMadeEditable) mEditorStatus = eEditorCreationInProgress; return NS_OK; } /*--------------------------------------------------------------------------- EndDocumentLoad Called on end of load in a single frame ----------------------------------------------------------------------------*/ nsresult nsEditingSession::EndDocumentLoad(nsIWebProgress *aWebProgress, nsIChannel* aChannel, nsresult aStatus, PRBool aIsToBeMadeEditable) { NS_ENSURE_ARG_POINTER(aWebProgress); #ifdef NOISY_DOC_LOADING printf("======= EndDocumentLoad ========\n"); printf("with status %d, ", aStatus); nsCOMPtr uri; nsXPIDLCString spec; if (NS_SUCCEEDED(aChannel->GetURI(getter_AddRefs(uri)))) { uri->GetSpec(spec); printf(" uri %s\n", spec.get()); } #endif // We want to call the base class EndDocumentLoad, // but avoid some of the stuff // that nsWebShell does (need to refactor). // OK, time to make an editor on this document nsCOMPtr domWindow; aWebProgress->GetDOMWindow(getter_AddRefs(domWindow)); // Set the error state -- we will create an editor // anyway and load empty doc later if (aIsToBeMadeEditable) { if (aStatus == NS_ERROR_FILE_NOT_FOUND) mEditorStatus = eEditorErrorFileNotFound; } nsIDocShell *docShell = GetDocShellFromWindow(domWindow); if (!docShell) return NS_ERROR_FAILURE; // better error handling? // cancel refresh from meta tags // we need to make sure that all pages in editor (whether editable or not) // can't refresh contents being edited nsCOMPtr refreshURI = do_QueryInterface(docShell); if (refreshURI) refreshURI->CancelRefreshURITimers(); nsCOMPtr editorDocShell = do_QueryInterface(docShell); nsresult rv = NS_OK; // did someone set the flag to make this shell editable? if (aIsToBeMadeEditable && mCanCreateEditor && editorDocShell) { PRBool makeEditable; editorDocShell->GetEditable(&makeEditable); if (makeEditable) { mCanCreateEditor = PR_FALSE; rv = SetupEditorOnWindow(domWindow); if (NS_FAILED(rv)) { // If we had an error, setup timer to load a blank page later if (mLoadBlankDocTimer) { // Must cancel previous timer? mLoadBlankDocTimer->Cancel(); mLoadBlankDocTimer = NULL; } mLoadBlankDocTimer = do_CreateInstance("@mozilla.org/timer;1", &rv); if (NS_FAILED(rv)) return rv; mEditorStatus = eEditorCreationInProgress; mLoadBlankDocTimer->InitWithFuncCallback( nsEditingSession::TimerCallback, (void*)docShell, 10, nsITimer::TYPE_ONE_SHOT); } } } return rv; } void nsEditingSession::TimerCallback(nsITimer* aTimer, void* aClosure) { nsCOMPtr docShell = (nsIDocShell*)aClosure; if (docShell) { nsCOMPtr webNav(do_QueryInterface(docShell)); if (webNav) webNav->LoadURI(NS_LITERAL_STRING("about:blank").get(), 0, nsnull, nsnull, nsnull); } } /*--------------------------------------------------------------------------- StartPageLoad Called on start load of the entire page (incl. subframes) ----------------------------------------------------------------------------*/ nsresult nsEditingSession::StartPageLoad(nsIChannel *aChannel) { #ifdef NOISY_DOC_LOADING printf("======= StartPageLoad ========\n"); #endif return NS_OK; } /*--------------------------------------------------------------------------- EndPageLoad Called on end load of the entire page (incl. subframes) ----------------------------------------------------------------------------*/ nsresult nsEditingSession::EndPageLoad(nsIWebProgress *aWebProgress, nsIChannel* aChannel, nsresult aStatus) { #ifdef NOISY_DOC_LOADING printf("======= EndPageLoad ========\n"); printf(" with status %d, ", aStatus); nsCOMPtr uri; nsXPIDLCString spec; if (NS_SUCCEEDED(aChannel->GetURI(getter_AddRefs(uri)))) { uri->GetSpec(spec); printf("uri %s\n", spec.get()); } nsCAutoString contentType; aChannel->GetContentType(contentType); if (!contentType.IsEmpty()) printf(" flags = %d, status = %d, MIMETYPE = %s\n", mEditorFlags, mEditorStatus, contentType.get()); #endif // Set the error state -- we will create an editor anyway // and load empty doc later if (aStatus == NS_ERROR_FILE_NOT_FOUND) mEditorStatus = eEditorErrorFileNotFound; nsCOMPtr domWindow; aWebProgress->GetDOMWindow(getter_AddRefs(domWindow)); nsIDocShell *docShell = GetDocShellFromWindow(domWindow); if (!docShell) return NS_ERROR_FAILURE; // cancel refresh from meta tags // we need to make sure that all pages in editor (whether editable or not) // can't refresh contents being edited nsCOMPtr refreshURI = do_QueryInterface(docShell); if (refreshURI) refreshURI->CancelRefreshURITimers(); #if 0 // Shouldn't we do this when we want to edit sub-frames? return MakeWindowEditable(domWindow, "html", PR_FALSE); #else return NS_OK; #endif } #ifdef XP_MAC #pragma mark - #endif /*--------------------------------------------------------------------------- GetDocShellFromWindow Utility method. This will always return nsnull if no docShell is found. ----------------------------------------------------------------------------*/ nsIDocShell * nsEditingSession::GetDocShellFromWindow(nsIDOMWindow *aWindow) { nsCOMPtr scriptGO = do_QueryInterface(aWindow); if (!scriptGO) return nsnull; return scriptGO->GetDocShell(); } /*--------------------------------------------------------------------------- GetEditorDocShellFromWindow Utility method. This will always return an error if no docShell is returned. ----------------------------------------------------------------------------*/ nsresult nsEditingSession::GetEditorDocShellFromWindow(nsIDOMWindow *aWindow, nsIEditorDocShell** outDocShell) { nsIDocShell *docShell = GetDocShellFromWindow(aWindow); if (!docShell) return NS_ERROR_FAILURE; return docShell->QueryInterface(NS_GET_IID(nsIEditorDocShell), (void **)outDocShell); } /*--------------------------------------------------------------------------- PrepareForEditing Set up this editing session for one or more editors ----------------------------------------------------------------------------*/ nsresult nsEditingSession::PrepareForEditing(nsIDOMWindow *aWindow) { if (mDoneSetup || mProgressListenerRegistered) return NS_OK; mDoneSetup = PR_TRUE; nsIDocShell *docShell = GetDocShellFromWindow(aWindow); // register callback nsCOMPtr webProgress = do_GetInterface(docShell); if (!webProgress) return NS_ERROR_FAILURE; nsresult rv = webProgress->AddProgressListener(this, (nsIWebProgress::NOTIFY_STATE_NETWORK | nsIWebProgress::NOTIFY_STATE_DOCUMENT | nsIWebProgress::NOTIFY_LOCATION)); mProgressListenerRegistered = NS_SUCCEEDED(rv); return rv; } /*--------------------------------------------------------------------------- SetupEditorCommandController Create a command controller, append to controllers, get and return the controller ID, and set the context ----------------------------------------------------------------------------*/ nsresult nsEditingSession::SetupEditorCommandController( const char *aControllerClassName, nsIDOMWindow *aWindow, nsISupports *aContext, PRUint32 *aControllerId) { NS_ENSURE_ARG_POINTER(aControllerClassName); NS_ENSURE_ARG_POINTER(aWindow); NS_ENSURE_ARG_POINTER(aContext); NS_ENSURE_ARG_POINTER(aControllerId); nsresult rv; nsCOMPtr domWindowInt = do_QueryInterface(aWindow, &rv); if (NS_FAILED(rv)) return rv; nsCOMPtr controllers; rv = domWindowInt->GetControllers(getter_AddRefs(controllers)); if (NS_FAILED(rv)) return rv; // We only have to create each singleton controller once // We know this has happened once we have a controllerId value if (!*aControllerId) { nsresult rv; nsCOMPtr controller; controller = do_CreateInstance(aControllerClassName, &rv); if (NS_FAILED(rv)) return rv; // We must insert at head of the list to be sure our // controller is found before other implementations // (e.g., not-implemented versions by browser) rv = controllers->InsertControllerAt(0, controller); if (NS_FAILED(rv)) return rv; // Remember the ID for the controller rv = controllers->GetControllerId(controller, aControllerId); if (NS_FAILED(rv)) return rv; } // Set the context return SetContextOnControllerById(controllers, aContext, *aControllerId); } /*--------------------------------------------------------------------------- SetEditorOnControllers Set the editor on the controller(s) for this window ----------------------------------------------------------------------------*/ NS_IMETHODIMP nsEditingSession::SetEditorOnControllers(nsIDOMWindow *aWindow, nsIEditor* aEditor) { nsresult rv; // set the editor on the controller nsCOMPtr domWindowInt = do_QueryInterface(aWindow, &rv); if (NS_FAILED(rv)) return rv; nsCOMPtr controllers; rv = domWindowInt->GetControllers(getter_AddRefs(controllers)); if (NS_FAILED(rv)) return rv; nsCOMPtr editorAsISupports = do_QueryInterface(aEditor); if (mBaseCommandControllerId) { rv = SetContextOnControllerById(controllers, editorAsISupports, mBaseCommandControllerId); if (NS_FAILED(rv)) return rv; } if (mDocStateControllerId) { rv = SetContextOnControllerById(controllers, editorAsISupports, mDocStateControllerId); if (NS_FAILED(rv)) return rv; } if (mHTMLCommandControllerId) rv = SetContextOnControllerById(controllers, editorAsISupports, mHTMLCommandControllerId); return rv; } nsresult nsEditingSession::SetContextOnControllerById(nsIControllers* aControllers, nsISupports* aContext, PRUint32 aID) { NS_ENSURE_ARG_POINTER(aControllers); // aContext can be null (when destroying editor) nsCOMPtr controller; aControllers->GetControllerById(aID, getter_AddRefs(controller)); // ok with nil controller nsCOMPtr editorController = do_QueryInterface(controller); if (!editorController) return NS_ERROR_FAILURE; return editorController->SetCommandContext(aContext); }