1998-12-03 01:37:46 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The contents of this file are subject to the Netscape 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/NPL/
|
1998-12-03 01:37:46 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* 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.
|
1998-12-03 01:37:46 +00:00
|
|
|
*
|
|
|
|
* The Original Code is Mozilla Communicator client code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape Communications
|
1999-11-06 03:43:54 +00:00
|
|
|
* Corporation. Portions created by Netscape are
|
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
2000-05-17 04:44:14 +00:00
|
|
|
* Contributor(s):
|
1998-12-03 01:37:46 +00:00
|
|
|
*/
|
2000-08-25 00:38:28 +00:00
|
|
|
|
1998-12-03 01:37:46 +00:00
|
|
|
#include "nsIServiceManager.h"
|
1999-03-09 09:44:27 +00:00
|
|
|
#include "nsIComponentManager.h"
|
2001-06-20 20:21:49 +00:00
|
|
|
#include "nsIGenericFactory.h"
|
2000-08-25 00:38:28 +00:00
|
|
|
|
|
|
|
#include "nsIURI.h"
|
1999-11-30 04:50:42 +00:00
|
|
|
#include "nsNetUtil.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"
|
2000-02-14 01:28:11 +00:00
|
|
|
#include "prnetdb.h"
|
1998-12-03 01:37:46 +00:00
|
|
|
|
2000-12-20 23:20:20 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1998-12-03 01:37:46 +00:00
|
|
|
#include "nsIAppShell.h"
|
1999-01-22 22:22:33 +00:00
|
|
|
#include "nsICmdLineService.h"
|
1998-12-03 01:37:46 +00:00
|
|
|
#include "nsIAppShellService.h"
|
1999-05-05 05:14:16 +00:00
|
|
|
#include "nsIAppShellComponent.h"
|
2001-03-28 23:00:02 +00:00
|
|
|
#include "nsIAppStartupNotifier.h"
|
2000-05-17 01:55:46 +00:00
|
|
|
#include "nsIObserverService.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"
|
2000-08-22 00:16:50 +00:00
|
|
|
#include "nsIDirectoryService.h"
|
|
|
|
#include "nsAppDirectoryServiceDefs.h"
|
1999-04-15 22:45:43 +00:00
|
|
|
#include "nsSpecialSystemDirectory.h"
|
2000-11-07 08:04:06 +00:00
|
|
|
#include "nsIWalletService.h"
|
1999-08-31 02:49:12 +00:00
|
|
|
#include "nsIWindowMediator.h"
|
2000-09-01 01:54:35 +00:00
|
|
|
#include "nsIDOMWindowInternal.h"
|
1999-11-04 00:08:59 +00:00
|
|
|
#include "nsIClipboard.h"
|
2000-02-06 11:08:00 +00:00
|
|
|
#include "nsISupportsPrimitives.h"
|
2000-02-04 23:11:19 +00:00
|
|
|
#include "nsICmdLineHandler.h"
|
|
|
|
#include "nsICategoryManager.h"
|
|
|
|
#include "nsXPIDLString.h"
|
2000-03-07 21:02:50 +00:00
|
|
|
#include "nsIXULWindow.h"
|
2000-05-13 21:43:39 +00:00
|
|
|
#include "nsIChromeRegistry.h"
|
2000-02-16 06:22:03 +00:00
|
|
|
#include "nsIContentHandler.h"
|
|
|
|
#include "nsIBrowserInstance.h"
|
2000-08-11 21:51:52 +00:00
|
|
|
#include "nsIEventQueueService.h"
|
2000-09-22 05:05:48 +00:00
|
|
|
#include "nsMPFileLocProvider.h"
|
|
|
|
#include "nsDirectoryServiceDefs.h"
|
2001-05-11 21:05:08 +00:00
|
|
|
#include "nsIHttpProtocolHandler.h"
|
2000-12-20 23:20:20 +00:00
|
|
|
#include "nsBuildID.h"
|
2001-02-26 00:31:44 +00:00
|
|
|
#include "nsWindowCreator.h"
|
|
|
|
#include "nsIWindowWatcher.h"
|
2001-05-17 18:35:38 +00:00
|
|
|
#include "nsProcess.h"
|
|
|
|
|
|
|
|
#include "InstallCleanupDefines.h"
|
2001-06-28 00:06:16 +00:00
|
|
|
#include "nsISoftwareUpdate.h"
|
2000-02-16 06:22:03 +00:00
|
|
|
|
2000-03-11 00:21:27 +00:00
|
|
|
// Interfaces Needed
|
|
|
|
#include "nsIXULWindow.h"
|
|
|
|
#include "nsIWebBrowserChrome.h"
|
2001-05-23 06:04:39 +00:00
|
|
|
#include "nsIDocShell.h"
|
2000-03-11 00:21:27 +00:00
|
|
|
|
2000-10-20 05:14:01 +00:00
|
|
|
// for X remote support
|
2001-01-27 03:50:07 +00:00
|
|
|
#ifdef MOZ_ENABLE_XREMOTE
|
2000-10-20 05:14:01 +00:00
|
|
|
#include "nsXRemoteClientCID.h"
|
|
|
|
#include "nsIXRemoteClient.h"
|
|
|
|
#endif
|
|
|
|
|
2000-04-27 04:02:22 +00:00
|
|
|
#ifdef NS_TRACE_MALLOC
|
|
|
|
#include "nsTraceMalloc.h"
|
|
|
|
#endif
|
|
|
|
|
2000-10-28 22:17:53 +00:00
|
|
|
#if defined(DEBUG_sspitzer) || defined(DEBUG_seth)
|
|
|
|
#define DEBUG_CMD_LINE
|
|
|
|
#endif
|
2000-02-08 01:11:13 +00:00
|
|
|
|
2000-09-22 05:05:48 +00:00
|
|
|
// Standalone App defines
|
|
|
|
#define STANDALONE_APP_PREF "profile.standalone_app.enable"
|
|
|
|
#define STANDALONE_APP_DIR_PREF "profile.standalone_app.directory"
|
2000-03-07 21:02:50 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
static NS_DEFINE_CID(kWindowMediatorCID, NS_WINDOWMEDIATOR_CID);
|
2001-05-17 18:35:38 +00:00
|
|
|
static NS_DEFINE_CID(kIProcessCID, NS_PROCESS_CID);
|
2001-06-27 07:38:53 +00:00
|
|
|
static NS_DEFINE_CID(kChromeRegistryCID, NS_CHROMEREGISTRY_CID);
|
|
|
|
|
|
|
|
#define UILOCALE_CMD_LINE_ARG "-UILocale"
|
|
|
|
#define CONTENTLOCALE_CMD_LINE_ARG "-contentLocale"
|
2001-05-17 18:35:38 +00:00
|
|
|
|
|
|
|
extern "C" void ShowOSAlert(char* aMessage);
|
1999-08-31 02:49:12 +00:00
|
|
|
|
2000-02-04 23:11:19 +00:00
|
|
|
#define HELP_SPACER_1 "\t"
|
|
|
|
#define HELP_SPACER_2 "\t\t"
|
2000-12-05 21:34:39 +00:00
|
|
|
#define HELP_SPACER_4 "\t\t\t\t"
|
2000-02-04 23:11:19 +00:00
|
|
|
|
1999-08-25 05:26:25 +00:00
|
|
|
#ifdef DEBUG
|
|
|
|
#include "prlog.h"
|
|
|
|
#endif
|
1999-04-10 06:41:59 +00:00
|
|
|
|
2000-01-18 02:45:07 +00:00
|
|
|
#ifdef MOZ_JPROF
|
|
|
|
#include "jprof.h"
|
|
|
|
#endif
|
|
|
|
|
1999-04-10 06:41:59 +00:00
|
|
|
// header file for profile manager
|
2000-11-04 16:27:30 +00:00
|
|
|
#include "nsIProfileInternal.h"
|
1998-12-03 01:37:46 +00:00
|
|
|
|
2001-06-20 20:21:49 +00:00
|
|
|
#ifdef _BUILD_STATIC_BIN
|
|
|
|
#include "nsStaticComponent.h"
|
2001-07-01 12:11:13 +00:00
|
|
|
nsresult PR_CALLBACK
|
2001-06-20 20:21:49 +00:00
|
|
|
apprunner_getModuleInfo(nsStaticModuleInfo **info, PRUint32 *count);
|
|
|
|
#endif
|
|
|
|
|
1999-11-19 01:55:19 +00:00
|
|
|
#if defined(XP_UNIX)
|
|
|
|
extern void InstallUnixSignalHandlers(const char *ProgramName);
|
|
|
|
#endif
|
|
|
|
|
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
|
|
|
|
2000-09-22 05:05:48 +00:00
|
|
|
// Initialize profile services for both standalone and regular profiles
|
|
|
|
static nsresult InitializeProfileService(nsICmdLineService *cmdLineArgs);
|
1999-08-31 02:49:12 +00:00
|
|
|
|
2001-06-27 07:38:53 +00:00
|
|
|
// Install global locale if possible
|
|
|
|
static nsresult InstallGlobalLocale(nsICmdLineService *cmdLineArgs);
|
|
|
|
|
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()
|
|
|
|
{
|
2000-06-20 23:10:06 +00:00
|
|
|
#if !TARGET_CARBON
|
1999-08-31 02:49:12 +00:00
|
|
|
(void)CloseTSMAwareApplication();
|
2000-06-20 23:10:06 +00:00
|
|
|
#endif
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
|
|
|
};
|
1999-01-27 02:11:56 +00:00
|
|
|
#endif // XP_MAC
|
|
|
|
|
2001-05-17 18:35:38 +00:00
|
|
|
#ifdef MOZ_WIDGET_GTK
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#endif //MOZ_WIDGET_GTK
|
|
|
|
|
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);
|
2001-02-26 00:31:44 +00:00
|
|
|
static char *sWatcherServiceContractID = "@mozilla.org/embedcomp/window-watcher;1";
|
|
|
|
|
1999-04-10 06:41:59 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
#include "nsNativeAppSupport.h"
|
1999-10-28 01:39:33 +00:00
|
|
|
|
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.
|
2000-09-18 18:31:10 +00:00
|
|
|
#if !defined (XP_MAC ) && !defined(NTO) && !defined( XP_PC )
|
2000-02-13 15:23:28 +00:00
|
|
|
|
2000-02-04 14:40:08 +00:00
|
|
|
nsresult NS_CreateSplashScreen( nsISplashScreen **aResult )
|
1999-08-31 02:49:12 +00:00
|
|
|
{
|
2000-02-04 14:40:08 +00:00
|
|
|
nsresult rv = NS_OK;
|
|
|
|
if ( aResult ) {
|
|
|
|
*aResult = 0;
|
|
|
|
} else {
|
|
|
|
rv = NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
1998-12-03 01:37:46 +00:00
|
|
|
|
2000-05-17 04:44:14 +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
|
|
|
}
|
2000-05-17 04:44:14 +00:00
|
|
|
#endif
|
2000-02-14 01:28:11 +00:00
|
|
|
|
2000-05-12 22:37:20 +00:00
|
|
|
/*********************************************/
|
|
|
|
// Default implementation for new and improved
|
|
|
|
// native app support. If your platform
|
|
|
|
// implements nsINativeAppSupport then implement
|
|
|
|
// this function and if def out this code.
|
|
|
|
//
|
|
|
|
// Note: For now, the default imiplementation returns 0 and
|
|
|
|
// the code that calls this will defalt to use the old
|
|
|
|
// nsISplashScreen interface directly. At some point
|
|
|
|
// this function will return an instance of
|
|
|
|
// nsNativeAppSupportBase which will use the older
|
|
|
|
// "splash screen" interface. The code below will
|
|
|
|
// then rely on nsINativeAppSupport and its use of
|
|
|
|
// nsISplashScreen will be removed.
|
2000-05-17 04:44:14 +00:00
|
|
|
//
|
2000-09-18 18:31:10 +00:00
|
|
|
#if !defined( XP_PC )
|
2000-05-12 22:37:20 +00:00
|
|
|
|
|
|
|
nsresult NS_CreateNativeAppSupport( nsINativeAppSupport **aResult )
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
if ( aResult ) {
|
|
|
|
*aResult = 0;
|
|
|
|
} else {
|
|
|
|
rv = NS_ERROR_NULL_POINTER;
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2001-06-15 20:33:34 +00:00
|
|
|
static nsresult GetNativeAppSupport(nsINativeAppSupport** aNativeApp)
|
|
|
|
{
|
|
|
|
NS_ENSURE_ARG_POINTER(aNativeApp);
|
|
|
|
*aNativeApp = nsnull;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIAppShellService> appShellService(do_GetService(kAppShellServiceCID));
|
|
|
|
if (appShellService)
|
|
|
|
appShellService->GetNativeAppSupport(aNativeApp);
|
|
|
|
|
|
|
|
return *aNativeApp ? NS_OK : NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRBool IsAppInServerMode()
|
|
|
|
{
|
|
|
|
PRBool serverMode = PR_FALSE;
|
|
|
|
nsCOMPtr<nsINativeAppSupport> nativeApp;
|
|
|
|
GetNativeAppSupport(getter_AddRefs(nativeApp));
|
|
|
|
if (nativeApp)
|
|
|
|
nativeApp->GetIsServerMode(&serverMode);
|
|
|
|
|
|
|
|
return serverMode;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
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
|
|
|
|
2000-02-15 01:32:12 +00:00
|
|
|
extern "C" void NS_SetupRegistry_1(PRBool aNeedAutoreg);
|
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
|
|
|
|
2001-01-17 04:44:13 +00:00
|
|
|
static nsresult OpenWindow(const char *urlstr, const PRUnichar *args)
|
2000-03-12 08:10:23 +00:00
|
|
|
{
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
|
|
|
printf("OpenWindow(%s,?)\n",urlstr);
|
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2001-04-11 01:20:28 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIWindowWatcher> wwatch(do_GetService("@mozilla.org/embedcomp/window-watcher;1"));
|
|
|
|
nsCOMPtr<nsISupportsWString> sarg(do_CreateInstance(NS_SUPPORTS_WSTRING_CONTRACTID));
|
|
|
|
if (!wwatch || !sarg)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
sarg->SetData(args);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIDOMWindow> newWindow;
|
2000-08-25 00:38:28 +00:00
|
|
|
nsresult rv;
|
2001-04-11 01:20:28 +00:00
|
|
|
rv = wwatch->OpenWindow(0, urlstr, "_blank",
|
|
|
|
"chrome,dialog=no,all", sarg,
|
|
|
|
getter_AddRefs(newWindow));
|
2000-08-25 00:38:28 +00:00
|
|
|
|
|
|
|
return rv;
|
1999-10-18 21:33:29 +00:00
|
|
|
}
|
|
|
|
|
2001-03-28 23:00:02 +00:00
|
|
|
static nsresult
|
|
|
|
OpenChromeURL( const char * urlstr,
|
|
|
|
PRInt32 height = NS_SIZETOCONTENT,
|
2001-06-12 22:33:34 +00:00
|
|
|
PRInt32 width = NS_SIZETOCONTENT )
|
1999-08-31 02:49:12 +00:00
|
|
|
{
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
|
|
|
printf("OpenChromeURL(%s,%d,%d)\n",urlstr,height,width);
|
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2000-03-12 08:10:23 +00:00
|
|
|
|
2000-02-29 00:20:55 +00:00
|
|
|
nsCOMPtr<nsIURI> url;
|
1999-08-31 02:49:12 +00:00
|
|
|
nsresult rv;
|
2000-02-29 00:20:55 +00:00
|
|
|
rv = NS_NewURI(getter_AddRefs(url), urlstr);
|
1999-08-31 02:49:12 +00:00
|
|
|
if ( NS_FAILED( rv ) )
|
|
|
|
return rv;
|
2000-02-29 00:20:55 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsIAppShellService> appShell(do_GetService(kAppShellServiceCID));
|
|
|
|
NS_ENSURE_TRUE(appShell, NS_ERROR_FAILURE);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIXULWindow> newWindow;
|
1999-08-31 02:49:12 +00:00
|
|
|
rv = appShell->CreateTopLevelWindow(nsnull, url,
|
2001-03-28 23:00:02 +00:00
|
|
|
PR_TRUE, PR_TRUE,
|
|
|
|
nsIWebBrowserChrome::CHROME_ALL,
|
2000-02-29 22:03:49 +00:00
|
|
|
width, height,
|
1999-08-31 07:36:02 +00:00
|
|
|
getter_AddRefs(newWindow));
|
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
1999-02-18 21:53:31 +00:00
|
|
|
|
2000-02-15 01:32:12 +00:00
|
|
|
|
2000-05-17 04:44:14 +00:00
|
|
|
static void DumpArbitraryHelp()
|
2000-02-04 23:11:19 +00:00
|
|
|
{
|
|
|
|
nsresult rv;
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsICategoryManager> catman(do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv));
|
2000-02-04 23:11:19 +00:00
|
|
|
if(NS_SUCCEEDED(rv) && catman) {
|
|
|
|
nsCOMPtr<nsISimpleEnumerator> e;
|
|
|
|
rv = catman->EnumerateCategory(COMMAND_LINE_ARGUMENT_HANDLERS, getter_AddRefs(e));
|
|
|
|
if(NS_SUCCEEDED(rv) && e) {
|
2000-02-16 02:45:22 +00:00
|
|
|
while (PR_TRUE) {
|
2000-06-01 04:14:34 +00:00
|
|
|
nsCOMPtr<nsISupportsString> catEntry;
|
|
|
|
rv = e->GetNext(getter_AddRefs(catEntry));
|
|
|
|
if (NS_FAILED(rv) || !catEntry) break;
|
2000-02-16 02:45:22 +00:00
|
|
|
|
2000-06-01 04:14:34 +00:00
|
|
|
nsXPIDLCString entryString;
|
|
|
|
rv = catEntry->GetData(getter_Copies(entryString));
|
|
|
|
if (NS_FAILED(rv) || !((const char *)entryString)) break;
|
|
|
|
|
2000-09-13 23:57:52 +00:00
|
|
|
nsXPIDLCString contractidString;
|
|
|
|
rv = catman->GetCategoryEntry(COMMAND_LINE_ARGUMENT_HANDLERS,(const char *)entryString, getter_Copies(contractidString));
|
|
|
|
if (NS_FAILED(rv) || !((const char *)contractidString)) break;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
|
|
|
printf("cmd line handler contractid = %s\n", (const char *)contractidString);
|
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr <nsICmdLineHandler> handler(do_GetService((const char *)contractidString, &rv));
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-04 23:11:19 +00:00
|
|
|
if (handler) {
|
|
|
|
nsXPIDLCString commandLineArg;
|
|
|
|
rv = handler->GetCommandLineArgument(getter_Copies(commandLineArg));
|
|
|
|
if (NS_FAILED(rv)) continue;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-04 23:11:19 +00:00
|
|
|
nsXPIDLCString helpText;
|
|
|
|
rv = handler->GetHelpText(getter_Copies(helpText));
|
|
|
|
if (NS_FAILED(rv)) continue;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-04 23:11:19 +00:00
|
|
|
if ((const char *)commandLineArg) {
|
|
|
|
printf("%s%s", HELP_SPACER_1,(const char *)commandLineArg);
|
2000-02-16 06:22:03 +00:00
|
|
|
|
|
|
|
PRBool handlesArgs = PR_FALSE;
|
|
|
|
rv = handler->GetHandlesArgs(&handlesArgs);
|
|
|
|
if (NS_SUCCEEDED(rv) && handlesArgs) {
|
2000-08-25 00:38:28 +00:00
|
|
|
printf(" <url>");
|
2000-02-16 06:22:03 +00:00
|
|
|
}
|
2000-02-04 23:11:19 +00:00
|
|
|
if ((const char *)helpText) {
|
|
|
|
printf("%s%s\n",HELP_SPACER_2,(const char *)helpText);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-04 23:11:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-05-17 04:44:14 +00:00
|
|
|
return;
|
2000-02-04 23:11:19 +00:00
|
|
|
}
|
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
static
|
2001-06-14 23:51:17 +00:00
|
|
|
nsresult LaunchApplication(const char *aParam, PRInt32 height, PRInt32 width)
|
2000-02-26 03:52:06 +00:00
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
|
2001-06-14 23:51:17 +00:00
|
|
|
nsCOMPtr <nsICmdLineService> cmdLine =
|
|
|
|
do_GetService("@mozilla.org/appshell/commandLineService;1", &rv);
|
2000-02-26 03:52:06 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-05-13 21:43:39 +00:00
|
|
|
|
2001-06-14 23:51:17 +00:00
|
|
|
nsCOMPtr <nsICmdLineHandler> handler;
|
|
|
|
rv = cmdLine->GetHandlerForParam(aParam, getter_AddRefs(handler));
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-05-13 21:43:39 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
nsXPIDLCString chromeUrlForTask;
|
|
|
|
rv = handler->GetChromeUrlForTask(getter_Copies(chromeUrlForTask));
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
PRBool handlesArgs = PR_FALSE;
|
|
|
|
rv = handler->GetHandlesArgs(&handlesArgs);
|
|
|
|
if (handlesArgs) {
|
2001-01-17 04:44:13 +00:00
|
|
|
nsXPIDLString defaultArgs;
|
|
|
|
rv = handler->GetDefaultArgs(getter_Copies(defaultArgs));
|
2000-02-26 03:52:06 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2001-03-28 23:00:02 +00:00
|
|
|
rv = OpenWindow(chromeUrlForTask, defaultArgs);
|
2000-02-26 03:52:06 +00:00
|
|
|
}
|
|
|
|
else {
|
2001-03-28 23:00:02 +00:00
|
|
|
rv = OpenChromeURL(chromeUrlForTask, height, width);
|
2000-02-26 03:52:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2001-03-28 23:00:02 +00:00
|
|
|
static nsresult
|
|
|
|
LaunchApplicationWithArgs(const char *commandLineArg,
|
|
|
|
nsICmdLineService *cmdLineArgs,
|
2001-06-14 23:51:17 +00:00
|
|
|
const char *aParam,
|
2001-03-28 23:00:02 +00:00
|
|
|
PRInt32 height, PRInt32 width)
|
2000-02-26 03:52:06 +00:00
|
|
|
{
|
2001-06-14 23:51:17 +00:00
|
|
|
NS_ENSURE_ARG(commandLineArg);
|
|
|
|
NS_ENSURE_ARG(cmdLineArgs);
|
|
|
|
NS_ENSURE_ARG(aParam);
|
2001-01-17 04:44:13 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
nsresult rv;
|
2001-06-14 23:51:17 +00:00
|
|
|
|
|
|
|
nsCOMPtr<nsICmdLineService> cmdLine =
|
|
|
|
do_GetService("@mozilla.org/appshell/commandLineService;1",&rv);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-02-26 03:52:06 +00:00
|
|
|
|
2001-06-14 23:51:17 +00:00
|
|
|
nsCOMPtr <nsICmdLineHandler> handler;
|
|
|
|
rv = cmdLine->GetHandlerForParam(aParam, getter_AddRefs(handler));
|
2000-02-26 03:52:06 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
if (!handler) return NS_ERROR_FAILURE;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
nsXPIDLCString chromeUrlForTask;
|
|
|
|
rv = handler->GetChromeUrlForTask(getter_Copies(chromeUrlForTask));
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
|
|
|
printf("XXX got this one:\t%s\n\t%s\n\n",commandLineArg,(const char *)chromeUrlForTask);
|
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2001-01-17 04:44:13 +00:00
|
|
|
nsXPIDLCString cmdResult;
|
2000-02-26 03:52:06 +00:00
|
|
|
rv = cmdLineArgs->GetCmdLineValue(commandLineArg, getter_Copies(cmdResult));
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
|
|
|
printf("%s, cmdResult = %s\n",commandLineArg,(const char *)cmdResult);
|
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2000-02-26 03:52:06 +00:00
|
|
|
|
|
|
|
PRBool handlesArgs = PR_FALSE;
|
|
|
|
rv = handler->GetHandlesArgs(&handlesArgs);
|
|
|
|
if (handlesArgs) {
|
|
|
|
if ((const char *)cmdResult) {
|
|
|
|
if (PL_strcmp("1",(const char *)cmdResult)) {
|
|
|
|
PRBool openWindowWithArgs = PR_TRUE;
|
|
|
|
rv = handler->GetOpenWindowWithArgs(&openWindowWithArgs);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
if (openWindowWithArgs) {
|
2001-03-28 23:00:02 +00:00
|
|
|
nsString cmdArgs; cmdArgs.AssignWithConversion(cmdResult);
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
|
|
|
printf("opening %s with %s\n",(const char *)chromeUrlForTask,"OpenWindow");
|
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2001-06-30 11:02:25 +00:00
|
|
|
rv = OpenWindow(chromeUrlForTask, cmdArgs.get());
|
2000-02-26 03:52:06 +00:00
|
|
|
}
|
|
|
|
else {
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
|
|
|
printf("opening %s with %s\n",(const char *)cmdResult,"OpenChromeURL");
|
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2001-03-28 23:00:02 +00:00
|
|
|
rv = OpenChromeURL(cmdResult,height, width);
|
2000-02-26 03:52:06 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
2001-01-17 04:44:13 +00:00
|
|
|
nsXPIDLString defaultArgs;
|
|
|
|
rv = handler->GetDefaultArgs(getter_Copies(defaultArgs));
|
2000-02-26 03:52:06 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2001-03-28 23:00:02 +00:00
|
|
|
rv = OpenWindow(chromeUrlForTask, defaultArgs);
|
2000-02-26 03:52:06 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
if (NS_SUCCEEDED(rv) && (const char*)cmdResult) {
|
2001-03-28 23:00:02 +00:00
|
|
|
if (PL_strcmp("1",cmdResult) == 0) {
|
|
|
|
rv = OpenChromeURL(chromeUrlForTask,height, width);
|
2000-02-26 03:52:06 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
}
|
|
|
|
else {
|
2001-03-28 23:00:02 +00:00
|
|
|
rv = OpenChromeURL(cmdResult, height, width);
|
2000-02-26 03:52:06 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
typedef struct
|
|
|
|
{
|
|
|
|
nsIPref *prefs;
|
|
|
|
PRInt32 height;
|
|
|
|
PRInt32 width;
|
|
|
|
} StartupClosure;
|
|
|
|
|
|
|
|
static
|
|
|
|
void startupPrefEnumerationFunction(const char *prefName, void *data)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
PRBool prefValue = PR_FALSE;
|
|
|
|
|
|
|
|
if (!data || !prefName) return;
|
|
|
|
|
|
|
|
StartupClosure *closure = (StartupClosure *)data;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
|
|
|
printf("getting %s\n", prefName);
|
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2000-02-26 03:52:06 +00:00
|
|
|
|
|
|
|
rv = closure->prefs->GetBoolPref(prefName, &prefValue);
|
|
|
|
if (NS_FAILED(rv)) return;
|
|
|
|
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
|
|
|
printf("%s = %d\n", prefName, prefValue);
|
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2000-02-26 03:52:06 +00:00
|
|
|
|
|
|
|
PRUint32 prefixLen = PL_strlen(PREF_STARTUP_PREFIX);
|
|
|
|
|
|
|
|
// if the pref is "general.startup.", ignore it.
|
|
|
|
if (PL_strlen(prefName) <= prefixLen) return;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
if (prefValue) {
|
2001-06-14 23:51:17 +00:00
|
|
|
// skip past the "general.startup." part of the string
|
|
|
|
const char *param = prefName + prefixLen;
|
2000-02-26 03:52:06 +00:00
|
|
|
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
2001-06-14 23:51:17 +00:00
|
|
|
printf("cmd line parameter = %s\n", param);
|
2000-10-28 22:17:53 +00:00
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2001-06-14 23:51:17 +00:00
|
|
|
rv = LaunchApplication(param, closure->height, closure->width);
|
2000-02-26 03:52:06 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
static PRBool IsStartupCommand(const char *arg)
|
|
|
|
{
|
|
|
|
if (!arg) return PR_FALSE;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
if (PL_strlen(arg) <= 1) return PR_FALSE;
|
|
|
|
|
|
|
|
// windows allows /mail or -mail
|
2000-05-17 04:44:14 +00:00
|
|
|
if ((arg[0] == '-')
|
|
|
|
#ifdef XP_PC
|
2000-02-26 03:52:06 +00:00
|
|
|
|| (arg[0] == '/')
|
|
|
|
#endif /* XP_PC */
|
|
|
|
) {
|
|
|
|
return PR_TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
2000-02-04 23:11:19 +00:00
|
|
|
static nsresult HandleArbitraryStartup( nsICmdLineService* cmdLineArgs, nsIPref *prefs, PRBool heedGeneralStartupPrefs)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
PRInt32 height = NS_SIZETOCONTENT;
|
|
|
|
PRInt32 width = NS_SIZETOCONTENT;
|
2000-06-09 20:58:59 +00:00
|
|
|
nsXPIDLCString tempString;
|
2000-02-04 23:11:19 +00:00
|
|
|
|
|
|
|
// Get the value of -width option
|
2000-06-09 20:58:59 +00:00
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-width", getter_Copies(tempString));
|
2000-02-04 23:11:19 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2000-06-09 20:58:59 +00:00
|
|
|
if ((const char*)tempString) PR_sscanf(tempString, "%d", &width);
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-04 23:11:19 +00:00
|
|
|
// Get the value of -height option
|
2000-06-09 20:58:59 +00:00
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-height", getter_Copies(tempString));
|
2000-02-04 23:11:19 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2000-06-09 20:58:59 +00:00
|
|
|
if ((const char*)tempString) PR_sscanf(tempString, "%d", &height);
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
if (heedGeneralStartupPrefs) {
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
|
|
|
printf("XXX iterate over all the general.startup.* prefs\n");
|
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2000-02-26 03:52:06 +00:00
|
|
|
StartupClosure closure;
|
2000-02-08 01:29:22 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
closure.prefs = prefs;
|
|
|
|
closure.height = height;
|
|
|
|
closure.width = width;
|
|
|
|
|
|
|
|
prefs->EnumerateChildren(PREF_STARTUP_PREFIX, startupPrefEnumerationFunction,(void *)(&closure));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
PRInt32 argc = 0;
|
|
|
|
rv = cmdLineArgs->GetArgc(&argc);
|
2001-03-28 23:00:02 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-02-26 03:52:06 +00:00
|
|
|
|
|
|
|
NS_ASSERTION(argc > 1, "we shouldn't be here if there were no command line arguments");
|
|
|
|
if (argc <= 1) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
char **argv = nsnull;
|
|
|
|
rv = cmdLineArgs->GetArgv(&argv);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
PRInt32 i = 0;
|
|
|
|
for (i=1;i<argc;i++) {
|
2000-10-28 22:17:53 +00:00
|
|
|
#ifdef DEBUG_CMD_LINE
|
|
|
|
printf("XXX argv[%d] = %s\n",i,argv[i]);
|
|
|
|
#endif /* DEBUG_CMD_LINE */
|
2000-02-26 03:52:06 +00:00
|
|
|
if (IsStartupCommand(argv[i])) {
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
// skip over the - (or / on windows)
|
|
|
|
char *command = argv[i] + 1;
|
|
|
|
#ifdef XP_UNIX
|
|
|
|
// unix allows -mail and --mail
|
|
|
|
if ((argv[i][0] == '-') && (argv[i][1] == '-')) {
|
|
|
|
command = argv[i] + 2;
|
2000-02-04 23:11:19 +00:00
|
|
|
}
|
2000-05-17 04:44:14 +00:00
|
|
|
#endif /* XP_UNIX */
|
2001-06-14 23:51:17 +00:00
|
|
|
|
2000-02-26 03:52:06 +00:00
|
|
|
// this can fail, as someone could do -foo, where -foo is not handled
|
2001-06-14 23:51:17 +00:00
|
|
|
rv = LaunchApplicationWithArgs((const char *)(argv[i]),
|
|
|
|
cmdLineArgs, command,
|
|
|
|
height, width);
|
2000-02-04 23:11:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2000-02-26 03:52:06 +00:00
|
|
|
|
2000-05-17 04:44:14 +00:00
|
|
|
return NS_OK;
|
2000-02-04 23:11:19 +00:00
|
|
|
}
|
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
// This should be done by app shell enumeration someday
|
2001-01-17 04:44:13 +00:00
|
|
|
static nsresult DoCommandLines(nsICmdLineService* cmdLine, PRBool heedGeneralStartupPrefs)
|
1999-08-31 02:49:12 +00:00
|
|
|
{
|
2001-01-17 04:44:13 +00:00
|
|
|
nsresult rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsIPref> prefs(do_GetService(NS_PREF_CONTRACTID, &rv));
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
1999-09-16 06:50:17 +00:00
|
|
|
|
2001-01-17 04:44:13 +00:00
|
|
|
rv = HandleArbitraryStartup(cmdLine, prefs, heedGeneralStartupPrefs);
|
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
|
|
|
|
2000-05-16 22:14:55 +00:00
|
|
|
static nsresult DoOnShutdown()
|
|
|
|
{
|
|
|
|
nsresult rv;
|
2000-08-25 00:38:28 +00:00
|
|
|
|
|
|
|
// save the prefs, in case they weren't saved
|
2000-05-16 22:14:55 +00:00
|
|
|
{
|
2000-08-25 00:38:28 +00:00
|
|
|
// scoping this in a block to force release
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsIPref> prefs(do_GetService(NS_PREF_CONTRACTID, &rv));
|
2000-08-25 00:38:28 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to get prefs, so unable to save them");
|
|
|
|
if (NS_SUCCEEDED(rv))
|
2001-04-26 18:41:11 +00:00
|
|
|
prefs->SavePrefFile(nsnull);
|
2000-05-16 22:14:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// at this point, all that is on the clipboard is a proxy object, but that object
|
|
|
|
// won't be valid once the app goes away. As a result, we need to force the data
|
|
|
|
// out of that proxy and properly onto the clipboard. This can't be done in the
|
|
|
|
// clipboard service's shutdown routine because it requires the parser/etc which
|
|
|
|
// has already been shutdown by the time the clipboard is shut down.
|
|
|
|
{
|
|
|
|
// scoping this in a block to force release
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsIClipboard> clipService(do_GetService("@mozilla.org/widget/clipboard;1", &rv));
|
2000-08-25 00:38:28 +00:00
|
|
|
if (NS_SUCCEEDED(rv))
|
2000-05-16 22:14:55 +00:00
|
|
|
clipService->ForceDataToClipboard(nsIClipboard::kGlobalClipboard);
|
|
|
|
}
|
2000-08-25 00:38:28 +00:00
|
|
|
|
2000-05-16 22:14:55 +00:00
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-06-12 22:33:34 +00:00
|
|
|
static nsresult OpenBrowserWindow(PRInt32 height, PRInt32 width)
|
2000-02-16 06:22:03 +00:00
|
|
|
{
|
|
|
|
nsresult rv;
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsICmdLineHandler> handler(do_GetService(NS_BROWSERSTARTUPHANDLER_CONTRACTID, &rv));
|
2000-02-16 06:22:03 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
nsXPIDLCString chromeUrlForTask;
|
|
|
|
rv = handler->GetChromeUrlForTask(getter_Copies(chromeUrlForTask));
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2001-06-12 22:33:34 +00:00
|
|
|
rv = OpenChromeURL(chromeUrlForTask, height, width);
|
2000-02-16 06:22:03 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2000-05-16 21:57:23 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
static nsresult Ensure1Window( nsICmdLineService* cmdLineArgs)
|
|
|
|
{
|
2001-01-17 04:44:13 +00:00
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIWindowMediator> windowMediator(do_GetService(kWindowMediatorCID, &rv));
|
2000-08-25 00:38:28 +00:00
|
|
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsISimpleEnumerator> windowEnumerator;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
if (NS_SUCCEEDED(windowMediator->GetEnumerator(nsnull, getter_AddRefs(windowEnumerator))))
|
|
|
|
{
|
|
|
|
PRBool more;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
windowEnumerator->HasMoreElements(&more);
|
|
|
|
if ( !more )
|
|
|
|
{
|
2001-06-12 22:33:34 +00:00
|
|
|
// If starting up in server mode, then we do things differently.
|
2001-06-15 20:33:34 +00:00
|
|
|
nsCOMPtr<nsINativeAppSupport> nativeApp;
|
|
|
|
PRBool serverMode;
|
|
|
|
rv = GetNativeAppSupport(getter_AddRefs(nativeApp));
|
|
|
|
if (NS_SUCCEEDED(rv) && NS_SUCCEEDED(nativeApp->GetIsServerMode(&serverMode)) && serverMode) {
|
|
|
|
// Create special Nav window.
|
|
|
|
nativeApp->StartServerMode();
|
|
|
|
return NS_OK;
|
2001-06-12 22:33:34 +00:00
|
|
|
}
|
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
// 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
|
2000-06-09 20:58:59 +00:00
|
|
|
nsXPIDLCString tempString;
|
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-width", getter_Copies(tempString));
|
1999-08-31 07:36:02 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
2000-06-09 20:58:59 +00:00
|
|
|
if ((const char*)tempString)
|
1999-08-31 07:36:02 +00:00
|
|
|
PR_sscanf(tempString, "%d", &width);
|
1999-08-31 02:49:12 +00:00
|
|
|
|
2000-05-17 04:44:14 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
// Get the value of -height option
|
2000-06-09 20:58:59 +00:00
|
|
|
rv = cmdLineArgs->GetCmdLineValue("-height", getter_Copies(tempString));
|
1999-08-31 07:36:02 +00:00
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
2000-06-09 20:58:59 +00:00
|
|
|
if ((const char*)tempString)
|
1999-08-31 07:36:02 +00:00
|
|
|
PR_sscanf(tempString, "%d", &height);
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2001-06-12 22:33:34 +00:00
|
|
|
rv = OpenBrowserWindow(height, width);
|
1999-08-31 07:36:02 +00:00
|
|
|
}
|
2001-01-17 04:44:13 +00:00
|
|
|
}
|
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
|
|
|
|
2001-06-27 07:38:53 +00:00
|
|
|
// update global locale if possible (in case when user-*.rdf can be updated)
|
|
|
|
// so that any apps after this can be invoked in the UILocale and contentLocale
|
|
|
|
static nsresult InstallGlobalLocale(nsICmdLineService *cmdLineArgs)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
nsCOMPtr<nsIChromeRegistry> chromeRegistry = do_GetService(kChromeRegistryCID, &rv);
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
nsXPIDLCString cmdUI;
|
|
|
|
rv = cmdLineArgs->GetCmdLineValue(UILOCALE_CMD_LINE_ARG, getter_Copies(cmdUI));
|
|
|
|
if (NS_SUCCEEDED(rv)){
|
|
|
|
if (cmdUI) {
|
|
|
|
nsAutoString UILocaleName;
|
|
|
|
UILocaleName.AssignWithConversion(cmdUI);
|
2001-06-30 11:02:25 +00:00
|
|
|
rv = chromeRegistry->SelectLocale(UILocaleName.get(), PR_FALSE);
|
2001-06-27 07:38:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
nsXPIDLCString cmdContent;
|
|
|
|
rv = cmdLineArgs->GetCmdLineValue(CONTENTLOCALE_CMD_LINE_ARG, getter_Copies(cmdContent));
|
|
|
|
if (NS_SUCCEEDED(rv)){
|
|
|
|
if (cmdContent) {
|
|
|
|
nsAutoString ContentLocaleName;
|
|
|
|
ContentLocaleName.AssignWithConversion(cmdContent);
|
2001-06-30 11:02:25 +00:00
|
|
|
rv = chromeRegistry->SelectLocale(ContentLocaleName.get(), PR_FALSE);
|
2001-06-27 07:38:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
2000-09-22 05:05:48 +00:00
|
|
|
// Do the righe thing to provide locations depending on whether an
|
|
|
|
// application is standalone or not
|
|
|
|
static nsresult InitializeProfileService(nsICmdLineService *cmdLineArgs)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
PRBool standaloneApp = PR_FALSE;
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsIPref> prefs(do_GetService(NS_PREF_CONTRACTID, &rv));
|
2000-09-22 05:05:48 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
rv = prefs->GetBoolPref(STANDALONE_APP_PREF, &standaloneApp);
|
|
|
|
if (NS_SUCCEEDED(rv) && standaloneApp)
|
|
|
|
{
|
|
|
|
nsMPFileLocProvider *fileLocProvider = new nsMPFileLocProvider;
|
|
|
|
NS_ENSURE_TRUE(fileLocProvider, NS_ERROR_OUT_OF_MEMORY);
|
|
|
|
// Specify the dir that standalone app will use for its "profile" dir
|
|
|
|
nsCOMPtr<nsIFile> parentDir;
|
2000-10-05 03:34:18 +00:00
|
|
|
|
|
|
|
PRBool exists = PR_FALSE;
|
2000-10-05 13:18:17 +00:00
|
|
|
#ifdef XP_OS2
|
2000-11-01 20:04:59 +00:00
|
|
|
rv = NS_GetSpecialDirectory(NS_OS2_HOME_DIR, getter_AddRefs(parentDir));
|
2000-10-05 13:18:17 +00:00
|
|
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
rv = parentDir->Exists(&exists);
|
|
|
|
if (NS_FAILED(rv) || !exists)
|
|
|
|
return rv;
|
|
|
|
#elif defined(XP_PC)
|
2000-10-05 03:34:18 +00:00
|
|
|
rv = NS_GetSpecialDirectory(NS_WIN_APPDATA_DIR, getter_AddRefs(parentDir));
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
rv = parentDir->Exists(&exists);
|
|
|
|
if (NS_FAILED(rv) || !exists)
|
|
|
|
{
|
|
|
|
parentDir = nsnull;
|
|
|
|
rv = NS_GetSpecialDirectory(NS_WIN_WINDOWS_DIR, getter_AddRefs(parentDir));
|
|
|
|
}
|
|
|
|
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
#else
|
|
|
|
rv = NS_GetSpecialDirectory(NS_OS_HOME_DIR, getter_AddRefs(parentDir));
|
|
|
|
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
rv = parentDir->Exists(&exists);
|
|
|
|
if (NS_FAILED(rv) || !exists)
|
|
|
|
return rv;
|
|
|
|
#endif
|
2000-09-22 05:05:48 +00:00
|
|
|
|
|
|
|
// Get standalone app dir name from prefs and initialize mpfilelocprovider
|
|
|
|
nsXPIDLCString appDir;
|
|
|
|
rv = prefs->CopyCharPref(STANDALONE_APP_DIR_PREF, getter_Copies(appDir));
|
|
|
|
if (NS_FAILED(rv) || (nsCRT::strlen(appDir) == 0))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
rv = fileLocProvider->Initialize(parentDir, appDir);
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
|
|
|
rv = prefs->ResetPrefs();
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2001-05-02 23:00:22 +00:00
|
|
|
rv = prefs->ReadConfigFile();
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
2001-04-26 18:41:11 +00:00
|
|
|
rv = prefs->ReadUserPrefs(nsnull);
|
2000-09-22 05:05:48 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
}
|
|
|
|
else
|
2001-05-02 23:00:22 +00:00
|
|
|
{
|
|
|
|
rv = prefs->ReadConfigFile();
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsIProfileInternal> profileMgr(do_GetService(NS_PROFILE_CONTRACTID, &rv));
|
2000-09-22 05:05:48 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to get profile manager");
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2001-06-20 06:49:22 +00:00
|
|
|
nsCOMPtr<nsINativeAppSupport> nativeApp;
|
|
|
|
PRBool serverMode = PR_FALSE;
|
|
|
|
GetNativeAppSupport(getter_AddRefs(nativeApp));
|
|
|
|
if (nativeApp)
|
|
|
|
nativeApp->GetIsServerMode(&serverMode);
|
|
|
|
|
2001-06-15 20:33:34 +00:00
|
|
|
// If we are in server mode, profile mgr cannot show UI
|
2001-06-20 06:49:22 +00:00
|
|
|
rv = profileMgr->StartupWithArgs(cmdLineArgs, !serverMode);
|
2001-06-15 20:33:34 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "StartupWithArgs failed\n");
|
2001-06-20 06:49:22 +00:00
|
|
|
if (serverMode && rv == NS_ERROR_PROFILE_REQUIRES_INTERACTION) {
|
|
|
|
nativeApp->SetNeedsProfileUI(PR_TRUE);
|
|
|
|
rv = NS_OK;
|
|
|
|
}
|
|
|
|
else if (NS_FAILED(rv)) return rv;
|
2000-09-22 05:05:48 +00:00
|
|
|
|
|
|
|
// if we get here, and we don't have a current profile, return a failure so we will exit
|
|
|
|
// this can happen, if the user hits Cancel or Exit in the profile manager dialogs
|
|
|
|
nsXPIDLString currentProfileStr;
|
|
|
|
rv = profileMgr->GetCurrentProfile(getter_Copies(currentProfileStr));
|
|
|
|
if (NS_FAILED(rv) || !((const PRUnichar *)currentProfileStr) ||
|
|
|
|
(nsCRT::strlen((const PRUnichar *)currentProfileStr) == 0)) {
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
2001-02-26 00:31:44 +00:00
|
|
|
static nsresult InitializeWindowCreator()
|
|
|
|
{
|
|
|
|
// create an nsWindowCreator and give it to the WindowWatcher service
|
|
|
|
nsWindowCreator *creatorCallback = new nsWindowCreator();
|
|
|
|
if (!creatorCallback)
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIWindowCreator> windowCreator(NS_STATIC_CAST(nsIWindowCreator *, creatorCallback));
|
|
|
|
if (windowCreator) {
|
|
|
|
nsCOMPtr<nsIWindowWatcher> wwatch(do_GetService(sWatcherServiceContractID));
|
|
|
|
if (wwatch) {
|
|
|
|
wwatch->SetWindowCreator(windowCreator);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2001-05-17 18:35:38 +00:00
|
|
|
static nsresult VerifyInstallation(int argc, char **argv)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsILocalFile> registryFile;
|
|
|
|
|
|
|
|
NS_WITH_SERVICE(nsIProperties, directoryService, NS_DIRECTORY_SERVICE_CONTRACTID, &rv);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NS_OK;
|
|
|
|
rv = directoryService->Get(NS_OS_CURRENT_PROCESS_DIR,
|
|
|
|
NS_GET_IID(nsIFile),
|
|
|
|
getter_AddRefs(registryFile));
|
|
|
|
if (NS_FAILED(rv) || !registryFile)
|
|
|
|
return NS_OK;
|
|
|
|
|
|
|
|
#ifdef XP_MAC
|
|
|
|
registryFile->Append(ESSENTIAL_FILES);
|
|
|
|
#endif
|
|
|
|
registryFile->Append(CLEANUP_REGISTRY);
|
|
|
|
|
|
|
|
PRBool exists;
|
|
|
|
registryFile->Exists(&exists);
|
|
|
|
if (exists)
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIFile> binPath;
|
|
|
|
char cleanupMessage[256];
|
|
|
|
char* lastResortMessage = "A previous install did not complete correctly. Finishing install.";
|
|
|
|
PRInt32 numRead;
|
|
|
|
|
|
|
|
registryFile->Clone(getter_AddRefs(binPath));
|
|
|
|
nsCOMPtr<nsILocalFile>cleanupMessageFile = do_QueryInterface(binPath, &rv);
|
|
|
|
#ifdef XP_MAC
|
|
|
|
nsCOMPtr<nsIFile> messageFileParent;
|
|
|
|
cleanupMessageFile->GetParent(getter_AddRefs(messageFileParent));
|
|
|
|
cleanupMessageFile = do_QueryInterface(messageFileParent, &rv);
|
|
|
|
#endif
|
|
|
|
cleanupMessageFile->SetLeafName("res");
|
|
|
|
cleanupMessageFile->Append(CLEANUP_MESSAGE_FILENAME);
|
|
|
|
|
|
|
|
PRFileDesc* fd;
|
|
|
|
cleanupMessageFile->OpenNSPRFileDesc(PR_RDONLY, 0664, &fd);
|
|
|
|
if (fd)
|
|
|
|
{
|
|
|
|
numRead = PR_Read(fd, cleanupMessage, sizeof(cleanupMessage));
|
|
|
|
if (numRead > 0)
|
|
|
|
cleanupMessage[numRead] = 0;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//Something was wrong with the translated message file. empty?
|
|
|
|
strcpy(cleanupMessage, lastResortMessage);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
//Couldn't open the translated message file
|
|
|
|
strcpy(cleanupMessage, lastResortMessage);
|
|
|
|
}
|
|
|
|
//The cleanup registry file exists so we have cleanup work to do
|
|
|
|
#ifdef MOZ_WIDGET_GTK
|
|
|
|
gtk_init(&argc, &argv);
|
|
|
|
#endif
|
|
|
|
ShowOSAlert(cleanupMessage);
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFile> cleanupUtility;
|
|
|
|
registryFile->Clone(getter_AddRefs(cleanupUtility));
|
|
|
|
cleanupUtility->SetLeafName(CLEANUP_UTIL);
|
|
|
|
|
|
|
|
//Create the process framework to run the cleanup utility
|
|
|
|
nsCOMPtr<nsIProcess> cleanupProcess = do_CreateInstance(kIProcessCID);
|
|
|
|
rv = cleanupProcess->Init(cleanupUtility);
|
|
|
|
if (NS_SUCCEEDED(rv))
|
|
|
|
rv = cleanupProcess->Run(PR_FALSE,nsnull, 0, nsnull);
|
|
|
|
|
|
|
|
//We must exit because all open files must be released by the system
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
1999-11-30 04:50:42 +00:00
|
|
|
#ifdef DEBUG_warren
|
|
|
|
#ifdef XP_PC
|
|
|
|
#define _CRTDBG_MAP_ALLOC
|
|
|
|
#include <crtdbg.h>
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2000-01-11 02:30:12 +00:00
|
|
|
#if defined(FREEBSD)
|
|
|
|
// pick up fpsetmask prototype.
|
|
|
|
#include <floatingpoint.h>
|
|
|
|
#endif
|
|
|
|
|
2000-05-12 22:37:20 +00:00
|
|
|
// Note: nativeApp is an owning reference that this function has responsibility
|
2000-02-04 14:40:08 +00:00
|
|
|
// to release. This responsibility is delegated to the app shell service
|
|
|
|
// (see nsAppShellService::Initialize call, below).
|
2000-05-12 22:37:20 +00:00
|
|
|
static nsresult main1(int argc, char* argv[], nsISupports *nativeApp )
|
1999-08-31 02:49:12 +00:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
|
2001-05-17 18:35:38 +00:00
|
|
|
//----------------------------------------------------------------
|
|
|
|
// First we need to check if a previous installation occured and
|
|
|
|
// if so, make sure it finished and cleaned up correctly.
|
|
|
|
//
|
|
|
|
// If there is an xpicleanup.dat file left around, that means the
|
|
|
|
// previous installation did not finish correctly. We must cleanup
|
|
|
|
// before a valid mozilla can run.
|
|
|
|
//
|
|
|
|
// Show the user a platform-specific Alert message, then spawn the
|
|
|
|
// xpicleanup utility, then exit.
|
|
|
|
//----------------------------------------------------------------
|
|
|
|
rv = VerifyInstallation(argc, argv);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
1999-11-30 04:50:42 +00:00
|
|
|
#ifdef DEBUG_warren
|
|
|
|
// _CrtSetDbgFlag(_CRTDBG_ALLOC_MEM_DF | _CRTDBG_CHECK_ALWAYS_DF);
|
|
|
|
#endif
|
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
#ifndef XP_MAC
|
|
|
|
// Unbuffer debug output (necessary for automated QA performance scripts).
|
|
|
|
setbuf( stdout, 0 );
|
|
|
|
#endif
|
2000-01-11 02:30:12 +00:00
|
|
|
|
|
|
|
#if defined(FREEBSD)
|
|
|
|
// Disable all SIGFPE's on FreeBSD, as it has non-IEEE-conformant fp
|
|
|
|
// trap behavior that trips up on floating-point tests performed by
|
|
|
|
// the JS engine. See bugzilla bug 9967 details.
|
|
|
|
fpsetmask(0);
|
|
|
|
#endif
|
2000-02-15 01:32:12 +00:00
|
|
|
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsIEventQueueService> eventQService(do_GetService(NS_EVENTQUEUESERVICE_CONTRACTID, &rv));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2000-08-11 21:51:52 +00:00
|
|
|
// XXX: What if this fails?
|
|
|
|
rv = eventQService->CreateThreadEventQueue();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2000-05-17 01:55:46 +00:00
|
|
|
// Setup an autoreg obserer, so that we can update a progress
|
|
|
|
// string in the splash screen
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsIObserverService> obsService(do_GetService(NS_OBSERVERSERVICE_CONTRACTID));
|
2000-05-17 01:55:46 +00:00
|
|
|
if (obsService)
|
|
|
|
{
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsIObserver> splashScreenObserver(do_QueryInterface(nativeApp));
|
2000-05-17 01:55:46 +00:00
|
|
|
if (splashScreenObserver)
|
|
|
|
{
|
2001-01-17 04:44:13 +00:00
|
|
|
obsService->AddObserver(splashScreenObserver, NS_ConvertASCIItoUCS2(NS_XPCOM_AUTOREGISTRATION_OBSERVER_ID).get());
|
2000-05-17 01:55:46 +00:00
|
|
|
}
|
|
|
|
}
|
2000-05-17 04:44:14 +00:00
|
|
|
|
|
|
|
#if XP_MAC
|
2000-05-16 22:14:55 +00:00
|
|
|
stTSMCloser tsmCloser;
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-02-11 22:10:43 +00:00
|
|
|
rv = InitializeMacCommandLine( argc, argv);
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "Initializing AppleEvents failed");
|
2000-05-16 22:14:55 +00:00
|
|
|
#endif
|
1999-09-03 23:41:26 +00:00
|
|
|
|
2001-06-28 00:06:16 +00:00
|
|
|
// Ask XPInstall if we need to autoregister anything new.
|
|
|
|
PRBool needAutoReg = NS_SoftwareUpdateNeedsAutoReg();
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
// _Always_ autoreg if we're in a debug build, under the assumption
|
|
|
|
// that people are busily modifying components and will be angry if
|
|
|
|
// their changes aren't noticed.
|
|
|
|
needAutoReg = PR_TRUE;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
NS_SetupRegistry_1(needAutoReg);
|
|
|
|
|
|
|
|
if (needAutoReg) // XXX ...and autoreg was successful?
|
|
|
|
NS_SoftwareUpdateDidAutoReg();
|
2000-02-15 01:32:12 +00:00
|
|
|
|
2000-05-17 01:55:46 +00:00
|
|
|
// remove the nativeApp as an XPCOM autoreg observer
|
|
|
|
if (obsService)
|
|
|
|
{
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsIObserver> splashScreenObserver(do_QueryInterface(nativeApp));
|
2000-05-17 01:55:46 +00:00
|
|
|
if (splashScreenObserver)
|
|
|
|
{
|
2001-01-17 04:44:13 +00:00
|
|
|
obsService->RemoveObserver(splashScreenObserver, NS_ConvertASCIItoUCS2(NS_XPCOM_AUTOREGISTRATION_OBSERVER_ID).get());
|
2000-05-17 01:55:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-02-15 01:32:12 +00:00
|
|
|
// Start up the core services:
|
2001-03-28 23:00:02 +00:00
|
|
|
|
|
|
|
// Please do not add new things to main1() - please hook into the
|
|
|
|
// nsIAppStartupNotifier service.
|
|
|
|
nsCOMPtr<nsIObserver> startupNotifier = do_CreateInstance(NS_APPSTARTUPNOTIFIER_CONTRACTID, &rv);
|
|
|
|
if(NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
startupNotifier->Observe(nsnull, APPSTARTUP_TOPIC, nsnull);
|
|
|
|
|
2000-08-11 20:28:32 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
// Initialize the cmd line service
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsICmdLineService> cmdLineArgs(do_GetService(kCmdLineServiceCID, &rv));
|
1999-11-30 04:50:42 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to get command line service");
|
2000-05-17 04:44:14 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2000-08-11 21:12:27 +00:00
|
|
|
NS_ASSERTION(PR_FALSE, "Could not obtain CmdLine processing service\n");
|
1999-08-31 02:49:12 +00:00
|
|
|
return rv;
|
|
|
|
}
|
2000-05-17 04:44:14 +00:00
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
rv = cmdLineArgs->Initialize(argc, argv);
|
1999-11-30 04:50:42 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to initialize command line args");
|
2001-01-17 04:44:13 +00:00
|
|
|
if (rv == NS_ERROR_INVALID_ARG) {
|
1999-08-31 02:49:12 +00:00
|
|
|
PrintUsage();
|
|
|
|
return rv;
|
|
|
|
}
|
1999-08-31 07:36:02 +00:00
|
|
|
|
2001-06-27 07:38:53 +00:00
|
|
|
rv = InstallGlobalLocale(cmdLineArgs);
|
|
|
|
if(NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsIAppShellService> appShell(do_GetService(kAppShellServiceCID, &rv));
|
1999-11-30 04:50:42 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to get the appshell service");
|
2000-08-25 00:38:28 +00:00
|
|
|
|
|
|
|
/* if we couldn't get the nsIAppShellService service, then we should hide the
|
|
|
|
splash screen and return */
|
1999-08-31 02:49:12 +00:00
|
|
|
if (NS_FAILED(rv)) {
|
2000-05-12 22:37:20 +00:00
|
|
|
// See if platform supports nsINativeAppSupport.
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsINativeAppSupport> nativeAppSupport(do_QueryInterface(nativeApp));
|
2000-08-25 00:38:28 +00:00
|
|
|
if (nativeAppSupport) {
|
|
|
|
// Use that interface to remove splash screen.
|
|
|
|
nativeAppSupport->HideSplashScreen();
|
2000-05-12 22:37:20 +00:00
|
|
|
} else {
|
2000-08-25 00:38:28 +00:00
|
|
|
// See if platform supports nsISplashScreen, instead.
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsISplashScreen> splashScreen(do_QueryInterface(nativeApp));
|
2000-08-25 00:38:28 +00:00
|
|
|
if (splashScreen) {
|
|
|
|
splashScreen->Hide();
|
|
|
|
}
|
2000-05-12 22:37:20 +00:00
|
|
|
}
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-05-12 22:37:20 +00:00
|
|
|
// Release argument object.
|
2000-08-25 00:38:28 +00:00
|
|
|
NS_IF_RELEASE(nativeApp);
|
1999-08-31 07:36:02 +00:00
|
|
|
return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
}
|
|
|
|
|
2000-08-25 00:38:28 +00:00
|
|
|
|
|
|
|
// Create the Application Shell instance...
|
|
|
|
rv = appShell->Initialize(cmdLineArgs, nativeApp);
|
|
|
|
|
2000-05-12 22:37:20 +00:00
|
|
|
// We are done with the native app (or splash screen) object here;
|
|
|
|
// the app shell owns it now.
|
2000-08-25 00:38:28 +00:00
|
|
|
NS_IF_RELEASE(nativeApp);
|
|
|
|
|
1999-11-30 04:50:42 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to initialize appshell");
|
2000-08-25 00:38:28 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
2001-06-20 06:49:22 +00:00
|
|
|
|
2001-02-26 00:31:44 +00:00
|
|
|
rv = InitializeWindowCreator();
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to initialize window creator");
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2001-06-20 06:49:22 +00:00
|
|
|
// So we can open and close windows during startup
|
|
|
|
appShell->SetQuitOnLastWindowClosing(PR_FALSE);
|
|
|
|
|
2000-09-22 05:05:48 +00:00
|
|
|
// Initialize Profile Service here.
|
|
|
|
rv = InitializeProfileService(cmdLineArgs);
|
2000-05-16 22:14:55 +00:00
|
|
|
if (NS_FAILED(rv)) return rv;
|
1999-08-31 02:49:12 +00:00
|
|
|
|
2000-10-13 01:52:45 +00:00
|
|
|
// Enumerate AppShellComponenets
|
|
|
|
appShell->EnumerateAndInitializeComponents();
|
|
|
|
|
1999-10-12 22:20:28 +00:00
|
|
|
// rjc: now must explicitly call appshell's CreateHiddenWindow() function AFTER profile manager.
|
2000-09-01 01:54:35 +00:00
|
|
|
// if the profile manager ever switches to using nsIDOMWindowInternal stuff, this might have to change
|
1999-10-12 22:20:28 +00:00
|
|
|
appShell->CreateHiddenWindow();
|
|
|
|
|
1999-08-31 02:49:12 +00:00
|
|
|
// 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.
|
2000-02-26 08:29:40 +00:00
|
|
|
#ifdef XP_MAC
|
|
|
|
// if we do no command line args on the mac, it says argc is 0, and not 1
|
|
|
|
rv = DoCommandLines( cmdLineArgs, ((argc == 1) || (argc == 0)) );
|
|
|
|
#else
|
1999-09-16 06:50:17 +00:00
|
|
|
rv = DoCommandLines( cmdLineArgs, (argc == 1) );
|
2000-02-26 08:29:40 +00:00
|
|
|
#endif /* XP_MAC */
|
1999-11-30 04:50:42 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to process command line");
|
1999-08-31 02:49:12 +00:00
|
|
|
if ( NS_FAILED(rv) )
|
1999-08-31 07:36:02 +00:00
|
|
|
return rv;
|
2000-03-07 21:02:50 +00:00
|
|
|
|
2000-05-17 04:44:14 +00:00
|
|
|
// Make sure there exists at least 1 window.
|
1999-11-30 04:50:42 +00:00
|
|
|
rv = Ensure1Window( cmdLineArgs );
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to Ensure1Window");
|
|
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
|
2000-11-07 08:04:06 +00:00
|
|
|
// Startup wallet service so it registers for notifications
|
2001-01-17 04:44:13 +00:00
|
|
|
nsCOMPtr<nsIWalletService> walletService(do_GetService(NS_WALLETSERVICE_CONTRACTID, &rv));
|
2001-06-20 06:49:22 +00:00
|
|
|
|
|
|
|
// From this point on, should be true
|
|
|
|
appShell->SetQuitOnLastWindowClosing(PR_TRUE);
|
1999-08-31 02:49:12 +00:00
|
|
|
// Start main event loop
|
1999-02-23 07:17:10 +00:00
|
|
|
rv = appShell->Run();
|
1999-11-30 04:50:42 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "failed to run appshell");
|
2000-04-27 04:02:22 +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();
|
|
|
|
|
2000-05-16 22:14:55 +00:00
|
|
|
return rv;
|
1998-12-03 01:37:46 +00:00
|
|
|
}
|
1999-07-28 08:42:53 +00:00
|
|
|
|
2000-01-04 03:06:25 +00:00
|
|
|
// English text needs to go into a dtd file.
|
2000-05-16 22:14:55 +00:00
|
|
|
// But when this is called we have no components etc. These strings must either be
|
|
|
|
// here, or in a native resource file.
|
|
|
|
static void DumpHelp(char *appname)
|
1999-09-16 11:30:18 +00:00
|
|
|
{
|
2000-02-04 23:11:19 +00:00
|
|
|
printf("Usage: %s [ options ... ] [URL]\n", appname);
|
1999-12-28 07:41:05 +00:00
|
|
|
printf(" where options include:\n");
|
|
|
|
printf("\n");
|
2001-01-17 01:40:11 +00:00
|
|
|
|
2001-04-27 21:35:56 +00:00
|
|
|
#ifdef MOZ_WIDGET_GTK
|
2001-01-17 01:40:11 +00:00
|
|
|
/* insert gtk options above moz options, like any other gtk app
|
|
|
|
*
|
|
|
|
* note: this isn't a very cool way to do things -- i'd rather get
|
|
|
|
* these straight from a user's gtk version -- but it seems to be
|
|
|
|
* what most gtk apps do. -dr
|
|
|
|
*/
|
|
|
|
|
|
|
|
printf("GTK options\n");
|
|
|
|
printf("%s--gdk-debug=FLAGS%sGdk debugging flags to set\n", HELP_SPACER_1, HELP_SPACER_2);
|
|
|
|
printf("%s--gdk-no-debug=FLAGS%sGdk debugging flags to unset\n", HELP_SPACER_1, HELP_SPACER_2);
|
2001-04-27 21:35:56 +00:00
|
|
|
printf("%s--gtk-debug=FLAGS%sGtk+ debugging flags to set\n", HELP_SPACER_1, HELP_SPACER_2);
|
|
|
|
printf("%s--gtk-no-debug=FLAGS%sGtk+ debugging flags to unset\n", HELP_SPACER_1, HELP_SPACER_2);
|
|
|
|
printf("%s--gtk-module=MODULE%sLoad an additional Gtk module\n", HELP_SPACER_1, HELP_SPACER_2);
|
|
|
|
|
|
|
|
/* end gtk options */
|
|
|
|
#endif
|
|
|
|
#ifdef MOZ_X11
|
|
|
|
printf("X11 options\n");
|
2001-01-17 01:40:11 +00:00
|
|
|
printf("%s--display=DISPLAY%sX display to use\n", HELP_SPACER_1, HELP_SPACER_2);
|
|
|
|
printf("%s--sync%sMake X calls synchronous\n", HELP_SPACER_1, HELP_SPACER_2);
|
|
|
|
printf("%s--no-xshm%sDon't use X shared memory extension\n", HELP_SPACER_1, HELP_SPACER_2);
|
|
|
|
printf("%s--xim-preedit=STYLE\n", HELP_SPACER_1);
|
|
|
|
printf("%s--xim-status=STYLE\n", HELP_SPACER_1);
|
2001-04-27 21:35:56 +00:00
|
|
|
#endif
|
|
|
|
#ifdef XP_UNIX
|
2001-01-17 01:40:11 +00:00
|
|
|
printf("%s--g-fatal-warnings%sMake all warnings fatal\n", HELP_SPACER_1, HELP_SPACER_2);
|
2001-04-27 21:35:56 +00:00
|
|
|
|
2001-01-17 01:40:11 +00:00
|
|
|
printf("\nMozilla options\n");
|
|
|
|
#endif
|
|
|
|
|
2000-02-04 23:11:19 +00:00
|
|
|
printf("%s-height <value>%sSet height of startup window to <value>.\n",HELP_SPACER_1,HELP_SPACER_2);
|
|
|
|
printf("%s-h or -help%sPrint this message.\n",HELP_SPACER_1,HELP_SPACER_2);
|
|
|
|
printf("%s-installer%sStart with 4.x migration window.\n",HELP_SPACER_1,HELP_SPACER_2);
|
|
|
|
printf("%s-width <value>%sSet width of startup window to <value>.\n",HELP_SPACER_1,HELP_SPACER_2);
|
|
|
|
printf("%s-v or -version%sPrint %s version.\n",HELP_SPACER_1,HELP_SPACER_2, appname);
|
2000-12-21 22:22:04 +00:00
|
|
|
printf("%s-CreateProfile <profile>%sCreate <profile>.\n",HELP_SPACER_1,HELP_SPACER_2);
|
2000-02-04 23:11:19 +00:00
|
|
|
printf("%s-P <profile>%sStart with <profile>.\n",HELP_SPACER_1,HELP_SPACER_2);
|
|
|
|
printf("%s-ProfileWizard%sStart with profile wizard.\n",HELP_SPACER_1,HELP_SPACER_2);
|
|
|
|
printf("%s-ProfileManager%sStart with profile manager.\n",HELP_SPACER_1,HELP_SPACER_2);
|
|
|
|
printf("%s-SelectProfile%sStart with profile selection dialog.\n",HELP_SPACER_1,HELP_SPACER_2);
|
2001-06-27 07:38:53 +00:00
|
|
|
printf("%s-UILocale <locale>%sStart with <locale> resources as UI Locale.\n",HELP_SPACER_1,HELP_SPACER_2);
|
|
|
|
printf("%s-contentLocale <locale>%sStart with <locale> resources as content Locale.\n",HELP_SPACER_1,HELP_SPACER_2);
|
2001-03-06 15:51:05 +00:00
|
|
|
#ifdef XP_WIN32
|
|
|
|
printf("%s-console%sStart Mozilla with a debugging console.\n",HELP_SPACER_1,HELP_SPACER_2);
|
|
|
|
#endif
|
2001-02-22 10:23:11 +00:00
|
|
|
#ifdef MOZ_ENABLE_XREMOTE
|
2000-12-05 21:34:39 +00:00
|
|
|
printf("%s-remote <command>%sExecute <command> in an already running\n"
|
|
|
|
"%sMozilla process. For more info, see:\n"
|
2001-03-27 07:48:11 +00:00
|
|
|
"\n%shttp://www.mozilla.org/unix/remote.html\n\n",
|
2000-12-05 21:34:39 +00:00
|
|
|
HELP_SPACER_1,HELP_SPACER_1,HELP_SPACER_4,HELP_SPACER_2);
|
2000-02-13 22:24:14 +00:00
|
|
|
printf("%s-splash%sEnable splash screen.\n",HELP_SPACER_1,HELP_SPACER_2);
|
|
|
|
#else
|
2000-02-13 16:49:41 +00:00
|
|
|
printf("%s-nosplash%sDisable splash screen.\n",HELP_SPACER_1,HELP_SPACER_2);
|
2000-05-17 05:44:05 +00:00
|
|
|
#ifdef XP_PC
|
|
|
|
printf("%s-quiet%sDisable splash screen.\n",HELP_SPACER_1,HELP_SPACER_2);
|
|
|
|
#endif
|
2000-02-13 22:24:14 +00:00
|
|
|
#endif
|
2000-02-04 23:11:19 +00:00
|
|
|
|
2000-02-27 20:51:11 +00:00
|
|
|
// this works, but only after the components have registered. so if you drop in a new command line handler, -help
|
2000-02-26 03:52:06 +00:00
|
|
|
// won't not until the second run.
|
|
|
|
// out of the bug, because we ship a component.reg file, it works correctly.
|
2000-02-04 23:11:19 +00:00
|
|
|
DumpArbitraryHelp();
|
1999-09-16 11:30:18 +00:00
|
|
|
}
|
|
|
|
|
2000-12-20 23:20:20 +00:00
|
|
|
|
|
|
|
// Print out user agent from the HTTP Handler service,
|
|
|
|
// and the Build ID from nsBuildID.h.
|
|
|
|
static nsresult DumpVersion(char *appname)
|
1999-09-16 11:30:18 +00:00
|
|
|
{
|
2000-12-20 23:20:20 +00:00
|
|
|
nsresult rv = NS_OK;
|
|
|
|
long buildID = NS_BUILD_ID; // 10-digit number
|
|
|
|
|
|
|
|
// Get httpHandler service.
|
2001-05-11 21:05:08 +00:00
|
|
|
nsCOMPtr <nsIHttpProtocolHandler> httpHandler(do_GetService("@mozilla.org/network/protocol;1?name=http", &rv));
|
2000-12-20 23:20:20 +00:00
|
|
|
NS_ENSURE_SUCCESS(rv,rv);
|
|
|
|
|
2001-05-11 21:05:08 +00:00
|
|
|
nsXPIDLCString agent;
|
2000-12-20 23:20:20 +00:00
|
|
|
httpHandler->GetUserAgent(getter_Copies(agent));
|
|
|
|
|
2001-05-11 21:05:08 +00:00
|
|
|
printf("%s", agent.get());
|
2000-12-20 23:20:20 +00:00
|
|
|
|
|
|
|
if(buildID) {
|
|
|
|
printf(", build %u\n", (unsigned int)buildID);
|
|
|
|
} else {
|
|
|
|
printf(" <developer build>\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
1999-09-16 11:30:18 +00:00
|
|
|
}
|
1999-08-31 02:49:12 +00:00
|
|
|
|
2001-01-31 20:22:41 +00:00
|
|
|
#ifdef MOZ_ENABLE_XREMOTE
|
2000-10-20 05:14:01 +00:00
|
|
|
// use int here instead of a PR type since it will be returned
|
|
|
|
// from main - just to keep types consistent
|
|
|
|
static int HandleRemoteArguments(int argc, char* argv[], PRBool *aArgUsed)
|
|
|
|
{
|
|
|
|
int i = 0;
|
|
|
|
for (i=1; i < argc; i++) {
|
|
|
|
if (PL_strcasecmp(argv[i], "-remote") == 0) {
|
|
|
|
// someone used a -remote flag
|
|
|
|
*aArgUsed = PR_TRUE;
|
|
|
|
// check to make sure there's another arg
|
|
|
|
if (argc-1 == i) {
|
|
|
|
PR_fprintf(PR_STDERR, "-remote requires an argument\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
// try to get the X remote client
|
|
|
|
nsCOMPtr<nsIXRemoteClient> client (do_CreateInstance(NS_XREMOTECLIENT_CONTRACTID));
|
|
|
|
if (!client)
|
|
|
|
return 1;
|
|
|
|
nsresult rv;
|
|
|
|
// try to init - connects to the X server and stuff
|
|
|
|
rv = client->Init();
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
PR_fprintf(PR_STDERR, "Failed to connect to X server.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
PRBool success = PR_FALSE;
|
|
|
|
rv = client->SendCommand(argv[i+1], &success);
|
|
|
|
// did the command fail?
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
PR_fprintf(PR_STDERR, "Failed to send command.\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
// was there a window not running?
|
|
|
|
if (!success) {
|
|
|
|
PR_fprintf(PR_STDERR, "No running window found.\n");
|
2000-11-29 21:58:30 +00:00
|
|
|
return 2;
|
2000-10-20 05:14:01 +00:00
|
|
|
}
|
|
|
|
client->Shutdown();
|
|
|
|
// success
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif /* XP_UNIX */
|
1999-09-18 01:43:35 +00:00
|
|
|
|
2000-05-16 22:14:55 +00:00
|
|
|
static PRBool HandleDumpArguments(int argc, char* argv[])
|
|
|
|
{
|
2001-02-12 21:16:02 +00:00
|
|
|
for (int i=1; i<argc; i++) {
|
2000-04-20 04:35:07 +00:00
|
|
|
if ((PL_strcasecmp(argv[i], "-h") == 0)
|
2000-05-17 04:44:14 +00:00
|
|
|
|| (PL_strcasecmp(argv[i], "-help") == 0)
|
2000-04-25 02:15:55 +00:00
|
|
|
#if defined(XP_UNIX) || defined(XP_BEOS)
|
2000-04-20 04:35:07 +00:00
|
|
|
|| (PL_strcasecmp(argv[i], "--help") == 0)
|
2000-04-25 02:15:55 +00:00
|
|
|
#endif /* XP_UNIX || XP_BEOS*/
|
2000-02-08 12:10:22 +00:00
|
|
|
#ifdef XP_PC
|
2000-04-20 04:35:07 +00:00
|
|
|
|| (PL_strcasecmp(argv[i], "/h") == 0)
|
|
|
|
|| (PL_strcasecmp(argv[i], "/help") == 0)
|
|
|
|
|| (PL_strcasecmp(argv[i], "/?") == 0)
|
2000-02-08 12:10:22 +00:00
|
|
|
#endif /* XP_PC */
|
2000-04-20 04:35:07 +00:00
|
|
|
) {
|
|
|
|
DumpHelp(argv[0]);
|
2000-05-16 22:14:55 +00:00
|
|
|
return PR_TRUE;
|
2000-04-20 04:35:07 +00:00
|
|
|
}
|
|
|
|
if ((PL_strcasecmp(argv[i], "-v") == 0)
|
2000-05-17 04:44:14 +00:00
|
|
|
|| (PL_strcasecmp(argv[i], "-version") == 0)
|
2000-04-25 02:15:55 +00:00
|
|
|
#if defined(XP_UNIX) || defined(XP_BEOS)
|
2000-04-20 04:35:07 +00:00
|
|
|
|| (PL_strcasecmp(argv[i], "--version") == 0)
|
2000-04-25 02:15:55 +00:00
|
|
|
#endif /* XP_UNIX || XP_BEOS */
|
2000-02-08 12:10:22 +00:00
|
|
|
#ifdef XP_PC
|
2000-04-20 04:35:07 +00:00
|
|
|
|| (PL_strcasecmp(argv[i], "/v") == 0)
|
|
|
|
|| (PL_strcasecmp(argv[i], "/version") == 0)
|
2000-02-08 12:10:22 +00:00
|
|
|
#endif /* XP_PC */
|
2000-04-20 04:35:07 +00:00
|
|
|
) {
|
|
|
|
DumpVersion(argv[0]);
|
2000-05-16 22:14:55 +00:00
|
|
|
return PR_TRUE;
|
2000-04-20 04:35:07 +00:00
|
|
|
}
|
1999-09-16 11:30:18 +00:00
|
|
|
}
|
2000-04-20 04:35:07 +00:00
|
|
|
|
2000-05-16 22:14:55 +00:00
|
|
|
return PR_FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static PRBool GetWantSplashScreen(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
PRBool dosplash;
|
|
|
|
// We can't use the command line service here because it isn't running yet
|
|
|
|
#if defined(XP_UNIX) && !defined(NTO)
|
|
|
|
dosplash = PR_FALSE;
|
|
|
|
for (i=1; i<argc; i++)
|
|
|
|
if ((PL_strcasecmp(argv[i], "-splash") == 0)
|
|
|
|
|| (PL_strcasecmp(argv[i], "--splash") == 0))
|
|
|
|
dosplash = PR_TRUE;
|
|
|
|
#else
|
|
|
|
dosplash = PR_TRUE;
|
|
|
|
for (i=1; i<argc; i++)
|
|
|
|
if ((PL_strcasecmp(argv[i], "-nosplash") == 0)
|
|
|
|
#ifdef XP_BEOS
|
|
|
|
|| (PL_strcasecmp(argv[i], "--nosplash") == 0)
|
|
|
|
#endif /* XP_BEOS */
|
|
|
|
#ifdef XP_PC
|
|
|
|
|| (PL_strcasecmp(argv[i], "/nosplash") == 0)
|
|
|
|
#endif /* XP_PC */
|
|
|
|
) {
|
|
|
|
dosplash = PR_FALSE;
|
|
|
|
}
|
|
|
|
#endif
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-05-16 22:14:55 +00:00
|
|
|
return dosplash;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
#if defined(XP_UNIX)
|
|
|
|
InstallUnixSignalHandlers(argv[0]);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Handle -help and -version command line arguments.
|
2000-08-23 00:53:04 +00:00
|
|
|
// They should% return quick, so we deal with them here.
|
2000-05-16 22:14:55 +00:00
|
|
|
if (HandleDumpArguments(argc, argv))
|
|
|
|
return 0;
|
2001-01-25 22:54:05 +00:00
|
|
|
|
2000-06-01 02:10:53 +00:00
|
|
|
#ifdef NS_TRACE_MALLOC
|
|
|
|
argc = NS_TraceMallocStartupArgs(argc, argv);
|
|
|
|
#endif
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-01-18 02:45:07 +00:00
|
|
|
// Call the code to install our handler
|
|
|
|
#ifdef MOZ_JPROF
|
|
|
|
setupProfilingStuff();
|
|
|
|
#endif
|
|
|
|
|
2000-05-12 22:37:20 +00:00
|
|
|
// Try to allocate "native app support."
|
|
|
|
// Note: this object is not released here. It is passed to main1 which
|
|
|
|
// has responsibility to release it.
|
|
|
|
nsINativeAppSupport *nativeApp = 0;
|
2000-05-16 22:14:55 +00:00
|
|
|
nsresult rv = NS_CreateNativeAppSupport( &nativeApp );
|
2000-05-12 22:37:20 +00:00
|
|
|
|
|
|
|
// See if we can run.
|
2000-05-16 22:14:55 +00:00
|
|
|
if (nativeApp)
|
|
|
|
{
|
2000-05-12 22:37:20 +00:00
|
|
|
PRBool canRun = PR_FALSE;
|
|
|
|
rv = nativeApp->Start( &canRun );
|
2000-05-16 22:14:55 +00:00
|
|
|
if (!canRun) {
|
2000-05-12 22:37:20 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// If platform doesn't implement nsINativeAppSupport, fall
|
|
|
|
// back to old method.
|
2000-05-16 22:14:55 +00:00
|
|
|
if (!NS_CanRun())
|
2000-05-17 04:44:14 +00:00
|
|
|
return 1;
|
2000-05-12 22:37:20 +00:00
|
|
|
}
|
2000-02-04 14:40:08 +00:00
|
|
|
// Note: this object is not released here. It is passed to main1 which
|
|
|
|
// has responsibility to release it.
|
|
|
|
nsISplashScreen *splash = 0;
|
2000-05-16 22:14:55 +00:00
|
|
|
PRBool dosplash = GetWantSplashScreen(argc, argv);
|
2000-05-17 04:44:14 +00:00
|
|
|
|
2000-05-12 22:37:20 +00:00
|
|
|
if (dosplash && !nativeApp) {
|
2000-08-25 00:38:28 +00:00
|
|
|
// If showing splash screen and platform doesn't implement
|
|
|
|
// nsINativeAppSupport, then use older nsISplashScreen interface.
|
|
|
|
rv = NS_CreateSplashScreen(&splash);
|
|
|
|
NS_ASSERTION( NS_SUCCEEDED(rv), "NS_CreateSplashScreen failed" );
|
2000-02-13 16:49:41 +00:00
|
|
|
}
|
2000-02-04 14:40:08 +00:00
|
|
|
// If the platform has a splash screen, show it ASAP.
|
2000-05-16 22:14:55 +00:00
|
|
|
if (dosplash && nativeApp) {
|
2000-08-25 00:38:28 +00:00
|
|
|
nativeApp->ShowSplashScreen();
|
2000-05-16 22:14:55 +00:00
|
|
|
} else if (splash) {
|
2000-08-25 00:38:28 +00:00
|
|
|
splash->Show();
|
2000-02-04 14:40:08 +00:00
|
|
|
}
|
2000-08-25 00:38:28 +00:00
|
|
|
|
2001-06-20 20:21:49 +00:00
|
|
|
#ifdef _BUILD_STATIC_BIN
|
|
|
|
// Initialize XPCOM's module info table
|
|
|
|
NSGetStaticModuleInfo = apprunner_getModuleInfo;
|
|
|
|
#endif
|
|
|
|
|
2000-01-06 01:05:13 +00:00
|
|
|
rv = NS_InitXPCOM(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
|
|
|
|
2001-01-31 20:22:41 +00:00
|
|
|
#ifdef MOZ_ENABLE_XREMOTE
|
2000-10-20 05:14:01 +00:00
|
|
|
// handle -remote now that xpcom is fired up
|
|
|
|
int remoterv;
|
|
|
|
PRBool argused = PR_FALSE;
|
|
|
|
// argused will be true if someone tried to use a -remote flag. We
|
|
|
|
// always exit in that case.
|
|
|
|
remoterv = HandleRemoteArguments(argc, argv, &argused);
|
|
|
|
if (argused) {
|
|
|
|
NS_ShutdownXPCOM(NULL);
|
|
|
|
return remoterv;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2000-05-16 22:14:55 +00:00
|
|
|
nsresult mainResult = main1(argc, argv, nativeApp ? (nsISupports*)nativeApp : (nsISupports*)splash);
|
2000-02-15 01:32:12 +00:00
|
|
|
|
2000-08-25 00:38:28 +00:00
|
|
|
/* if main1() didn't succeed, then don't bother trying to shut down clipboard, etc */
|
2000-08-28 23:33:35 +00:00
|
|
|
if (NS_SUCCEEDED(mainResult)) {
|
2000-08-25 00:38:28 +00:00
|
|
|
rv = DoOnShutdown();
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "DoOnShutdown failed");
|
|
|
|
}
|
1999-11-04 00:08:59 +00:00
|
|
|
|
1999-08-31 07:36:02 +00:00
|
|
|
rv = NS_ShutdownXPCOM( NULL );
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "NS_ShutdownXPCOM failed");
|
2000-03-21 03:31:20 +00:00
|
|
|
|
2000-05-16 22:14:55 +00:00
|
|
|
return TranslateReturnValue(mainResult);
|
1999-07-28 08:42:53 +00:00
|
|
|
}
|
2000-02-04 14:40:08 +00:00
|
|
|
|
|
|
|
#if defined( XP_PC ) && defined( WIN32 )
|
|
|
|
// We need WinMain in order to not be a console app. This function is
|
|
|
|
// unused if we are a console application.
|
2000-05-16 22:14:55 +00:00
|
|
|
int WINAPI WinMain( HINSTANCE, HINSTANCE, LPSTR args, int )
|
|
|
|
{
|
2000-02-04 14:40:08 +00:00
|
|
|
// Do the real work.
|
|
|
|
return main( __argc, __argv );
|
|
|
|
}
|
|
|
|
#endif // XP_PC && WIN32
|