1998-12-03 01:37:46 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.0 (the "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"
|
1999-03-09 09:44:27 +00:00
|
|
|
#include "nsIComponentManager.h"
|
1998-12-03 01:37:46 +00:00
|
|
|
#include "nsIURL.h"
|
1999-06-18 17:34:08 +00:00
|
|
|
#ifdef NECKO
|
1999-06-28 10:35:57 +00:00
|
|
|
#include "nsNeckoUtil.h"
|
1999-06-18 17:34:08 +00:00
|
|
|
#endif // NECKO
|
1998-12-03 01:37:46 +00:00
|
|
|
#include "nsIWidget.h"
|
1999-07-27 06:34:25 +00:00
|
|
|
#include "nsIBrowserWindow.h"
|
1999-06-19 21:53:00 +00:00
|
|
|
#include "nsIWebShellWindow.h"
|
1999-03-16 07:15:37 +00:00
|
|
|
#include "nsIPref.h"
|
1998-12-03 01:37:46 +00:00
|
|
|
#include "plevent.h"
|
1999-04-15 22:45:43 +00:00
|
|
|
#include "prmem.h"
|
1998-12-03 01:37:46 +00:00
|
|
|
|
|
|
|
#include "nsIAppShell.h"
|
1999-01-22 22:22:33 +00:00
|
|
|
#include "nsICmdLineService.h"
|
1999-06-13 03:30:38 +00:00
|
|
|
#include "nsIThread.h"
|
1998-12-03 01:37:46 +00:00
|
|
|
#include "nsIAppShellService.h"
|
1999-05-05 05:14:16 +00:00
|
|
|
#include "nsIAppShellComponent.h"
|
1999-01-21 07:29:53 +00:00
|
|
|
#include "nsAppShellCIDs.h"
|
1999-02-18 21:53:31 +00:00
|
|
|
#include "prprf.h"
|
1999-03-11 05:24:29 +00:00
|
|
|
#include "nsCRT.h"
|
1999-04-10 06:41:59 +00:00
|
|
|
#include "nsFileSpec.h"
|
1999-06-15 05:51:29 +00:00
|
|
|
#include "nsIFileSpec.h"
|
1999-04-15 22:45:43 +00:00
|
|
|
#include "nsIFileLocator.h"
|
1999-06-09 20:44:04 +00:00
|
|
|
#include "nsIPrefWindow.h"
|
1999-04-15 22:45:43 +00:00
|
|
|
#include "nsFileLocations.h"
|
|
|
|
#include "nsFileStream.h"
|
|
|
|
#include "nsSpecialSystemDirectory.h"
|
1999-10-07 02:48:27 +00:00
|
|
|
#include "nsIWalletService.h"
|
1999-08-27 12:32:19 +00:00
|
|
|
#include "nsIWebShell.h"
|
1999-10-07 02:48:27 +00:00
|
|
|
#include "nsICookieService.h"
|
1999-08-31 02:49:12 +00:00
|
|
|
#include "nsIWindowMediator.h"
|
1999-10-18 21:33:29 +00:00
|
|
|
#include "nsIDOMWindow.h"
|
1999-08-31 02:49:12 +00:00
|
|
|
static NS_DEFINE_IID(kIWindowMediatorIID,NS_IWINDOWMEDIATOR_IID);
|
|
|
|
static NS_DEFINE_CID(kWindowMediatorCID, NS_WINDOWMEDIATOR_CID);
|
1999-10-07 02:48:27 +00:00
|
|
|
static NS_DEFINE_IID(kWalletServiceCID, NS_WALLETSERVICE_CID);
|
|
|
|
static NS_DEFINE_IID(kIWalletServiceIID, NS_IWALLETSERVICE_IID);
|
|
|
|
static NS_DEFINE_CID(kCookieServiceCID, NS_COOKIESERVICE_CID);
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-09-16 06:50:17 +00:00
|
|
|
#define PREF_GENERAL_STARTUP_BROWSER "general.startup.browser"
|
|
|
|
#define PREF_GENERAL_STARTUP_MAIL "general.startup.mail"
|
|
|
|
#define PREF_GENERAL_STARTUP_NEWS "general.startup.news"
|
|
|
|
#define PREF_GENERAL_STARTUP_EDITOR "general.startup.editor"
|
|
|
|
#define PREF_GENERAL_STARTUP_CALENDAR "general.startup.calendar"
|
1999-07-19 21:19:13 +00:00
|
|
|
|
1999-08-25 05:26:25 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
#include "prlog.h"
|
|
|
|
#endif
|
1999-04-10 06:41:59 +00:00
|
|
|
|
1999-04-27 00:11:44 +00:00
|
|
|
#ifdef MOZ_FULLCIRCLE
|
|
|
|
#include "fullsoft.h"
|
|
|
|
#endif
|
|
|
|
|
1999-04-10 06:41:59 +00:00
|
|
|
// header file for profile manager
|
1999-04-15 22:45:43 +00:00
|
|
|
#include "nsIProfile.h"
|
1998-12-03 01:37:46 +00:00
|
|
|
|
1999-01-27 02:11:56 +00:00
|
|
|
#if defined(XP_MAC)
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-01-27 02:11:56 +00:00
|
|
|
#include "macstdlibextras.h"
|
1999-05-28 05:06:54 +00:00
|
|
|
#include <TextServices.h>
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-08-31 07:36:02 +00: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.
|
1999-01-27 02:11:56 +00:00
|
|
|
static struct MacInitializer { MacInitializer() { InitializeMacToolbox(); } } gInitializer;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
class stTSMCloser
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
stTSMCloser()
|
1999-08-31 07:36:02 +00:00
|
|
|
{
|
|
|
|
// TSM is initialized in InitializeMacToolbox
|
|
|
|
};
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
~stTSMCloser()
|
|
|
|
{
|
|
|
|
(void)CloseTSMAwareApplication();
|
|
|
|
}
|
|
|
|
};
|
1999-01-27 02:11:56 +00:00
|
|
|
#endif // XP_MAC
|
|
|
|
|
1998-12-03 01:37:46 +00:00
|
|
|
/* Define Class IDs */
|
1999-06-23 00:24:02 +00:00
|
|
|
static NS_DEFINE_CID(kAppShellServiceCID, NS_APPSHELL_SERVICE_CID);
|
|
|
|
static NS_DEFINE_CID(kCmdLineServiceCID, NS_COMMANDLINE_SERVICE_CID);
|
1999-03-16 07:15:37 +00:00
|
|
|
static NS_DEFINE_CID(kPrefCID, NS_PREF_CID);
|
1999-04-15 22:45:43 +00:00
|
|
|
static NS_DEFINE_CID(kFileLocatorCID, NS_FILELOCATOR_CID);
|
1999-04-10 06:41:59 +00:00
|
|
|
static NS_DEFINE_CID(kProfileCID, NS_PROFILE_CID);
|
|
|
|
|
1999-02-03 16:50:05 +00:00
|
|
|
/*********************************************
|
|
|
|
AppCores
|
|
|
|
*********************************************/
|
|
|
|
|
|
|
|
#include "nsAppCoresCIDs.h"
|
1999-02-16 16:46:19 +00:00
|
|
|
#include "nsIDOMAppCoresManager.h"
|
1999-06-23 00:24:02 +00:00
|
|
|
static NS_DEFINE_CID(kAppCoresManagerCID, NS_APPCORESMANAGER_CID);
|
1999-08-31 02:49:12 +00:00
|
|
|
#include "nsNativeAppSupport.h"
|
1999-02-03 16:50:05 +00:00
|
|
|
/*********************************************/
|
1999-08-31 02:49:12 +00:00
|
|
|
// 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 01:37:46 +00:00
|
|
|
|
1999-09-03 23:41:26 +00:00
|
|
|
PRBool NS_CanRun()
|
1999-08-31 02:49:12 +00:00
|
|
|
{
|
1999-09-03 23:41:26 +00:00
|
|
|
return PR_TRUE;
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
|
|
|
#endif
|
1998-12-03 01:37:46 +00: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;
|
|
|
|
}
|
|
|
|
|
1999-09-03 23:41:26 +00:00
|
|
|
#ifdef XP_MAC
|
|
|
|
#include "nsCommandLineServiceMac.h"
|
|
|
|
#endif
|
1998-12-03 01:37:46 +00:00
|
|
|
|
1999-01-05 10:39:04 +00:00
|
|
|
extern "C" void NS_SetupRegistry_1();
|
1998-12-03 01:37:46 +00:00
|
|
|
|
1999-01-27 02:11:56 +00:00
|
|
|
static void
|
1999-01-22 22:22:33 +00:00
|
|
|
PrintUsage(void)
|
|
|
|
{
|
1999-08-31 07:36:02 +00:00
|
|
|
fprintf(stderr, "Usage: apprunner <url>\n");
|
|
|
|
fprintf(stderr, "\t<url>: a fully defined url string like http:// etc..\n");
|
1999-01-22 22:22:33 +00:00
|
|
|
}
|
1998-12-03 01:37:46 +00:00
|
|
|
|
1999-06-18 22:09:07 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
|
|
|
static PRBool CheckAndRunPrefs(nsICmdLineService* cmdLineArgs)
|
1999-08-31 07:36:02 +00:00
|
|
|
//----------------------------------------------------------------------------------------
|
1999-06-18 22:09:07 +00:00
|
|
|
{
|
1999-08-31 02:49:12 +00: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.
|
1999-06-18 22:09:07 +00:00
|
|
|
char* cmdResult;
|
|
|
|
nsresult rv = cmdLineArgs->GetCmdLineValue("-pref", &cmdResult);
|
1999-09-16 06:50:17 +00:00
|
|
|
if (NS_SUCCEEDED(rv) && cmdResult && (PL_strcmp("1",cmdResult) == 0))
|
1999-06-18 22:09:07 +00:00
|
|
|
{
|
|
|
|
nsIPrefWindow* prefWindow;
|
|
|
|
rv = nsComponentManager::CreateInstance(
|
1999-08-31 07:36:02 +00: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;
|
1999-06-18 22:09:07 +00:00
|
|
|
}
|
|
|
|
return PR_FALSE;
|
|
|
|
} // CheckandRunPrefs
|
1998-12-03 01:37:46 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
static void InitFullCircle()
|
1998-12-03 01:37:46 +00:00
|
|
|
{
|
1999-08-31 07:36:02 +00:00
|
|
|
// initialization for Full Circle
|
1999-08-31 02:49:12 +00:00
|
|
|
#ifdef MOZ_FULLCIRCLE
|
1999-08-31 07:36:02 +00:00
|
|
|
FC_ERROR fcstatus = FC_ERROR_FAILED;
|
|
|
|
fcstatus = FCInitialize();
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-08-31 07:36:02 +00: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-02 21:37:48 +00:00
|
|
|
#endif
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
|
|
|
|
1999-10-18 21:33:29 +00:00
|
|
|
static nsresult OpenWindow( const char*urlstr, const PRUnichar *args ) {
|
|
|
|
nsresult rv;
|
|
|
|
NS_WITH_SERVICE(nsIAppShellService, appShellService, kAppShellServiceCID, &rv)
|
|
|
|
if ( NS_SUCCEEDED( rv ) ) {
|
|
|
|
nsCOMPtr<nsIDOMWindow> hiddenWindow;
|
|
|
|
JSContext *jsContext;
|
|
|
|
rv = appShellService->GetHiddenWindowAndJSContext( getter_AddRefs( hiddenWindow ),
|
|
|
|
&jsContext );
|
|
|
|
if ( NS_SUCCEEDED( rv ) ) {
|
|
|
|
void *stackPtr;
|
|
|
|
jsval *argv = JS_PushArguments( jsContext,
|
|
|
|
&stackPtr,
|
|
|
|
"sssW",
|
|
|
|
urlstr,
|
|
|
|
"_blank",
|
|
|
|
"chrome,dialog=no,all",
|
|
|
|
args );
|
|
|
|
if( argv ) {
|
|
|
|
nsCOMPtr<nsIDOMWindow> newWindow;
|
|
|
|
rv = hiddenWindow->OpenDialog( jsContext,
|
|
|
|
argv,
|
|
|
|
4,
|
|
|
|
getter_AddRefs( newWindow ) );
|
|
|
|
JS_PopArguments( jsContext, stackPtr );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
1999-09-16 06:50:17 +00:00
|
|
|
static nsresult HandleEditorStartup( nsICmdLineService* cmdLineArgs, nsIPref *prefs, PRBool heedGeneralStartupPrefs)
|
1999-08-31 02:49:12 +00:00
|
|
|
{
|
|
|
|
char* cmdResult = nsnull;
|
|
|
|
char * urlstr=nsnull;
|
|
|
|
nsString withArgs;
|
|
|
|
nsresult rv;
|
1999-09-16 06:50:17 +00:00
|
|
|
PRBool forceLaunchEditor = PR_FALSE;
|
|
|
|
|
|
|
|
if (heedGeneralStartupPrefs) {
|
|
|
|
prefs->GetBoolPref(PREF_GENERAL_STARTUP_EDITOR,&forceLaunchEditor);
|
|
|
|
}
|
1999-05-04 23:37:01 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-edit", &cmdResult);
|
1999-08-31 07:36:02 +00:00
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
{
|
1999-09-16 06:50:17 +00:00
|
|
|
if (forceLaunchEditor || (cmdResult && (PL_strcmp("1",cmdResult)==0))) {
|
1999-08-31 07:36:02 +00:00
|
|
|
urlstr = "chrome://editor/content/";
|
1999-10-20 01:03:39 +00:00
|
|
|
withArgs = "about:blank";
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-10-18 21:33:29 +00:00
|
|
|
OpenWindow( urlstr, withArgs.GetUnicode() );
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
1999-10-18 21:33:29 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
// Check for -editor -- this will eventually go away
|
|
|
|
if (nsnull == urlstr)
|
|
|
|
{
|
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-editor", &cmdResult);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
{
|
1999-09-16 06:50:17 +00:00
|
|
|
if (cmdResult && (PL_strcmp("1",cmdResult)==0)) {
|
1999-08-31 02:49:12 +00:00
|
|
|
printf(" -editor no longer supported, use -edit instead!\n");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
1999-04-15 22:45:43 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-01-22 22:22:33 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
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 07:36:02 +00:00
|
|
|
PR_TRUE, PR_TRUE, NS_CHROME_ALL_CHROME,
|
|
|
|
nsnull, width, height,
|
|
|
|
getter_AddRefs(newWindow));
|
|
|
|
NS_IF_RELEASE( url );
|
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
1999-02-18 21:53:31 +00:00
|
|
|
|
1999-09-16 06:50:17 +00:00
|
|
|
static nsresult HandleMailStartup( nsICmdLineService* cmdLineArgs, nsIPref *prefs, PRBool heedGeneralStartupPrefs)
|
1999-08-31 02:49:12 +00:00
|
|
|
{
|
|
|
|
char* cmdResult = nsnull;
|
|
|
|
char * urlstr=nsnull;
|
|
|
|
nsString withArgs;
|
|
|
|
nsresult rv;
|
1999-09-16 06:50:17 +00:00
|
|
|
PRBool forceLaunchMail = PR_FALSE;
|
|
|
|
PRBool forceLaunchNews = PR_FALSE;
|
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
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 07:36:02 +00:00
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
if (tempString)
|
1999-08-31 07:36:02 +00:00
|
|
|
PR_sscanf(tempString, "%d", &width);
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
// 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-06-16 01:33:02 +00:00
|
|
|
|
1999-09-16 06:50:17 +00:00
|
|
|
if (heedGeneralStartupPrefs) {
|
|
|
|
prefs->GetBoolPref(PREF_GENERAL_STARTUP_MAIL,&forceLaunchMail);
|
|
|
|
}
|
1999-08-31 02:49:12 +00:00
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-mail", &cmdResult);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
{
|
1999-09-16 06:50:17 +00:00
|
|
|
if (forceLaunchMail || (cmdResult && (PL_strcmp("1",cmdResult)==0)))
|
1999-08-31 02:49:12 +00:00
|
|
|
{
|
1999-08-31 07:36:02 +00:00
|
|
|
OpenChromURL("chrome://messenger/content/", height, width);
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
}
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
1999-03-09 00:54:07 +00:00
|
|
|
|
1999-07-19 22:49:24 +00:00
|
|
|
|
1999-09-16 06:50:17 +00:00
|
|
|
if (heedGeneralStartupPrefs) {
|
|
|
|
prefs->GetBoolPref(PREF_GENERAL_STARTUP_NEWS,&forceLaunchNews);
|
|
|
|
}
|
1999-08-31 02:49:12 +00:00
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-news", &cmdResult);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
1999-06-03 18:35:04 +00:00
|
|
|
{
|
1999-09-16 06:50:17 +00:00
|
|
|
if (forceLaunchNews || (cmdResult && (PL_strcmp("1",cmdResult)==0)))
|
1999-08-31 07:36:02 +00:00
|
|
|
OpenChromURL("chrome://messenger/content/", height, width);
|
1999-06-03 18:35:04 +00:00
|
|
|
}
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-compose", &cmdResult);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
{
|
1999-09-16 06:50:17 +00:00
|
|
|
if (cmdResult && (PL_strcmp("1",cmdResult)==0))
|
1999-08-31 02:49:12 +00:00
|
|
|
{
|
|
|
|
urlstr = "chrome://messengercompose/content/";
|
1999-10-20 01:03:39 +00:00
|
|
|
withArgs = "about:blank";
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-10-18 21:33:29 +00:00
|
|
|
OpenWindow( urlstr, withArgs.GetUnicode() );
|
1999-08-31 07:36:02 +00:00
|
|
|
}
|
|
|
|
}
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-addressbook", &cmdResult);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
{
|
1999-09-16 06:50:17 +00:00
|
|
|
if (cmdResult && (PL_strcmp("1",cmdResult)==0))
|
1999-08-31 07:36:02 +00:00
|
|
|
OpenChromURL("chrome://addressbook/content/",height, width);
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
1999-04-27 00:11:44 +00:00
|
|
|
|
1999-09-16 06:50:17 +00:00
|
|
|
static nsresult HandleBrowserStartup( nsICmdLineService* cmdLineArgs, nsIPref *prefs, PRBool heedGeneralStartupPrefs)
|
1999-08-31 02:49:12 +00:00
|
|
|
{
|
|
|
|
char* cmdResult = nsnull;
|
|
|
|
|
|
|
|
nsString withArgs;
|
|
|
|
nsresult rv;
|
1999-09-16 06:50:17 +00:00
|
|
|
PRBool forceLaunchBrowser = PR_FALSE;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
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 07:36:02 +00:00
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
if (tempString)
|
1999-08-31 07:36:02 +00:00
|
|
|
PR_sscanf(tempString, "%d", &width);
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
|
|
|
|
// 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-09-16 06:50:17 +00:00
|
|
|
if (heedGeneralStartupPrefs) {
|
|
|
|
prefs->GetBoolPref(PREF_GENERAL_STARTUP_BROWSER,&forceLaunchBrowser);
|
|
|
|
}
|
1999-08-31 07:36:02 +00:00
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-chrome", &cmdResult);
|
1999-09-16 06:50:17 +00:00
|
|
|
if (forceLaunchBrowser) {
|
|
|
|
rv = OpenChromURL("chrome://navigator/content/", height, width );
|
|
|
|
}
|
|
|
|
else if (NS_SUCCEEDED(rv) && cmdResult) {
|
|
|
|
rv = OpenChromURL(cmdResult, height, width);
|
|
|
|
}
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-09-16 06:50:17 +00:00
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// This should be done by app shell enumeration someday
|
1999-09-16 06:50:17 +00:00
|
|
|
static nsresult DoCommandLines( nsICmdLineService* cmdLine, PRBool heedGeneralStartupPrefs )
|
1999-08-31 02:49:12 +00:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
1999-09-16 06:50:17 +00:00
|
|
|
NS_WITH_SERVICE(nsIPref, prefs, kPrefCID, &rv);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
rv = HandleEditorStartup( cmdLine, prefs, heedGeneralStartupPrefs);
|
|
|
|
if ( NS_FAILED( rv ) ) return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-09-16 06:50:17 +00:00
|
|
|
rv = HandleMailStartup( cmdLine, prefs, heedGeneralStartupPrefs);
|
|
|
|
if ( NS_FAILED( rv ) ) return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-09-16 06:50:17 +00:00
|
|
|
rv = HandleBrowserStartup( cmdLine, prefs, heedGeneralStartupPrefs);
|
1999-08-31 02:49:12 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsresult Ensure1Window( nsICmdLineService* cmdLineArgs)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
NS_WITH_SERVICE(nsIWindowMediator, windowMediator, kWindowMediatorCID, &rv);
|
|
|
|
nsCOMPtr<nsISimpleEnumerator> windowEnumerator;
|
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
if (NS_SUCCEEDED(windowMediator->GetEnumerator(nsnull, getter_AddRefs(windowEnumerator))))
|
|
|
|
{
|
|
|
|
PRBool more;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-08-31 07:36:02 +00: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 02:49:12 +00:00
|
|
|
|
1999-08-31 07:36:02 +00: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 02:49:12 +00:00
|
|
|
|
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
// Get the value of -height option
|
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-height", &tempString);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
if (tempString)
|
|
|
|
PR_sscanf(tempString, "%d", &height);
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
rv = OpenChromURL("chrome://navigator/content/", height, width );
|
|
|
|
}
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
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 05:17:56 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
InitFullCircle();
|
|
|
|
|
1999-09-03 23:41:26 +00:00
|
|
|
#if XP_MAC
|
|
|
|
stTSMCloser tsmCloser;
|
|
|
|
|
|
|
|
InitializeMacCommandLine( argc, argv);
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
// XXX: This call will be replaced by a registry initialization...
|
|
|
|
NS_SetupRegistry_1();
|
|
|
|
|
|
|
|
// Start up the core services:
|
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
// Initialize the cmd line service
|
1999-08-31 02:49:12 +00:00
|
|
|
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 07:36:02 +00:00
|
|
|
|
|
|
|
// Kick off appcores
|
|
|
|
NS_WITH_SERVICE(nsIDOMAppCoresManager, appCoresManager, kAppCoresManagerCID, &rv);
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
if (NS_SUCCEEDED(rv)){
|
1999-08-31 02:49:12 +00:00
|
|
|
if (appCoresManager->Startup() != NS_OK) {
|
|
|
|
appCoresManager->Shutdown();
|
1999-08-31 07:36:02 +00:00
|
|
|
nsServiceManager::ReleaseService(kAppCoresManagerCID, appCoresManager);
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
|
|
|
}
|
1999-09-17 06:38:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("started appcores\n");
|
|
|
|
#endif
|
1999-10-12 22:20:28 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
// Create the Application Shell instance...
|
|
|
|
NS_WITH_SERVICE(nsIAppShellService, appShell, kAppShellServiceCID, &rv);
|
|
|
|
if (NS_FAILED(rv)) {
|
1999-08-31 07:36:02 +00:00
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
rv = appShell->Initialize( cmdLineArgs );
|
1999-10-05 04:12:58 +00:00
|
|
|
if ( NS_FAILED(rv) ) return rv;
|
|
|
|
|
1999-09-17 06:38:05 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
printf("initialized appshell\n");
|
|
|
|
#endif
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-09-10 01:05:31 +00:00
|
|
|
NS_WITH_SERVICE(nsIProfile, profileMgr, kProfileCID, &rv);
|
1999-10-05 04:12:58 +00:00
|
|
|
if ( NS_FAILED(rv) ) return rv;
|
|
|
|
|
|
|
|
rv = profileMgr->StartupWithArgs(cmdLineArgs);
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
return rv;
|
|
|
|
}
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-10-07 03:10:18 +00:00
|
|
|
// if we get here, and we don't have a current profile, return a failure so we will exit
|
1999-10-07 09:12:27 +00:00
|
|
|
// this can happen, if the user hits Cancel or Exit in the profile manager dialogs
|
1999-10-07 03:10:18 +00:00
|
|
|
char *currentProfileStr = nsnull;
|
|
|
|
rv = profileMgr->GetCurrentProfile(¤tProfileStr);
|
1999-10-07 09:01:23 +00:00
|
|
|
if (NS_FAILED(rv) || !currentProfileStr || (PL_strlen(currentProfileStr) == 0)) {
|
1999-10-07 03:10:18 +00:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
PR_FREEIF(currentProfileStr);
|
|
|
|
|
1999-10-12 22:20:28 +00:00
|
|
|
// rjc: now must explicitly call appshell's CreateHiddenWindow() function AFTER profile manager.
|
|
|
|
// if the profile manager ever switches to using nsIDOMWindow stuff, this might have to change
|
|
|
|
appShell->CreateHiddenWindow();
|
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
if ( CheckAndRunPrefs(cmdLineArgs) )
|
|
|
|
return NS_OK;
|
1999-10-07 02:48:27 +00:00
|
|
|
|
|
|
|
// 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);
|
|
|
|
// quiet the compiler
|
|
|
|
(void)cookieService;
|
|
|
|
#ifndef XP_MAC
|
|
|
|
// Until the cookie manager actually exists on the Mac we don't want to bail here
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
#endif // XP_MAC
|
1999-08-31 02:49:12 +00:00
|
|
|
|
|
|
|
// Enumerate AppShellComponenets
|
|
|
|
appShell->EnumerateAndInitializeComponents();
|
|
|
|
|
|
|
|
// This will go away once Components are handling there own commandlines
|
1999-09-16 06:50:17 +00:00
|
|
|
// if we have no command line arguments, we need to heed the
|
|
|
|
// "general.startup.*" prefs
|
|
|
|
// if we had no command line arguments, argc == 1.
|
|
|
|
rv = DoCommandLines( cmdLineArgs, (argc == 1) );
|
1999-08-31 02:49:12 +00:00
|
|
|
if ( NS_FAILED(rv) )
|
1999-08-31 07:36:02 +00:00
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
// Make sure there exists at least 1 window.
|
1999-08-31 02:49:12 +00:00
|
|
|
rv = Ensure1Window( cmdLineArgs );
|
1999-08-31 07:36:02 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
1999-10-07 02:48:27 +00:00
|
|
|
// Fire up the walletService
|
|
|
|
NS_WITH_SERVICE(nsIWalletService, walletService, kWalletServiceCID, &rv);
|
|
|
|
if ( NS_SUCCEEDED(rv) )
|
|
|
|
walletService->WALLET_FetchFromNetCenter();
|
1999-02-18 21:53:31 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
NS_HideSplashScreen();
|
|
|
|
// Start main event loop
|
1999-02-23 07:17:10 +00:00
|
|
|
rv = appShell->Run();
|
1999-10-06 20:52:50 +00:00
|
|
|
|
1998-12-03 01:37:46 +00:00
|
|
|
/*
|
1999-01-27 02:11:56 +00:00
|
|
|
* Shut down the Shell instance... This is done even if the Run(...)
|
1998-12-03 01:37:46 +00:00
|
|
|
* method returned an error.
|
|
|
|
*/
|
|
|
|
(void) appShell->Shutdown();
|
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
return rv ;
|
1998-12-03 01:37:46 +00:00
|
|
|
}
|
1999-07-28 08:42:53 +00:00
|
|
|
|
1999-09-16 11:30:18 +00:00
|
|
|
static
|
|
|
|
void DumpHelp(char *appname)
|
|
|
|
{
|
|
|
|
printf("%s: help info here\n", appname);
|
|
|
|
}
|
|
|
|
|
|
|
|
static
|
|
|
|
void DumpVersion(char *appname)
|
|
|
|
{
|
|
|
|
printf("%s: version info\n", appname);
|
|
|
|
}
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-09-18 01:43:35 +00:00
|
|
|
#ifdef DEBUG_ramiro
|
|
|
|
#define CRAWL_STACK_ON_SIGSEGV
|
|
|
|
#endif // DEBUG_ramiro
|
|
|
|
|
|
|
|
#ifdef CRAWL_STACK_ON_SIGSEGV
|
|
|
|
|
|
|
|
#include <signal.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include "nsTraceRefcnt.h"
|
|
|
|
|
|
|
|
extern "C" char * strsignal(int);
|
|
|
|
|
|
|
|
static char _progname[1024] = "huh?";
|
|
|
|
|
|
|
|
void
|
|
|
|
ah_crap_handler(int signum)
|
|
|
|
{
|
|
|
|
PR_CurrentThread();
|
|
|
|
|
|
|
|
printf("prog = %s\npid = %d\nsignal = %s\n",
|
|
|
|
_progname,
|
|
|
|
getpid(),
|
|
|
|
strsignal(signum));
|
|
|
|
|
|
|
|
char stack[4096];
|
|
|
|
|
|
|
|
nsTraceRefcnt::WalkTheStack(stack, sizeof(stack));
|
|
|
|
|
|
|
|
// Convert all spaces between symbols to newlines for readability
|
|
|
|
char * needle = "+0x";
|
|
|
|
char * haystack = stack;
|
|
|
|
char * sp = NULL;
|
|
|
|
|
|
|
|
while((sp = strstr(haystack,needle)))
|
|
|
|
{
|
|
|
|
char * ws = strchr(sp,' ');
|
|
|
|
|
|
|
|
if (ws)
|
|
|
|
{
|
|
|
|
*ws = '\n';
|
|
|
|
|
|
|
|
haystack = ws + 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
printf("stack = %s\n\n",stack);
|
|
|
|
|
|
|
|
printf("Sleeping for 5 minutes.\n");
|
|
|
|
printf("Type 'gdb %s %d' to attatch your debugger to this thread.\n",
|
|
|
|
_progname,
|
|
|
|
getpid());
|
|
|
|
|
|
|
|
sleep(300);
|
|
|
|
|
|
|
|
printf("Done sleeping...\n");
|
|
|
|
}
|
|
|
|
#endif // CRAWL_STACK_ON_SIGSEGV
|
|
|
|
|
1999-07-28 08:42:53 +00:00
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
1999-09-18 01:43:35 +00:00
|
|
|
#ifdef CRAWL_STACK_ON_SIGSEGV
|
|
|
|
strcpy(_progname,argv[0]);
|
|
|
|
signal(SIGSEGV, ah_crap_handler);
|
|
|
|
signal(SIGILL, ah_crap_handler);
|
|
|
|
signal(SIGABRT, ah_crap_handler);
|
|
|
|
#endif // CRAWL_STACK_ON_SIGSEGV
|
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
nsresult rv;
|
1999-09-16 11:30:18 +00:00
|
|
|
|
|
|
|
/* -help and -version should return quick */
|
|
|
|
if (argc == 2) {
|
|
|
|
if ((PL_strcmp(argv[1], "-h") == 0) || (PL_strcmp(argv[1], "-help") == 0) || (PL_strcmp(argv[1], "--help") == 0)) {
|
|
|
|
DumpHelp(argv[0]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
else if ((PL_strcmp(argv[1], "-v") == 0) || (PL_strcmp(argv[1], "-version") == 0) || (PL_strcmp(argv[1], "--version") == 0)) {
|
|
|
|
DumpVersion(argv[0]);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
if( !NS_CanRun() )
|
|
|
|
return 1;
|
|
|
|
NS_ShowSplashScreen();
|
1999-09-16 19:28:57 +00:00
|
|
|
rv = NS_InitXPCOM(NULL, NULL, NULL);
|
1999-08-31 07:36:02 +00:00
|
|
|
NS_ASSERTION( NS_SUCCEEDED(rv), "NS_InitXPCOM failed" );
|
1999-07-28 08:42:53 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
nsresult result = main1( argc, argv );
|
1999-10-06 20:52:50 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
// Scoping this in a block to force the pref service to be
|
|
|
|
// released.
|
|
|
|
//
|
|
|
|
// save the prefs, in case they weren't saved
|
|
|
|
NS_WITH_SERVICE(nsIPref, prefs, kPrefCID, &rv);
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to get prefs, so unable to save them");
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
prefs->SavePrefFile();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-09-22 01:25:40 +00:00
|
|
|
#ifdef DETECT_WEBSHELL_LEAKS
|
|
|
|
if ( unsigned long count = NS_TotalWebShellsInExistence() ) {
|
|
|
|
printf("XXX WARNING: Number of webshells being leaked: %d \n", count);
|
1999-08-31 07:36:02 +00:00
|
|
|
}
|
|
|
|
#endif
|
1999-08-27 12:32:19 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
rv = NS_ShutdownXPCOM( NULL );
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "NS_ShutdownXPCOM failed");
|
|
|
|
return TranslateReturnValue( result );
|
1999-07-28 08:42:53 +00:00
|
|
|
}
|