/* -*- 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 Communicator client code. This file was split * from xpfe/appshell/src/nsAppShellService.cpp * * 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): * Pierre Phaneuf * Robert O'Callahan * Benjamin Smedberg * * 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 "nsAppStartup.h" #include "nsIAppShellService.h" #include "nsICloseAllWindows.h" #include "nsICmdLineService.h" #include "nsIDOMWindowInternal.h" #include "nsIInterfaceRequestor.h" #include "nsILocalFile.h" #include "nsIObserverService.h" #include "nsIPrefBranch.h" #include "nsIPrefService.h" #include "nsIProfileChangeStatus.h" #include "nsIProfileInternal.h" #include "nsIPromptService.h" #include "nsIStringBundle.h" #include "nsISupportsPrimitives.h" #include "nsITimelineService.h" #include "nsIWebBrowserChrome.h" #include "nsIWindowMediator.h" #include "nsIWindowWatcher.h" #include "nsIXULWindow.h" #include "nsNativeCharsetUtils.h" #include "nsThreadUtils.h" #include "nsAutoPtr.h" #include "prprf.h" #include "nsCRT.h" #include "nsIInterfaceRequestorUtils.h" #include "nsWidgetsCID.h" #include "nsAppShellCID.h" #include "nsXPFEComponentsCID.h" #include "nsEmbedCID.h" class nsAppStartupExitEvent : public nsRunnable { public: nsAppStartupExitEvent(nsAppStartup *service) : mService(service) {} NS_IMETHOD Run() { // Tell the appshell to exit mService->mAppShell->Exit(); // We're done "shutting down". mService->mShuttingDown = PR_FALSE; return NS_OK; } private: nsRefPtr mService; }; NS_DEFINE_CID(kAppShellCID, NS_APPSHELL_CID); // // nsAppStartup // nsAppStartup::nsAppStartup() : mConsiderQuitStopper(0), mShuttingDown(PR_FALSE), mAttemptingQuit(PR_FALSE) { } // // nsAppStartup->nsISupports // NS_IMPL_ISUPPORTS5(nsAppStartup, nsIAppStartup, nsIWindowCreator, nsIWindowCreator2, nsIObserver, nsISupportsWeakReference) // // nsAppStartup->nsIAppStartup // NS_IMETHODIMP nsAppStartup::Initialize(nsISupports *aNativeAppSupportOrSplashScreen) { nsresult rv; // Remember where the native app support lives. mNativeAppSupport = do_QueryInterface(aNativeAppSupportOrSplashScreen); // Or, remember the splash screen (for backward compatibility). if (!mNativeAppSupport) mSplashScreen = do_QueryInterface(aNativeAppSupportOrSplashScreen); // Create widget application shell mAppShell = do_GetService(kAppShellCID, &rv); NS_ENSURE_SUCCESS(rv, rv); nsCOMPtr os (do_GetService("@mozilla.org/observer-service;1", &rv)); NS_ENSURE_SUCCESS(rv, rv); os->AddObserver(this, "skin-selected", PR_TRUE); os->AddObserver(this, "locale-selected", PR_TRUE); os->AddObserver(this, "xpinstall-restart", PR_TRUE); os->AddObserver(this, "profile-change-teardown", PR_TRUE); os->AddObserver(this, "profile-initial-state", PR_TRUE); os->AddObserver(this, "xul-window-registered", PR_TRUE); os->AddObserver(this, "xul-window-destroyed", PR_TRUE); os->AddObserver(this, "xul-window-visible", PR_TRUE); return NS_OK; } NS_IMETHODIMP nsAppStartup::CreateHiddenWindow() { nsCOMPtr appShellService (do_GetService(NS_APPSHELLSERVICE_CONTRACTID)); NS_ENSURE_TRUE(appShellService, NS_ERROR_FAILURE); return appShellService->CreateHiddenWindow(mAppShell); } NS_IMETHODIMP nsAppStartup::DoProfileStartup(nsICmdLineService *aCmdLineService, PRBool canInteract) { nsresult rv; nsCOMPtr profileMgr (do_GetService(NS_PROFILE_CONTRACTID, &rv)); NS_ENSURE_SUCCESS(rv,rv); EnterLastWindowClosingSurvivalArea(); // If we are being launched in turbo mode, profile mgr cannot show UI rv = profileMgr->StartupWithArgs(aCmdLineService, canInteract); if (!canInteract && rv == NS_ERROR_PROFILE_REQUIRES_INTERACTION) { NS_WARNING("nsIProfileInternal::StartupWithArgs returned NS_ERROR_PROFILE_REQUIRES_INTERACTION"); rv = NS_OK; } if (NS_SUCCEEDED(rv)) { rv = CheckAndRemigrateDefunctProfile(); NS_ASSERTION(NS_SUCCEEDED(rv), "failed to check and remigrate profile"); rv = NS_OK; } ExitLastWindowClosingSurvivalArea(); // if Quit() was called while we were starting up we have a failure situation... if (mShuttingDown) return NS_ERROR_FAILURE; return rv; } NS_IMETHODIMP nsAppStartup::GetNativeAppSupport(nsINativeAppSupport **aResult) { NS_PRECONDITION(aResult, "Null out param"); if (!mNativeAppSupport) return NS_ERROR_FAILURE; NS_ADDREF(*aResult = mNativeAppSupport); return NS_OK; } NS_IMETHODIMP nsAppStartup::Run(void) { return mAppShell->Run(); } NS_IMETHODIMP nsAppStartup::Quit(PRUint32 aFerocity) { // Quit the application. We will asynchronously call the appshell's // Exit() method via the ExitCallback() to allow one last pass // through any events in the queue. This guarantees a tidy cleanup. nsresult rv = NS_OK; PRBool postedExitEvent = PR_FALSE; if (mShuttingDown) return NS_OK; /* eForceQuit doesn't actually work; it can cause a subtle crash if there are windows open which have unload handlers which open new windows. Use eAttemptQuit for now. */ if (aFerocity == eForceQuit) { NS_WARNING("attempted to force quit"); // it will be treated the same as eAttemptQuit, below } mShuttingDown = PR_TRUE; nsCOMPtr mediator (do_GetService(NS_WINDOWMEDIATOR_CONTRACTID)); if (aFerocity == eConsiderQuit && mConsiderQuitStopper == 0) { // attempt quit if the last window has been unregistered/closed PRBool windowsRemain = PR_TRUE; if (mediator) { nsCOMPtr windowEnumerator; mediator->GetEnumerator(nsnull, getter_AddRefs(windowEnumerator)); if (windowEnumerator) windowEnumerator->HasMoreElements(&windowsRemain); } if (!windowsRemain) { aFerocity = eAttemptQuit; // Check to see if we should quit in this case. if (mNativeAppSupport) { PRBool serverMode = PR_FALSE; mNativeAppSupport->GetIsServerMode(&serverMode); if (serverMode) { // stop! give control to server mode mShuttingDown = PR_FALSE; mNativeAppSupport->OnLastWindowClosing(); return NS_OK; } } } } /* Currently aFerocity can never have the value of eForceQuit here. That's temporary (in an unscheduled kind of way) and logically this code is part of the eForceQuit case, so I'm checking against that value anyway. Reviewers made me add this comment. */ if (aFerocity == eAttemptQuit || aFerocity == eForceQuit) { AttemptingQuit(PR_TRUE); /* Enumerate through each open window and close it. It's important to do this before we forcequit because this can control whether we really quit at all. e.g. if one of these windows has an unload handler that opens a new window. Ugh. I know. */ if (mediator) { nsCOMPtr windowEnumerator; mediator->GetEnumerator(nsnull, getter_AddRefs(windowEnumerator)); if (windowEnumerator) { while (1) { PRBool more; if (NS_FAILED(rv = windowEnumerator->HasMoreElements(&more)) || !more) break; nsCOMPtr isupports; rv = windowEnumerator->GetNext(getter_AddRefs(isupports)); if (NS_FAILED(rv)) break; nsCOMPtr window = do_QueryInterface(isupports); NS_ASSERTION(window, "not an nsIDOMWindowInternal"); if (!window) continue; window->Close(); } } if (aFerocity == eAttemptQuit) { aFerocity = eForceQuit; // assume success /* Were we able to immediately close all windows? if not, eAttemptQuit failed. This could happen for a variety of reasons; in fact it's very likely. Perhaps we're being called from JS and the window->Close method hasn't had a chance to wrap itself up yet. So give up. We'll return (with eConsiderQuit) as the remaining windows are closed. */ mediator->GetEnumerator(nsnull, getter_AddRefs(windowEnumerator)); if (windowEnumerator) { PRBool more; while (windowEnumerator->HasMoreElements(&more), more) { /* we can't quit immediately. we'll try again as the last window finally closes. */ aFerocity = eAttemptQuit; nsCOMPtr window; windowEnumerator->GetNext(getter_AddRefs(window)); nsCOMPtr domWindow(do_QueryInterface(window)); if (domWindow) { PRBool closed = PR_FALSE; domWindow->GetClosed(&closed); if (!closed) { rv = NS_ERROR_FAILURE; break; } } } } } } } if (aFerocity == eForceQuit) { // do it! // No chance of the shutdown being cancelled from here on; tell people // we're shutting down for sure while all services are still available. nsCOMPtr obsService = do_GetService("@mozilla.org/observer-service;1", &rv); obsService->NotifyObservers(nsnull, "quit-application", nsnull); // first shutdown native app support; doing this first will prevent new // requests to open additional windows coming in. if (mNativeAppSupport) { mNativeAppSupport->Quit(); mNativeAppSupport = 0; } nsCOMPtr appShellService (do_GetService(NS_APPSHELLSERVICE_CONTRACTID)); if (appShellService) appShellService->DestroyHiddenWindow(); // no matter what, make sure we send the exit event. If // worst comes to worst, we'll do a leaky shutdown but we WILL // shut down. Well, assuming that all *this* stuff works ;-). nsCOMPtr event = new nsAppStartupExitEvent(this); if (event) { rv = NS_DispatchToCurrentThread(event); if (NS_SUCCEEDED(rv)) { postedExitEvent = PR_TRUE; } } else { rv = NS_ERROR_OUT_OF_MEMORY; } } // turn off the reentrancy check flag, but not if we have // more asynchronous work to do still. if (!postedExitEvent) mShuttingDown = PR_FALSE; return rv; } /* We know we're trying to quit the app, but may not be able to do so immediately. Enter a state where we're more ready to quit. (Does useful work only on the Mac.) */ void nsAppStartup::AttemptingQuit(PRBool aAttempt) { #if defined(XP_MAC) || defined(XP_MACOSX) if (aAttempt) { // now even the Mac wants to quit when the last window is closed if (!mAttemptingQuit) ExitLastWindowClosingSurvivalArea(); mAttemptingQuit = PR_TRUE; } else { // changed our mind. back to normal. if (mAttemptingQuit) EnterLastWindowClosingSurvivalArea(); mAttemptingQuit = PR_FALSE; } #else mAttemptingQuit = aAttempt; #endif } nsresult nsAppStartup::CheckAndRemigrateDefunctProfile() { nsresult rv; nsCOMPtr prefBranch; nsCOMPtr prefs = do_GetService(NS_PREFSERVICE_CONTRACTID, &rv); NS_ENSURE_SUCCESS(rv,rv); rv = prefs->GetBranch(nsnull, getter_AddRefs(prefBranch)); NS_ENSURE_SUCCESS(rv,rv); PRInt32 secondsBeforeDefunct; rv = prefBranch->GetIntPref("profile.seconds_until_defunct", &secondsBeforeDefunct); NS_ENSURE_SUCCESS(rv,rv); // -1 is the value for "never go defunct" // if the pref is set to -1, we'll never prompt the user to remigrate // see all.js (and all-ns.js) if (secondsBeforeDefunct == -1) return NS_OK; // used for converting // seconds -> millisecs // and microsecs -> millisecs PRInt64 oneThousand = LL_INIT(0, 1000); PRInt64 defunctInterval; // Init as seconds LL_I2L(defunctInterval, secondsBeforeDefunct); // Convert secs to millisecs LL_MUL(defunctInterval, defunctInterval, oneThousand); nsCOMPtr profileMgr(do_GetService(NS_PROFILE_CONTRACTID, &rv)); NS_ENSURE_SUCCESS(rv,rv); nsXPIDLString profileName; PRInt64 lastModTime; profileMgr->GetCurrentProfile(getter_Copies(profileName)); rv = profileMgr->GetProfileLastModTime(profileName.get(), &lastModTime); NS_ENSURE_SUCCESS(rv,rv); // convert "now" from microsecs to millisecs PRInt64 nowInMilliSecs = PR_Now(); LL_DIV(nowInMilliSecs, nowInMilliSecs, oneThousand); // determine (using the pref value) when the profile would be considered defunct PRInt64 defunctIntervalAgo; LL_SUB(defunctIntervalAgo, nowInMilliSecs, defunctInterval); // if we've used our current 6.x / mozilla profile more recently than // when we'd consider it defunct, don't remigrate if (LL_CMP(lastModTime, >, defunctIntervalAgo)) return NS_OK; nsCOMPtr origProfileDir; rv = profileMgr->GetOriginalProfileDir(profileName, getter_AddRefs(origProfileDir)); // if this fails // then the current profile is a new one (not from 4.x) // so we are done. if (NS_FAILED(rv)) return NS_OK; // Now, we know that a matching 4.x profile exists // See if it has any newer files in it than our defunct profile. nsCOMPtr dirEnum; rv = origProfileDir->GetDirectoryEntries(getter_AddRefs(dirEnum)); NS_ENSURE_SUCCESS(rv,rv); PRBool promptForRemigration = PR_FALSE; PRBool hasMore; while (NS_SUCCEEDED(dirEnum->HasMoreElements(&hasMore)) && hasMore) { nsCOMPtr currElem; rv = dirEnum->GetNext(getter_AddRefs(currElem)); NS_ENSURE_SUCCESS(rv,rv); PRInt64 currElemModTime; rv = currElem->GetLastModifiedTime(&currElemModTime); NS_ENSURE_SUCCESS(rv,rv); // if this file in our 4.x profile is more recent than when we last used our mozilla / 6.x profile // we should prompt for re-migration if (LL_CMP(currElemModTime, >, lastModTime)) { promptForRemigration = PR_TRUE; break; } } // If nothing in the 4.x dir is newer than our defunct profile, return. if (!promptForRemigration) return NS_OK; nsCOMPtr stringBundleService(do_GetService(NS_STRINGBUNDLE_CONTRACTID, &rv)); NS_ENSURE_SUCCESS(rv,rv); nsCOMPtr migrationBundle, brandBundle; rv = stringBundleService->CreateBundle("chrome://communicator/locale/profile/migration.properties", getter_AddRefs(migrationBundle)); NS_ENSURE_SUCCESS(rv,rv); rv = stringBundleService->CreateBundle("chrome://branding/locale/brand.properties", getter_AddRefs(brandBundle)); NS_ENSURE_SUCCESS(rv,rv); nsXPIDLString brandName; rv = brandBundle->GetStringFromName(NS_LITERAL_STRING("brandShortName").get(), getter_Copies(brandName)); NS_ENSURE_SUCCESS(rv,rv); nsXPIDLString dialogText; rv = migrationBundle->GetStringFromName(NS_LITERAL_STRING("confirmRemigration").get(), getter_Copies(dialogText)); NS_ENSURE_SUCCESS(rv,rv); nsCOMPtr promptService(do_GetService(NS_PROMPTSERVICE_CONTRACTID, &rv)); NS_ENSURE_SUCCESS(rv,rv); PRInt32 buttonPressed; rv = promptService->ConfirmEx(nsnull, brandName.get(), dialogText.get(), nsIPromptService::STD_YES_NO_BUTTONS, nsnull, nsnull, nsnull, nsnull, nsnull, &buttonPressed); NS_ENSURE_SUCCESS(rv,rv); if (buttonPressed == 0) { // Need to shut down the current profile before remigrating it profileMgr->ShutDownCurrentProfile(nsIProfile::SHUTDOWN_PERSIST); // If this fails, it will restore what was there. rv = profileMgr->RemigrateProfile(profileName.get()); NS_ASSERTION(NS_SUCCEEDED(rv), "Remigration of profile failed."); // Whether or not we succeeded or failed, need to reset this. profileMgr->SetCurrentProfile(profileName.get()); } return NS_OK; } NS_IMETHODIMP nsAppStartup::EnterLastWindowClosingSurvivalArea(void) { ++mConsiderQuitStopper; return NS_OK; } NS_IMETHODIMP nsAppStartup::ExitLastWindowClosingSurvivalArea(void) { NS_ASSERTION(mConsiderQuitStopper > 0, "consider quit stopper out of bounds"); --mConsiderQuitStopper; return NS_OK; } NS_IMETHODIMP nsAppStartup::HideSplashScreen() { // Hide the splash screen. if ( mNativeAppSupport ) { mNativeAppSupport->HideSplashScreen(); } else if ( mSplashScreen ) { mSplashScreen->Hide(); } return NS_OK; } NS_IMETHODIMP nsAppStartup::CreateStartupState(PRInt32 aWindowWidth, PRInt32 aWindowHeight, PRBool *_retval) { NS_ENSURE_ARG_POINTER(_retval); *_retval = PR_FALSE; nsresult rv; // If starting up in server mode, then we do things differently. nsCOMPtr nativeApp; rv = GetNativeAppSupport(getter_AddRefs(nativeApp)); if (NS_SUCCEEDED(rv)) { PRBool isServerMode = PR_FALSE; nativeApp->GetIsServerMode(&isServerMode); if (isServerMode) { nativeApp->StartServerMode(); } PRBool shouldShowUI = PR_TRUE; nativeApp->GetShouldShowUI(&shouldShowUI); if (!shouldShowUI) { return NS_OK; } } nsCOMPtr prefService(do_GetService(NS_PREFSERVICE_CONTRACTID)); if (!prefService) return NS_ERROR_FAILURE; nsCOMPtr startupBranch; prefService->GetBranch(PREF_STARTUP_PREFIX, getter_AddRefs(startupBranch)); if (!startupBranch) return NS_ERROR_FAILURE; PRUint32 childCount; char **childArray = nsnull; rv = startupBranch->GetChildList("", &childCount, &childArray); if (NS_FAILED(rv)) return rv; for (PRUint32 i = 0; i < childCount; i++) { PRBool prefValue; rv = startupBranch->GetBoolPref(childArray[i], &prefValue); if (NS_SUCCEEDED(rv) && prefValue) { PRBool windowOpened; rv = LaunchTask(childArray[i], aWindowHeight, aWindowWidth, &windowOpened); if (NS_SUCCEEDED(rv) && windowOpened) *_retval = PR_TRUE; } } NS_FREE_XPCOM_ALLOCATED_POINTER_ARRAY(childCount, childArray); return NS_OK; } NS_IMETHODIMP nsAppStartup::Ensure1Window(nsICmdLineService *aCmdLineService) { nsresult rv; nsCOMPtr windowMediator(do_GetService(NS_WINDOWMEDIATOR_CONTRACTID, &rv)); if (NS_FAILED(rv)) return rv; nsCOMPtr windowEnumerator; if (NS_SUCCEEDED(windowMediator->GetEnumerator(nsnull, getter_AddRefs(windowEnumerator)))) { PRBool more; windowEnumerator->HasMoreElements(&more); if (!more) { // No window exists so lets create a browser one PRInt32 height = nsIAppShellService::SIZE_TO_CONTENT; PRInt32 width = nsIAppShellService::SIZE_TO_CONTENT; // Get the value of -width option nsXPIDLCString tempString; rv = aCmdLineService->GetCmdLineValue("-width", getter_Copies(tempString)); if (NS_SUCCEEDED(rv) && !tempString.IsEmpty()) PR_sscanf(tempString.get(), "%d", &width); // Get the value of -height option rv = aCmdLineService->GetCmdLineValue("-height", getter_Copies(tempString)); if (NS_SUCCEEDED(rv) && !tempString.IsEmpty()) PR_sscanf(tempString.get(), "%d", &height); rv = OpenBrowserWindow(height, width); } } return rv; } nsresult nsAppStartup::LaunchTask(const char *aParam, PRInt32 height, PRInt32 width, PRBool *windowOpened) { nsresult rv; nsCOMPtr cmdLine = do_GetService(NS_COMMANDLINESERVICE_CONTRACTID, &rv); if (NS_FAILED(rv)) return rv; nsCOMPtr handler; rv = cmdLine->GetHandlerForParam(aParam, getter_AddRefs(handler)); if (NS_FAILED(rv)) return rv; nsXPIDLCString chromeUrlForTask; rv = handler->GetChromeUrlForTask(getter_Copies(chromeUrlForTask)); if (NS_FAILED(rv)) return rv; PRBool handlesArgs = PR_FALSE; rv = handler->GetHandlesArgs(&handlesArgs); if (handlesArgs) { nsXPIDLString defaultArgs; rv = handler->GetDefaultArgs(getter_Copies(defaultArgs)); if (NS_FAILED(rv)) return rv; rv = OpenWindow(chromeUrlForTask, defaultArgs, nsIAppShellService::SIZE_TO_CONTENT, nsIAppShellService::SIZE_TO_CONTENT); } else { rv = OpenWindow(chromeUrlForTask, EmptyString(), width, height); } // If we get here without an error, then a window was opened OK. if (NS_SUCCEEDED(rv)) { *windowOpened = PR_TRUE; } return rv; } nsresult nsAppStartup::OpenWindow(const nsAFlatCString& aChromeURL, const nsAFlatString& aAppArgs, PRInt32 aWidth, PRInt32 aHeight) { nsCOMPtr wwatch(do_GetService(NS_WINDOWWATCHER_CONTRACTID)); nsCOMPtr sarg(do_CreateInstance(NS_SUPPORTS_STRING_CONTRACTID)); if (!wwatch || !sarg) return NS_ERROR_FAILURE; // Make sure a profile is selected. // We need the native app support object. If this fails, we still proceed. // That's because some platforms don't have a native app // support implementation. On those platforms, "ensuring a // profile" is moot (because they don't support "-turbo", // basically). Specifically, because they don't do turbo, they will // *always* have a profile selected. nsCOMPtr nativeApp; if (NS_SUCCEEDED(GetNativeAppSupport(getter_AddRefs(nativeApp)))) { nsCOMPtr cmdLine = do_GetService(NS_COMMANDLINESERVICE_CONTRACTID); if (cmdLine) { // Make sure profile has been selected. // At this point, we have to look for failure. That // handles the case where the user chooses "Exit" on // the profile manager window. if (NS_FAILED(nativeApp->EnsureProfile(cmdLine))) return NS_ERROR_NOT_INITIALIZED; } } sarg->SetData(aAppArgs); nsCAutoString features("chrome,dialog=no,all"); if (aHeight != nsIAppShellService::SIZE_TO_CONTENT) { features.Append(",height="); features.AppendInt(aHeight); } if (aWidth != nsIAppShellService::SIZE_TO_CONTENT) { features.Append(",width="); features.AppendInt(aWidth); } nsCOMPtr newWindow; return wwatch->OpenWindow(0, aChromeURL.get(), "_blank", features.get(), sarg, getter_AddRefs(newWindow)); } nsresult nsAppStartup::OpenBrowserWindow(PRInt32 height, PRInt32 width) { nsresult rv; nsCOMPtr handler( do_GetService("@mozilla.org/commandlinehandler/general-startup;1?type=browser", &rv)); if (NS_FAILED(rv)) return rv; nsXPIDLCString chromeUrlForTask; rv = handler->GetChromeUrlForTask(getter_Copies(chromeUrlForTask)); if (NS_FAILED(rv)) return rv; nsCOMPtr cmdLine = do_GetService(NS_COMMANDLINESERVICE_CONTRACTID, &rv); if (NS_FAILED(rv)) return rv; nsXPIDLCString urlToLoad; rv = cmdLine->GetURLToLoad(getter_Copies(urlToLoad)); if (!urlToLoad.IsEmpty()) { #ifdef DEBUG_CMD_LINE printf("url to load: %s\n", urlToLoad.get()); #endif /* DEBUG_CMD_LINE */ nsAutoString url; // convert the cmdLine URL to Unicode rv = NS_CopyNativeToUnicode(nsDependentCString(urlToLoad), url); if (NS_FAILED(rv)) { NS_ERROR("Failed to convert commandline url to unicode"); return rv; } rv = OpenWindow(chromeUrlForTask, url, width, height); } else { nsXPIDLString defaultArgs; rv = handler->GetDefaultArgs(getter_Copies(defaultArgs)); if (NS_FAILED(rv)) return rv; #ifdef DEBUG_CMD_LINE printf("default args: %s\n", NS_ConvertUTF16toUTF8(defaultArgs).get()); #endif /* DEBUG_CMD_LINE */ rv = OpenWindow(chromeUrlForTask, defaultArgs, width, height); } return rv; } // // nsAppStartup->nsIWindowCreator // NS_IMETHODIMP nsAppStartup::CreateChromeWindow(nsIWebBrowserChrome *aParent, PRUint32 aChromeFlags, nsIWebBrowserChrome **_retval) { PRBool cancel; return CreateChromeWindow2(aParent, aChromeFlags, 0, 0, &cancel, _retval); } // // nsAppStartup->nsIWindowCreator2 // NS_IMETHODIMP nsAppStartup::CreateChromeWindow2(nsIWebBrowserChrome *aParent, PRUint32 aChromeFlags, PRUint32 aContextFlags, nsIURI *aURI, PRBool *aCancel, nsIWebBrowserChrome **_retval) { NS_ENSURE_ARG_POINTER(aCancel); NS_ENSURE_ARG_POINTER(_retval); *aCancel = PR_FALSE; *_retval = 0; nsCOMPtr newWindow; if (aParent) { nsCOMPtr xulParent(do_GetInterface(aParent)); NS_ASSERTION(xulParent, "window created using non-XUL parent. that's unexpected, but may work."); if (xulParent) xulParent->CreateNewWindow(aChromeFlags, mAppShell, getter_AddRefs(newWindow)); // And if it fails, don't try again without a parent. It could fail // intentionally (bug 115969). } else { // try using basic methods: /* You really shouldn't be making dependent windows without a parent. But unparented modal (and therefore dependent) windows happen in our codebase, so we allow it after some bellyaching: */ if (aChromeFlags & nsIWebBrowserChrome::CHROME_DEPENDENT) NS_WARNING("dependent window created without a parent"); nsCOMPtr appShell(do_GetService(NS_APPSHELLSERVICE_CONTRACTID)); if (!appShell) return NS_ERROR_FAILURE; appShell->CreateTopLevelWindow(0, 0, aChromeFlags, nsIAppShellService::SIZE_TO_CONTENT, nsIAppShellService::SIZE_TO_CONTENT, mAppShell, getter_AddRefs(newWindow)); } // if anybody gave us anything to work with, use it if (newWindow) { newWindow->SetContextFlags(aContextFlags); nsCOMPtr thing(do_QueryInterface(newWindow)); if (thing) CallGetInterface(thing.get(), _retval); } return *_retval ? NS_OK : NS_ERROR_FAILURE; } // // nsAppStartup->nsIObserver // NS_IMETHODIMP nsAppStartup::Observe(nsISupports *aSubject, const char *aTopic, const PRUnichar *aData) { NS_ASSERTION(mAppShell, "appshell service notified before appshell built"); if (!strcmp(aTopic, "skin-selected") || !strcmp(aTopic, "locale-selected") || !strcmp(aTopic, "xpinstall-restart")) { if (mNativeAppSupport) mNativeAppSupport->SetIsServerMode(PR_FALSE); } else if (!strcmp(aTopic, "profile-change-teardown")) { nsresult rv; EnterLastWindowClosingSurvivalArea(); // NOTE: No early error exits because we need to execute the // balancing ExitLastWindowClosingSurvivalArea(). nsCOMPtr closer = do_CreateInstance("@mozilla.org/appshell/closeallwindows;1", &rv); NS_ASSERTION(closer, "Failed to create nsICloseAllWindows impl."); PRBool proceedWithSwitch = PR_FALSE; if (closer) rv = closer->CloseAll(PR_TRUE, &proceedWithSwitch); if (NS_FAILED(rv) || !proceedWithSwitch) { nsCOMPtr changeStatus(do_QueryInterface(aSubject)); if (changeStatus) changeStatus->VetoChange(); } ExitLastWindowClosingSurvivalArea(); } else if (!strcmp(aTopic, "profile-initial-state")) { if (nsDependentString(aData).EqualsLiteral("switch")) { // Now, establish the startup state according to the new prefs. PRBool openedWindow; CreateStartupState(nsIAppShellService::SIZE_TO_CONTENT, nsIAppShellService::SIZE_TO_CONTENT, &openedWindow); if (!openedWindow) OpenBrowserWindow(nsIAppShellService::SIZE_TO_CONTENT, nsIAppShellService::SIZE_TO_CONTENT); } } else if (!strcmp(aTopic, "xul-window-registered")) { AttemptingQuit(PR_FALSE); } else if (!strcmp(aTopic, "xul-window-destroyed")) { Quit(eConsiderQuit); } else if (!strcmp(aTopic, "xul-window-visible")) { // Hide splash screen (if there is one). static PRBool splashScreenGone = PR_FALSE; if(!splashScreenGone) { HideSplashScreen(); splashScreenGone = PR_TRUE; } } else { NS_ERROR("Unexpected observer topic."); } return NS_OK; }