gecko-dev/xpfe/bootstrap/nsAppRunner.cpp

871 строка
23 KiB
C++
Исходник Обычный вид История

1998-12-03 04:37:46 +03: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 "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/
*
* 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.
*
* The Initial Developer of the Original Code is Netscape Communications
* Corporation. Portions created by Netscape are Copyright (C) 1998
* Netscape Communications Corporation. All Rights Reserved.
*/
#include "nsIServiceManager.h"
#include "nsIComponentManager.h"
1998-12-03 04:37:46 +03:00
#include "nsIURL.h"
#ifdef NECKO
#include "nsNeckoUtil.h"
#endif // NECKO
1998-12-03 04:37:46 +03:00
#include "nsIWidget.h"
#include "nsIBrowserWindow.h"
#include "nsIWebShellWindow.h"
#include "nsIPref.h"
1998-12-03 04:37:46 +03:00
#include "plevent.h"
1999-04-16 02:45:43 +04:00
#include "prmem.h"
1998-12-03 04:37:46 +03:00
#include "nsIAppShell.h"
#include "nsICmdLineService.h"
#include "nsIThread.h"
1998-12-03 04:37:46 +03:00
#include "nsIAppShellService.h"
#include "nsIAppShellComponent.h"
#include "nsAppShellCIDs.h"
1999-02-19 00:53:31 +03:00
#include "prprf.h"
#include "nsCRT.h"
1999-04-10 10:41:59 +04:00
#include "nsFileSpec.h"
#include "nsIFileSpec.h"
1999-04-16 02:45:43 +04:00
#include "nsIFileLocator.h"
1999-06-10 00:44:04 +04:00
#include "nsIPrefWindow.h"
1999-04-16 02:45:43 +04:00
#include "nsFileLocations.h"
#include "nsFileStream.h"
#include "nsSpecialSystemDirectory.h"
#include "nsIWalletService.h"
#include "nsIWebShell.h"
1999-07-20 01:19:13 +04:00
#ifdef NECKO
#include "nsICookieService.h"
#endif // NECKO
#include "nsIWindowMediator.h"
static NS_DEFINE_IID(kIWindowMediatorIID,NS_IWINDOWMEDIATOR_IID);
static NS_DEFINE_CID(kWindowMediatorCID, NS_WINDOWMEDIATOR_CID);
1999-07-20 01:19:13 +04:00
#ifdef DEBUG
#include "prlog.h"
#endif
1999-04-10 10:41:59 +04:00
// Temporary stuff.
#include "nsIDOMToolkitCore.h"
#include "nsAppCoresCIDs.h"
static NS_DEFINE_CID( kToolkitCoreCID, NS_TOOLKITCORE_CID );
#ifdef MOZ_FULLCIRCLE
#include "fullsoft.h"
#endif
1999-04-10 10:41:59 +04:00
// header file for profile manager
1999-04-16 02:45:43 +04:00
#include "nsIProfile.h"
// Uncomment this line to skip the profile code compilation
//#include "profileSwitch.h"
1998-12-03 04:37:46 +03:00
#if defined(XP_MAC)
#include "macstdlibextras.h"
#include <TextServices.h>
1999-08-31 11:36:02 +04:00
// Set up the toolbox and (if DEBUG) the console. Do this in a static initializer,
// to make it as unlikely as possible that somebody calls printf() before we get initialized.
static struct MacInitializer { MacInitializer() { InitializeMacToolbox(); } } gInitializer;
class stTSMCloser
{
public:
stTSMCloser()
1999-08-31 11:36:02 +04:00
{
// TSM is initialized in InitializeMacToolbox
};
~stTSMCloser()
{
(void)CloseTSMAwareApplication();
}
};
#endif // XP_MAC
1998-12-03 04:37:46 +03:00
/* Define Class IDs */
static NS_DEFINE_CID(kAppShellServiceCID, NS_APPSHELL_SERVICE_CID);
static NS_DEFINE_CID(kCmdLineServiceCID, NS_COMMANDLINE_SERVICE_CID);
static NS_DEFINE_CID(kPrefCID, NS_PREF_CID);
1999-04-16 02:45:43 +04:00
static NS_DEFINE_CID(kFileLocatorCID, NS_FILELOCATOR_CID);
static NS_DEFINE_IID(kWalletServiceCID, NS_WALLETSERVICE_CID);
static NS_DEFINE_IID(kIWalletServiceIID, NS_IWALLETSERVICE_IID);
1998-12-03 04:37:46 +03:00
1999-07-20 01:19:13 +04:00
#ifdef NECKO
static NS_DEFINE_CID(kCookieServiceCID, NS_COOKIESERVICE_CID);
#endif // NECKO
1998-12-03 04:37:46 +03:00
1999-04-10 10:41:59 +04:00
// defined for profileManager
1999-04-16 02:45:43 +04:00
#if defined(NS_USING_PROFILES)
1999-04-10 10:41:59 +04:00
static NS_DEFINE_CID(kProfileCID, NS_PROFILE_CID);
#endif // NS_USING_PROFILES
1999-04-10 10:41:59 +04:00
/*********************************************
AppCores
*********************************************/
#include "nsAppCoresCIDs.h"
#include "nsIDOMAppCoresManager.h"
static NS_DEFINE_CID(kAppCoresManagerCID, NS_APPCORESMANAGER_CID);
#include "nsNativeAppSupport.h"
/*********************************************/
// Default implemenations for nativeAppSupport
// If your platform implements these functions if def out this code.
#if !defined (XP_MAC )
void NS_ShowSplashScreen()
{
}
void NS_HideSplashScreen()
{
}
1998-12-03 04:37:46 +03:00
bool NS_CanRun()
{
return true;
}
#endif
1998-12-03 04:37:46 +03:00
/*
* This routine translates the nsresult into a platform specific return
* code for the application...
*/
static int TranslateReturnValue(nsresult aResult)
{
if (NS_SUCCEEDED(aResult)) {
return 0;
}
return 1;
}
extern "C" void NS_SetupRegistry_1();
1998-12-03 04:37:46 +03:00
static void
PrintUsage(void)
{
1999-08-31 11:36:02 +04:00
fprintf(stderr, "Usage: apprunner <url>\n");
fprintf(stderr, "\t<url>: a fully defined url string like http:// etc..\n");
}
1998-12-03 04:37:46 +03:00
//----------------------------------------------------------------------------------------
static PRBool CheckAndRunPrefs(nsICmdLineService* cmdLineArgs)
1999-08-31 11:36:02 +04:00
//----------------------------------------------------------------------------------------
{
// Support the "-pref" command-line option, which just puts up the pref window, so that
// apprunner becomes a "control panel". The "OK" and "Cancel" buttons will quit
// the application.
char* cmdResult;
nsresult rv = cmdLineArgs->GetCmdLineValue("-pref", &cmdResult);
if (NS_SUCCEEDED(rv) && cmdResult && (strcmp("1",cmdResult) == 0))
{
nsIPrefWindow* prefWindow;
rv = nsComponentManager::CreateInstance(
1999-08-31 11:36:02 +04:00
NS_PREFWINDOW_PROGID,
nsnull,
nsIPrefWindow::GetIID(),
(void **)&prefWindow);
if (NS_SUCCEEDED(rv))
prefWindow->ShowWindow(nsString("Apprunner::main()").GetUnicode(), nsnull, nsnull);
NS_IF_RELEASE(prefWindow);
return PR_TRUE;
}
return PR_FALSE;
} // CheckandRunPrefs
1998-12-03 04:37:46 +03:00
static void InitFullCircle()
1998-12-03 04:37:46 +03:00
{
1999-08-31 11:36:02 +04:00
// initialization for Full Circle
#ifdef MOZ_FULLCIRCLE
1999-08-31 11:36:02 +04:00
FC_ERROR fcstatus = FC_ERROR_FAILED;
fcstatus = FCInitialize();
1999-08-31 11:36:02 +04:00
// Print out error status.
switch(fcstatus)
{
case FC_ERROR_OK:
printf("Talkback loaded Ok.\n");
break;
case FC_ERROR_CANT_INITIALIZE:
printf("Talkback error: Can't initialize.\n");
break;
case FC_ERROR_NOT_INITIALIZED:
printf("Talkback error: Not initialized.\n");
break;
case FC_ERROR_ALREADY_INITIALIZED:
printf("Talkback error: Already initialized.\n");
break;
case FC_ERROR_FAILED:
printf("Talkback error: Failure.\n");
break;
case FC_ERROR_OUT_OF_MEMORY:
printf("Talkback error: Out of memory.\n");
break;
case FC_ERROR_INVALID_PARAMETER:
printf("Talkback error: Invalid parameter.\n");
break;
default:
printf("Talkback error: Unknown error status.\n");
break;
}
1999-07-03 01:37:48 +04:00
#endif
}
static nsresult HandleEditorStartup( nsICmdLineService* cmdLineArgs )
{
char* cmdResult = nsnull;
char * urlstr=nsnull;
nsString withArgs;
nsresult rv;
rv = cmdLineArgs->GetCmdLineValue("-edit", &cmdResult);
1999-08-31 11:36:02 +04:00
if (NS_SUCCEEDED(rv))
{
if (cmdResult && (strcmp("1",cmdResult)==0)) {
urlstr = "chrome://editor/content/";
withArgs = "chrome://editor/content/EditorInitPage.html";
NS_WITH_SERVICE(nsIDOMToolkitCore, toolkit, kToolkitCoreCID, &rv);
1999-08-31 11:36:02 +04:00
if (NS_SUCCEEDED(rv))
{
toolkit->ShowWindowWithArgs( urlstr, nsnull, withArgs );
}
}
// Check for -editor -- this will eventually go away
if (nsnull == urlstr)
{
rv = cmdLineArgs->GetCmdLineValue("-editor", &cmdResult);
if (NS_SUCCEEDED(rv))
{
if (cmdResult && (strcmp("1",cmdResult)==0)) {
printf(" -editor no longer supported, use -edit instead!\n");
return NS_ERROR_FAILURE;
}
}
}
1999-04-16 02:45:43 +04:00
}
return NS_OK;
}
static nsresult OpenChromURL( char * urlstr, PRInt32 height = NS_SIZETOCONTENT, PRInt32 width = NS_SIZETOCONTENT )
{
nsIURI* url = nsnull;
nsresult rv;
rv = NS_NewURI(&url, urlstr);
if ( NS_FAILED( rv ) )
return rv;
nsCOMPtr<nsIWebShellWindow> newWindow;
NS_WITH_SERVICE(nsIAppShellService, appShell, kAppShellServiceCID, &rv);
rv = appShell->CreateTopLevelWindow(nsnull, url,
1999-08-31 11:36:02 +04:00
PR_TRUE, PR_TRUE, NS_CHROME_ALL_CHROME,
nsnull, width, height,
getter_AddRefs(newWindow));
NS_IF_RELEASE( url );
return rv;
}
1999-02-19 00:53:31 +03:00
static nsresult HandleMailStartup( nsICmdLineService* cmdLineArgs )
{
char* cmdResult = nsnull;
char * urlstr=nsnull;
nsString withArgs;
nsresult rv;
PRInt32 height = NS_SIZETOCONTENT;
PRInt32 width = NS_SIZETOCONTENT;
// Get the value of -width option
char* tempString = NULL;
rv = cmdLineArgs->GetCmdLineValue("-width", &tempString);
if (NS_FAILED(rv))
1999-08-31 11:36:02 +04:00
return rv;
if (tempString)
1999-08-31 11:36:02 +04:00
PR_sscanf(tempString, "%d", &width);
// Get the value of -height option
rv = cmdLineArgs->GetCmdLineValue("-height", &tempString);
if (NS_FAILED(rv))
return rv;
if (tempString)
PR_sscanf(tempString, "%d", &height);
rv = cmdLineArgs->GetCmdLineValue("-mail", &cmdResult);
if (NS_SUCCEEDED(rv))
{
if (cmdResult && (strcmp("1",cmdResult)==0))
{
1999-08-31 11:36:02 +04:00
OpenChromURL("chrome://messenger/content/", height, width);
1999-08-31 11:36:02 +04:00
}
}
rv = cmdLineArgs->GetCmdLineValue("-news", &cmdResult);
if (NS_SUCCEEDED(rv))
{
if (cmdResult && (strcmp("1",cmdResult)==0))
1999-08-31 11:36:02 +04:00
OpenChromURL("chrome://messenger/content/", height, width);
}
rv = cmdLineArgs->GetCmdLineValue("-compose", &cmdResult);
if (NS_SUCCEEDED(rv))
{
if (cmdResult && (strcmp("1",cmdResult)==0))
{
urlstr = "chrome://messengercompose/content/";
withArgs = "chrome://editor/content/EditorInitPage.html";
NS_WITH_SERVICE(nsIDOMToolkitCore, toolkit, kToolkitCoreCID, &rv);
1999-08-31 11:36:02 +04:00
if (NS_SUCCEEDED(rv))
{
toolkit->ShowWindowWithArgs( urlstr, nsnull, withArgs );
}
}
}
rv = cmdLineArgs->GetCmdLineValue("-addressbook", &cmdResult);
if (NS_SUCCEEDED(rv))
{
if (cmdResult && (strcmp("1",cmdResult)==0))
1999-08-31 11:36:02 +04:00
OpenChromURL("chrome://addressbook/content/",height, width);
}
return NS_OK;
}
class nsPrefProfile
{
public:
nsPrefProfile() : profileService(NULL), prefs(NULL){};
nsresult Startup( nsICmdLineService* cmdLineArgs );
void Shutdown();
private:
nsIProfile *profileService;
nsIPref *prefs;
};
void nsPrefProfile::Shutdown()
{
1999-08-31 11:36:02 +04:00
/* Release the global preferences... */
if (prefs) {
prefs->SavePrefFile();
prefs->ShutDown();
nsServiceManager::ReleaseService(kPrefCID, prefs);
}
#if defined(NS_USING_PROFILES)
/* Release the global profile service... */
if (profileService) {
profileService->Shutdown();
nsServiceManager::ReleaseService(kProfileCID, profileService);
}
#endif // defined(NS_USING_PROFILES)
}
nsresult nsPrefProfile::Startup( nsICmdLineService* cmdLineArgs )
{
char* cmdResult = nsnull;
nsresult rv;
1999-08-31 11:36:02 +04:00
// initializations for profile manager
1999-04-16 02:45:43 +04:00
#if defined(NS_USING_PROFILES)
nsFileSpec currProfileDirSpec;
1999-04-10 10:41:59 +04:00
PRBool profileDirSet = PR_FALSE;
1999-06-12 05:03:01 +04:00
char *profstr = nsnull;
int numProfiles = 0;
1999-08-31 11:36:02 +04:00
// get and start the ProfileManager service
1999-04-10 10:41:59 +04:00
rv = nsServiceManager::GetService(kProfileCID,
nsIProfile::GetIID(),
1999-04-16 02:45:43 +04:00
(nsISupports **)&profileService);
1999-04-10 10:41:59 +04:00
if (NS_FAILED(rv)) {
return NS_ERROR_FAILURE;
}
1999-04-16 02:45:43 +04:00
profileService->Startup(nsnull);
profileService->GetProfileCount(&numProfiles);
printf("Profile Manager : Command Line Options : Begin\n");
1999-08-31 11:36:02 +04:00
// check for command line arguments for profile manager
//
// -P command line option works this way:
// apprunner -P profilename
// runs the app using the profile <profilename>
// remembers profile for next time
1999-04-10 10:41:59 +04:00
rv = cmdLineArgs->GetCmdLineValue("-P", &cmdResult);
1999-08-31 11:36:02 +04:00
if (NS_SUCCEEDED(rv))
{
1999-04-10 10:41:59 +04:00
if (cmdResult) {
1999-04-16 02:45:43 +04:00
char* currProfileName = cmdResult;
1999-04-10 10:41:59 +04:00
fprintf(stderr, "ProfileName : %s\n", cmdResult);
1999-04-16 02:45:43 +04:00
rv = profileService->GetProfileDir(currProfileName, &currProfileDirSpec);
printf("** ProfileDir : %s **\n", currProfileDirSpec.GetCString());
1999-04-10 10:41:59 +04:00
1999-04-16 02:45:43 +04:00
if (NS_SUCCEEDED(rv)){
1999-04-10 10:41:59 +04:00
profileDirSet = PR_TRUE;
}
}
1999-08-31 11:36:02 +04:00
}
1999-04-10 10:41:59 +04:00
// -CreateProfile command line option works this way:
// apprunner -CreateProfile profilename
// creates a new profile named <profilename> and sets the directory to your CWD
// runs app using that profile
// remembers profile for next time
// - OR -
// apprunner -CreateProfile "profilename profiledir"
// creates a new profile named <profilename> and sets the directory to <profiledir>
// runs app using that profile
// remembers profile for next time
rv = cmdLineArgs->GetCmdLineValue("-CreateProfile", &cmdResult);
1999-08-31 11:36:02 +04:00
if (NS_SUCCEEDED(rv))
{
1999-04-10 10:41:59 +04:00
if (cmdResult) {
1999-04-16 02:45:43 +04:00
char* currProfileName = strtok(cmdResult, " ");
1999-08-31 11:36:02 +04:00
char* currProfileDirString = strtok(NULL, " ");
1999-04-10 10:41:59 +04:00
1999-04-16 02:45:43 +04:00
if (currProfileDirString)
1999-08-31 11:36:02 +04:00
currProfileDirSpec = currProfileDirString;
1999-04-16 02:45:43 +04:00
else
1999-06-12 05:03:01 +04:00
{
// No directory name provided. Get File Locator
nsIFileLocator* locator = nsnull;
rv = nsServiceManager::GetService(kFileLocatorCID, nsIFileLocator::GetIID(), (nsISupports**)&locator);
if (NS_FAILED(rv))
1999-08-31 11:36:02 +04:00
return rv;
if (!locator)
return NS_ERROR_FAILURE;
1999-06-12 05:03:01 +04:00
// Get current profile, make the new one a sibling...
nsIFileSpec* spec;
rv = locator->GetFileLocation(nsSpecialFileSpec::App_UserProfileDirectory50, &spec);
if (NS_FAILED(rv) || !spec)
1999-06-12 05:03:01 +04:00
return NS_ERROR_FAILURE;
spec->GetFileSpec(&currProfileDirSpec);
NS_RELEASE(spec);
1999-06-12 05:03:01 +04:00
currProfileDirSpec.SetLeafName(currProfileName);
if (locator)
{
rv = locator->ForgetProfileDir();
nsServiceManager::ReleaseService(kFileLocatorCID, locator);
}
}
1999-04-10 10:41:59 +04:00
fprintf(stderr, "profileName & profileDir are: %s\n", cmdResult);
1999-04-16 02:45:43 +04:00
profileService->SetProfileDir(currProfileName, currProfileDirSpec);
1999-08-31 11:36:02 +04:00
profileDirSet = PR_TRUE;
1999-04-10 10:41:59 +04:00
}
1999-08-31 11:36:02 +04:00
}
// Start Profile Manager
rv = cmdLineArgs->GetCmdLineValue("-ProfileManager", &cmdResult);
1999-08-31 11:36:02 +04:00
if (NS_SUCCEEDED(rv))
{
if (cmdResult) {
profstr = "resource:/res/profile/pm.xul";
1999-06-12 05:03:01 +04:00
}
1999-08-31 11:36:02 +04:00
}
1999-06-12 05:03:01 +04:00
// Start Profile Wizard
rv = cmdLineArgs->GetCmdLineValue("-ProfileWizard", &cmdResult);
1999-08-31 11:36:02 +04:00
if (NS_SUCCEEDED(rv))
{
1999-06-12 05:03:01 +04:00
if (cmdResult) {
profstr = "resource:/res/profile/cpw.xul";
}
1999-08-31 11:36:02 +04:00
}
1999-06-12 05:03:01 +04:00
// Start Migaration activity
rv = cmdLineArgs->GetCmdLineValue("-installer", &cmdResult);
1999-08-31 11:36:02 +04:00
if (NS_SUCCEEDED(rv))
{
1999-06-12 05:03:01 +04:00
if (cmdResult) {
#ifdef XP_PC
profileService->MigrateProfileInfo();
int num4xProfiles = 0;
profileService->Get4xProfileCount(&num4xProfiles);
if (num4xProfiles == 0 && numProfiles == 0) {
profstr = "resource:/res/profile/cpw.xul";
}
else if (num4xProfiles == 1) {
profileService->MigrateAllProfiles();
profileService->GetProfileCount(&numProfiles);
}
else if (num4xProfiles > 1) {
profstr = "resource:/res/profile/pm.xul";
}
1999-06-12 05:03:01 +04:00
#endif
}
1999-08-31 11:36:02 +04:00
}
1999-06-12 05:03:01 +04:00
1999-08-31 11:36:02 +04:00
printf("Profile Manager : Command Line Options : End\n");
#endif // defined(NS_USING_PROFILES)
1999-04-10 10:41:59 +04:00
/*
* Load preferences, causing them to be initialized, and hold a reference to them.
1999-04-10 10:41:59 +04:00
*/
rv = nsServiceManager::GetService(kPrefCID,
nsIPref::GetIID(),
(nsISupports **)&prefs);
1999-04-16 02:45:43 +04:00
if (NS_FAILED(rv))
1999-08-31 11:36:02 +04:00
return rv;
1999-06-12 05:03:01 +04:00
#if defined (NS_USING_PROFILES)
1999-08-31 11:36:02 +04:00
printf("Profile Manager : Profile Wizard and Manager activites : Begin\n");
1999-06-12 05:03:01 +04:00
/*
* If default profile is current, launch CreateProfile Wizard.
*/
if (!profileDirSet)
{
nsIURI* profURL = nsnull;
1999-06-12 05:03:01 +04:00
PRInt32 profWinWidth = 615;
PRInt32 profWinHeight = 500;
nsIAppShellService* profAppShell;
/*
* Create the Application Shell instance...
*/
rv = nsServiceManager::GetService(kAppShellServiceCID,
1999-08-31 11:36:02 +04:00
nsIAppShellService::GetIID(),
(nsISupports**)&profAppShell);
if (NS_FAILED(rv))
return rv;
1999-06-12 05:03:01 +04:00
char *isPregInfoSet = nsnull;
profileService->IsPregCookieSet(&isPregInfoSet);
PRBool pregPref = PR_FALSE;
rv = prefs->GetBoolPref(PREG_PREF, &pregPref);
1999-06-12 05:03:01 +04:00
if (!profstr)
{
// This means that there was no command-line argument to force
// profile UI to come up. But we need the UI anyway if there
// are no profiles yet, or if there is more than one.
if (numProfiles == 0)
{
if (pregPref)
profstr = "resource:/res/profile/cpwPreg.xul";
else
profstr = "resource:/res/profile/cpw.xul";
}
else if (numProfiles > 1)
profstr = "resource:/res/profile/pm.xul";
1999-06-12 05:03:01 +04:00
}
// Provide Preg information
if (pregPref && (PL_strcmp(isPregInfoSet, "true") != 0))
profstr = "resource:/res/profile/cpwPreg.xul";
1999-06-12 05:03:01 +04:00
if (profstr)
{
#ifdef NECKO
rv = NS_NewURI(&profURL, profstr);
#else
1999-06-12 05:03:01 +04:00
rv = NS_NewURL(&profURL, profstr);
#endif
1999-06-12 05:03:01 +04:00
if (NS_FAILED(rv)) {
return rv;
1999-06-12 05:03:01 +04:00
}
nsCOMPtr<nsIWebShellWindow> profWindow;
rv = profAppShell->CreateTopLevelWindow(nsnull, profURL,
1999-08-31 11:36:02 +04:00
PR_TRUE, PR_TRUE, NS_CHROME_ALL_CHROME,
nsnull, profWinWidth, profWinHeight,
getter_AddRefs(profWindow));
1999-06-12 05:03:01 +04:00
NS_RELEASE(profURL);
if (NS_FAILED(rv))
{
return rv;
1999-06-12 05:03:01 +04:00
}
/*
* Start up the main event loop...
*/
rv = profAppShell->Run();
}
if (pregPref && PL_strcmp(isPregInfoSet, "true") != 0)
profileService->ProcessPRegCookie();
1999-06-12 05:03:01 +04:00
}
1999-08-31 11:36:02 +04:00
printf("Profile Manager : Profile Wizard and Manager activites : End\n");
1999-06-12 05:03:01 +04:00
#endif
1999-06-15 09:17:56 +04:00
// Now we have the right profile, read the user-specific prefs.
prefs->ReadUserPrefs();
return NS_OK;
}
static nsresult HandleBrowserStartup( nsICmdLineService* cmdLineArgs)
{
char* cmdResult = nsnull;
nsString withArgs;
nsresult rv;
PRInt32 height = NS_SIZETOCONTENT;
PRInt32 width = NS_SIZETOCONTENT;
// Get the value of -width option
char* tempString = NULL;
rv = cmdLineArgs->GetCmdLineValue("-width", &tempString);
if (NS_FAILED(rv))
1999-08-31 11:36:02 +04:00
return rv;
if (tempString)
1999-08-31 11:36:02 +04:00
PR_sscanf(tempString, "%d", &width);
// Get the value of -height option
rv = cmdLineArgs->GetCmdLineValue("-height", &tempString);
if (NS_FAILED(rv))
return rv;
if (tempString)
PR_sscanf(tempString, "%d", &height);
1999-08-31 11:36:02 +04:00
rv = cmdLineArgs->GetCmdLineValue("-chrome", &cmdResult);
if ( NS_SUCCEEDED(rv) && cmdResult )
OpenChromURL(cmdResult, height, width);
return NS_OK;
}
// This should be done by app shell enumeration someday
static nsresult DoCommandLines( nsICmdLineService* cmdLine )
{
nsresult rv;
rv = HandleEditorStartup( cmdLine );
if ( NS_FAILED( rv ) )
return rv;
rv = HandleMailStartup( cmdLine );
if ( NS_FAILED( rv ) )
return rv;
rv = HandleBrowserStartup( cmdLine );
return rv;
}
static nsresult Ensure1Window( nsICmdLineService* cmdLineArgs)
{
nsresult rv;
NS_WITH_SERVICE(nsIWindowMediator, windowMediator, kWindowMediatorCID, &rv);
nsCOMPtr<nsISimpleEnumerator> windowEnumerator;
1999-08-31 11:36:02 +04:00
if (NS_SUCCEEDED(windowMediator->GetEnumerator(nsnull, getter_AddRefs(windowEnumerator))))
{
PRBool more;
1999-08-31 11:36:02 +04:00
windowEnumerator->HasMoreElements(&more);
if ( !more )
{
// No window exists so lets create a browser one
PRInt32 height = NS_SIZETOCONTENT;
PRInt32 width = NS_SIZETOCONTENT;
1999-08-31 11:36:02 +04:00
// Get the value of -width option
char* tempString = NULL;
rv = cmdLineArgs->GetCmdLineValue("-width", &tempString);
if (NS_FAILED(rv))
return rv;
if (tempString)
PR_sscanf(tempString, "%d", &width);
1999-08-31 11:36:02 +04:00
// Get the value of -height option
rv = cmdLineArgs->GetCmdLineValue("-height", &tempString);
if (NS_FAILED(rv))
return rv;
1999-08-31 11:36:02 +04:00
if (tempString)
PR_sscanf(tempString, "%d", &height);
1999-08-31 11:36:02 +04:00
rv = OpenChromURL("chrome://navigator/content/", height, width );
}
}
return rv;
}
static nsPrefProfile prefSingleton;
static nsresult main1(int argc, char* argv[])
{
nsresult rv;
#ifndef XP_MAC
// Unbuffer debug output (necessary for automated QA performance scripts).
setbuf( stdout, 0 );
#endif
NS_VERIFY(NS_SUCCEEDED(nsIThread::SetMainThread()), "couldn't set main thread");
1999-06-15 09:17:56 +04:00
InitFullCircle();
1999-08-31 11:36:02 +04:00
#if XP_MAC
stTSMCloser tsmCloser;
#endif
// XXX: This call will be replaced by a registry initialization...
NS_SetupRegistry_1();
// Start up the core services:
1999-08-31 11:36:02 +04:00
// Initialize the cmd line service
NS_WITH_SERVICE(nsICmdLineService, cmdLineArgs, kCmdLineServiceCID, &rv);
if (NS_FAILED(rv)) {
fprintf(stderr, "Could not obtain CmdLine processing service\n");
return rv;
}
rv = cmdLineArgs->Initialize(argc, argv);
if (rv == NS_ERROR_INVALID_ARG) {
PrintUsage();
return rv;
}
1999-08-31 11:36:02 +04:00
// Kick off appcores
NS_WITH_SERVICE(nsIDOMAppCoresManager, appCoresManager, kAppCoresManagerCID, &rv);
1999-08-31 11:36:02 +04:00
if (NS_SUCCEEDED(rv)){
if (appCoresManager->Startup() != NS_OK) {
appCoresManager->Shutdown();
1999-08-31 11:36:02 +04:00
nsServiceManager::ReleaseService(kAppCoresManagerCID, appCoresManager);
}
}
// Create the Application Shell instance...
NS_WITH_SERVICE(nsIAppShellService, appShell, kAppShellServiceCID, &rv);
if (NS_FAILED(rv)) {
1999-08-31 11:36:02 +04:00
return rv;
}
rv = appShell->Initialize( cmdLineArgs );
if ( NS_FAILED(rv) )
return rv;
prefSingleton.Startup( cmdLineArgs );
if ( CheckAndRunPrefs(cmdLineArgs) )
return NS_OK;
#ifdef NECKO
// fire up an instance of the cookie manager.
// I'm doing this using the serviceManager for convenience's sake.
// Presumably an application will init it's own cookie service a
// different way (this way works too though).
NS_WITH_SERVICE(nsICookieService, cookieService, kCookieServiceCID, &rv);
#ifndef XP_MAC
1999-08-31 11:36:02 +04:00
// Until the cookie manager actually exists on the Mac we don't want to bail here
if (NS_FAILED(rv))
1999-08-31 11:36:02 +04:00
return rv;
#endif // XP_MAC
#endif // NECKO
// Enumerate AppShellComponenets
appShell->EnumerateAndInitializeComponents();
// This will go away once Components are handling there own commandlines
rv = DoCommandLines( cmdLineArgs );
if ( NS_FAILED(rv) )
1999-08-31 11:36:02 +04:00
return rv;
1999-08-31 11:36:02 +04:00
// Make sure there exists at least 1 window.
rv = Ensure1Window( cmdLineArgs );
1999-08-31 11:36:02 +04:00
if (NS_FAILED(rv))
return rv;
1999-02-19 00:53:31 +03:00
// Fire up the walletService
NS_WITH_SERVICE(nsIWalletService, walletService, kWalletServiceCID, &rv);
if ( NS_SUCCEEDED(rv) )
walletService->WALLET_FetchFromNetCenter();
NS_HideSplashScreen();
// Start main event loop
rv = appShell->Run();
1998-12-03 04:37:46 +03:00
/*
* Shut down the Shell instance... This is done even if the Run(...)
1998-12-03 04:37:46 +03:00
* method returned an error.
*/
(void) appShell->Shutdown();
return rv ;
1998-12-03 04:37:46 +03:00
}
int main(int argc, char* argv[])
{
1999-08-31 11:36:02 +04:00
nsresult rv;
1999-08-31 11:36:02 +04:00
if( !NS_CanRun() )
return 1;
NS_ShowSplashScreen();
rv = NS_InitXPCOM(NULL);
NS_ASSERTION( NS_SUCCEEDED(rv), "NS_InitXPCOM failed" );
1999-08-31 11:36:02 +04:00
nsresult result = main1( argc, argv );
prefSingleton.Shutdown();
1999-08-31 11:36:02 +04:00
// calling this explicitly will cut down on a large number of leaks we're
// seeing:
1999-08-31 11:36:02 +04:00
#if 0
if ( unsigned long count = NS_TotalWebShellsInExistence() )
{
printf("!!!Warning: there are still %l instances of nsWebShell outstanding. OK?\n", count);
char cc;
scanf("%c", &cc);
}
#endif
1999-08-31 11:36:02 +04:00
rv = NS_ShutdownXPCOM( NULL );
NS_ASSERTION(NS_SUCCEEDED(rv), "NS_ShutdownXPCOM failed");
return TranslateReturnValue( result );
}