2015-04-09 20:25:05 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2002-08-21 14:25:54 +04:00
|
|
|
|
|
|
|
#ifndef _nsXULAppAPI_h__
|
|
|
|
#define _nsXULAppAPI_h__
|
|
|
|
|
2013-08-28 06:59:14 +04:00
|
|
|
#include "js/TypeDecls.h"
|
2014-01-30 22:26:54 +04:00
|
|
|
#include "mozilla/ArrayUtils.h"
|
2015-07-06 19:01:09 +03:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2020-11-23 19:12:02 +03:00
|
|
|
#include "nscore.h"
|
|
|
|
#include "xrecore.h"
|
2012-04-03 04:21:24 +04:00
|
|
|
|
Bug 1343075 - Use GeckoEditableSupport from PuppetWidget; r=masayuki r=rbarker r=snorp r=esawin
Bug 1343075 - 1a. Add TextEventDispatcherListener::GetIMEUpdatePreference; r=masayuki
Add a GetIMEUpdatePreference method to TextEventDispatcherListener to
optionally control which IME notifications are received by NotifyIME.
This patch also makes nsBaseWidget forward its GetIMEUpdatePreference
call to the widget's native TextEventDispatcherListener.
Bug 1343075 - 1b. Implement GetIMEUpdatePreference for all TextEventDispatcherListener; r=masayuki
This patch implements GetIMEUpdatePreference for all
TextEventDispatcherListener implementations, by moving previous
implementations of nsIWidget::GetIMEUpdatePreference.
Bug 1343075 - 2. Allow setting a PuppetWidget's native TextEventDispatcherListener; r=masayuki
In PuppetWidget, add getter and setter for the widget's native
TextEventDispatcherListener. This allows overriding of PuppetWidget's
default IME handling. For example, on Android, the PuppetWidget's native
TextEventDispatcherListener will communicate directly with Java IME code
in the main process.
Bug 1343075 - 3. Add AIDL interface for main process; r=rbarker
Add AIDL definition and implementation for an interface for the main
process that child processes can access.
Bug 1343075 - 4. Set Gecko thread JNIEnv for child process; r=snorp
Add a JNIEnv* parameter to XRE_SetAndroidChildFds, which is used to set
the Gecko thread JNIEnv for child processes. XRE_SetAndroidChildFds is
the only Android-specific entry point for child processes, so I think
it's the most logical place to initialize JNI.
Bug 1343075 - 5. Support multiple remote GeckoEditableChild; r=esawin
Support remote GeckoEditableChild instances that are created in the
content processes and connect to the parent process GeckoEditableParent
through binders.
Support having multiple GeckoEditableChild instances in GeckoEditable by
keeping track of which child is currently focused, and only allow
calls to/from the focused child by using access tokens.
Bug 1343075 - 6. Add method to get GeckoEditableParent instance; r=esawin
Add IProcessManager.getEditableParent, which a content process can call
to get the GeckoEditableParent instance that corresponds to a given
content process tab, from the main process.
Bug 1343075 - 7. Support GeckoEditableSupport in content processes; r=esawin
Support creating and running GeckoEditableSupport attached to a
PuppetWidget in content processes.
Because we don't know PuppetWidget's lifetime as well as nsWindow's,
when attached to PuppetWidget, we need to attach/detach our native
object on focus/blur, respectively.
Bug 1343075 - 8. Connect GeckoEditableSupport on PuppetWidget creation; r=esawin
Listen to the "tab-child-created" notification and attach our content
process GeckoEditableSupport to the new PuppetWidget.
Bug 1343075 - 9. Update auto-generated bindings; r=me
2017-03-08 06:34:39 +03:00
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
|
|
|
# include <jni.h>
|
|
|
|
#endif
|
|
|
|
|
2020-11-23 19:12:02 +03:00
|
|
|
class JSString;
|
|
|
|
class MessageLoop;
|
|
|
|
class nsIDirectoryServiceProvider;
|
|
|
|
class nsIFile;
|
|
|
|
class nsISupports;
|
|
|
|
struct JSContext;
|
|
|
|
struct XREChildData;
|
|
|
|
struct XREShellData;
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
class XREAppData;
|
|
|
|
struct BootstrapConfig;
|
|
|
|
struct Module;
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2005-07-23 18:00:07 +04:00
|
|
|
/**
|
2007-09-26 22:35:21 +04:00
|
|
|
* A directory service key which provides the platform-correct "application
|
|
|
|
* data" directory as follows, where $name and $vendor are as defined above and
|
|
|
|
* $vendor is optional:
|
|
|
|
*
|
|
|
|
* Windows:
|
|
|
|
* HOME = Documents and Settings\$USER\Application Data
|
|
|
|
* UAppData = $HOME[\$vendor]\$name
|
|
|
|
*
|
|
|
|
* Unix:
|
|
|
|
* HOME = ~
|
|
|
|
* UAppData = $HOME/.[$vendor/]$name
|
|
|
|
*
|
|
|
|
* Mac:
|
|
|
|
* HOME = ~
|
|
|
|
* UAppData = $HOME/Library/Application Support/$name
|
|
|
|
*
|
|
|
|
* Note that the "profile" member above will change the value of UAppData as
|
|
|
|
* follows:
|
|
|
|
*
|
|
|
|
* Windows:
|
|
|
|
* UAppData = $HOME\$profile
|
|
|
|
*
|
|
|
|
* Unix:
|
|
|
|
* UAppData = $HOME/.$profile
|
|
|
|
*
|
|
|
|
* Mac:
|
|
|
|
* UAppData = $HOME/Library/Application Support/$profile
|
2005-07-23 18:00:07 +04:00
|
|
|
*/
|
|
|
|
#define XRE_USER_APP_DATA_DIR "UAppData"
|
|
|
|
|
2005-10-04 22:06:26 +04:00
|
|
|
/**
|
|
|
|
* A directory service key which provides the executable file used to
|
|
|
|
* launch the current process. This is the same value returned by the
|
|
|
|
* XRE_GetBinaryPath function defined below.
|
|
|
|
*/
|
|
|
|
#define XRE_EXECUTABLE_FILE "XREExeF"
|
|
|
|
|
2006-01-12 18:29:10 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which specifies the profile
|
|
|
|
* directory. Unlike the NS_APP_USER_PROFILE_50_DIR key, this key may
|
|
|
|
* be available when the profile hasn't been "started", or after is
|
|
|
|
* has been shut down. If the application is running without a
|
|
|
|
* profile, such as when showing the profile manager UI, this key will
|
|
|
|
* not be available. This key is provided by the XUL apprunner or by
|
|
|
|
* the aAppDirProvider object passed to XRE_InitEmbedding.
|
|
|
|
*/
|
|
|
|
#define NS_APP_PROFILE_DIR_STARTUP "ProfDS"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A directory service key which specifies the profile
|
|
|
|
* directory. Unlike the NS_APP_USER_PROFILE_LOCAL_50_DIR key, this key may
|
|
|
|
* be available when the profile hasn't been "started", or after is
|
|
|
|
* has been shut down. If the application is running without a
|
|
|
|
* profile, such as when showing the profile manager UI, this key will
|
|
|
|
* not be available. This key is provided by the XUL apprunner or by
|
|
|
|
* the aAppDirProvider object passed to XRE_InitEmbedding.
|
|
|
|
*/
|
|
|
|
#define NS_APP_PROFILE_LOCAL_DIR_STARTUP "ProfLDS"
|
|
|
|
|
2008-01-15 18:13:59 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which specifies the system extension
|
|
|
|
* parent directory containing platform-specific extensions.
|
|
|
|
* This key may not be available on all platforms.
|
|
|
|
*/
|
|
|
|
#define XRE_SYS_LOCAL_EXTENSION_PARENT_DIR "XRESysLExtPD"
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A directory service key which specifies the system extension
|
|
|
|
* parent directory containing platform-independent extensions.
|
|
|
|
* This key may not be available on all platforms.
|
|
|
|
* Additionally, the directory may be equal to that returned by
|
|
|
|
* XRE_SYS_LOCAL_EXTENSION_PARENT_DIR on some platforms.
|
|
|
|
*/
|
|
|
|
#define XRE_SYS_SHARE_EXTENSION_PARENT_DIR "XRESysSExtPD"
|
|
|
|
|
2016-05-12 21:39:27 +03:00
|
|
|
#if defined(XP_UNIX) || defined(XP_MACOSX)
|
|
|
|
/**
|
|
|
|
* Directory service keys for the system-wide and user-specific
|
2017-09-12 19:58:23 +03:00
|
|
|
* directories where native manifests used by the WebExtensions
|
|
|
|
* native messaging and managed storage features are found.
|
2016-05-12 21:39:27 +03:00
|
|
|
*/
|
2017-09-12 19:58:23 +03:00
|
|
|
# define XRE_SYS_NATIVE_MANIFESTS "XRESysNativeManifests"
|
|
|
|
# define XRE_USER_NATIVE_MANIFESTS "XREUserNativeManifests"
|
2016-05-12 21:39:27 +03:00
|
|
|
#endif
|
|
|
|
|
2008-01-15 18:13:59 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which specifies the user system extension
|
|
|
|
* parent directory.
|
|
|
|
*/
|
|
|
|
#define XRE_USER_SYS_EXTENSION_DIR "XREUSysExt"
|
|
|
|
|
2017-10-04 20:43:49 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which specifies a directory where temporary
|
|
|
|
* system extensions can be loaded from during development.
|
|
|
|
*/
|
|
|
|
#define XRE_USER_SYS_EXTENSION_DEV_DIR "XRESysExtDev"
|
|
|
|
|
2011-01-20 01:37:24 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which specifies the distribution specific files for
|
|
|
|
* the application.
|
|
|
|
*/
|
|
|
|
#define XRE_APP_DISTRIBUTION_DIR "XREAppDist"
|
|
|
|
|
2015-09-25 02:03:01 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which specifies the location for system add-ons.
|
|
|
|
*/
|
|
|
|
#define XRE_APP_FEATURES_DIR "XREAppFeat"
|
|
|
|
|
2015-11-17 16:55:31 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which specifies the location for app dir add-ons.
|
|
|
|
* Should be a synonym for XCurProcD everywhere except in tests.
|
|
|
|
*/
|
|
|
|
#define XRE_ADDON_APP_DIR "XREAddonAppDir"
|
|
|
|
|
2019-10-29 11:58:29 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which specifies the distribution specific files for
|
|
|
|
* the application unique for each user.
|
|
|
|
* It's located at /run/user/$UID/<product name>/
|
|
|
|
*/
|
|
|
|
#define XRE_USER_RUNTIME_DIR "XREUserRunTimeDir"
|
|
|
|
|
2012-05-22 18:50:04 +04:00
|
|
|
/**
|
2016-05-25 05:26:09 +03:00
|
|
|
* A directory service key which provides the update directory. Callers should
|
|
|
|
* fall back to appDir.
|
|
|
|
* Windows: If vendor name exists:
|
Bug 1458314 - Move the update directory to an installation specific location r=rstrong
This change applies to Windows only.
Firefox will need to migrate the directory from the old location to the new location. This will be done only once by setting the pref `app.update.migrated.updateDir2.<install path hash>` to `true` once migration has completed.
Note: The pref name app.update.migrated.updateDir has already been used, thus the '2' suffix. It can be found in ESR24.
This also removes the old handling fallback for generating the update directory path. Since xulrunner is no longer supported, this should no longer be needed. If neither the vendor nor app name are defined, it falls back to the literal string "Mozilla".
The code to generate the update directory path and the installation hash have been moved to the updatecommon library. This will allow those functions to be used in Firefox, the Mozilla Maintenance Service, the Mozilla Maintenance Service Installer, and TestAUSHelper.
Additionally, the function that generates the update directory path now has extra functionality. It creates the update directory, sets the permissions on it and, optionally, recursively sets the permissions on everything within.
This patch adds functionality that allows Firefox to set permissions on the new update directory on write failure. It attempts to set the permissions itself and, if that fails and the maintenance service is enabled, it calls into the maintenance service to try from there. If a write fails and the permissions cannot be fixed, the user is prompted to reinstall.
Differential Revision: https://phabricator.services.mozilla.com/D4249
--HG--
rename : toolkit/mozapps/update/updater/win_dirent.cpp => toolkit/mozapps/update/common/win_dirent.cpp
rename : toolkit/mozapps/update/tests/unit_aus_update/cleanupSuccessLogMove.js => toolkit/mozapps/update/tests/unit_aus_update/updateDirectoryMigrate.js
extra : moz-landing-system : lando
2018-10-24 00:41:04 +03:00
|
|
|
* ProgramData\<vendor name>\updates\
|
|
|
|
* <hash of the path to XRE_EXECUTABLE_FILE's parent directory>
|
2016-05-25 05:26:09 +03:00
|
|
|
*
|
|
|
|
* If vendor name doesn't exist, but product name exists:
|
Bug 1458314 - Move the update directory to an installation specific location r=rstrong
This change applies to Windows only.
Firefox will need to migrate the directory from the old location to the new location. This will be done only once by setting the pref `app.update.migrated.updateDir2.<install path hash>` to `true` once migration has completed.
Note: The pref name app.update.migrated.updateDir has already been used, thus the '2' suffix. It can be found in ESR24.
This also removes the old handling fallback for generating the update directory path. Since xulrunner is no longer supported, this should no longer be needed. If neither the vendor nor app name are defined, it falls back to the literal string "Mozilla".
The code to generate the update directory path and the installation hash have been moved to the updatecommon library. This will allow those functions to be used in Firefox, the Mozilla Maintenance Service, the Mozilla Maintenance Service Installer, and TestAUSHelper.
Additionally, the function that generates the update directory path now has extra functionality. It creates the update directory, sets the permissions on it and, optionally, recursively sets the permissions on everything within.
This patch adds functionality that allows Firefox to set permissions on the new update directory on write failure. It attempts to set the permissions itself and, if that fails and the maintenance service is enabled, it calls into the maintenance service to try from there. If a write fails and the permissions cannot be fixed, the user is prompted to reinstall.
Differential Revision: https://phabricator.services.mozilla.com/D4249
--HG--
rename : toolkit/mozapps/update/updater/win_dirent.cpp => toolkit/mozapps/update/common/win_dirent.cpp
rename : toolkit/mozapps/update/tests/unit_aus_update/cleanupSuccessLogMove.js => toolkit/mozapps/update/tests/unit_aus_update/updateDirectoryMigrate.js
extra : moz-landing-system : lando
2018-10-24 00:41:04 +03:00
|
|
|
* ProgramData\<product name>\updates\
|
|
|
|
* <hash of the path to XRE_EXECUTABLE_FILE's parent directory>
|
2016-05-25 05:26:09 +03:00
|
|
|
*
|
|
|
|
* If neither vendor nor product name exists:
|
Bug 1458314 - Move the update directory to an installation specific location r=rstrong
This change applies to Windows only.
Firefox will need to migrate the directory from the old location to the new location. This will be done only once by setting the pref `app.update.migrated.updateDir2.<install path hash>` to `true` once migration has completed.
Note: The pref name app.update.migrated.updateDir has already been used, thus the '2' suffix. It can be found in ESR24.
This also removes the old handling fallback for generating the update directory path. Since xulrunner is no longer supported, this should no longer be needed. If neither the vendor nor app name are defined, it falls back to the literal string "Mozilla".
The code to generate the update directory path and the installation hash have been moved to the updatecommon library. This will allow those functions to be used in Firefox, the Mozilla Maintenance Service, the Mozilla Maintenance Service Installer, and TestAUSHelper.
Additionally, the function that generates the update directory path now has extra functionality. It creates the update directory, sets the permissions on it and, optionally, recursively sets the permissions on everything within.
This patch adds functionality that allows Firefox to set permissions on the new update directory on write failure. It attempts to set the permissions itself and, if that fails and the maintenance service is enabled, it calls into the maintenance service to try from there. If a write fails and the permissions cannot be fixed, the user is prompted to reinstall.
Differential Revision: https://phabricator.services.mozilla.com/D4249
--HG--
rename : toolkit/mozapps/update/updater/win_dirent.cpp => toolkit/mozapps/update/common/win_dirent.cpp
rename : toolkit/mozapps/update/tests/unit_aus_update/cleanupSuccessLogMove.js => toolkit/mozapps/update/tests/unit_aus_update/updateDirectoryMigrate.js
extra : moz-landing-system : lando
2018-10-24 00:41:04 +03:00
|
|
|
* ProgramData\Mozilla\updates
|
2016-05-25 05:26:09 +03:00
|
|
|
*
|
|
|
|
* Mac: ~/Library/Caches/Mozilla/updates/<absolute path to app dir>
|
|
|
|
*
|
|
|
|
* All others: Parent directory of XRE_EXECUTABLE_FILE.
|
2012-05-22 18:50:04 +04:00
|
|
|
*/
|
|
|
|
#define XRE_UPDATE_ROOT_DIR "UpdRootD"
|
|
|
|
|
Bug 1458314 - Move the update directory to an installation specific location r=rstrong
This change applies to Windows only.
Firefox will need to migrate the directory from the old location to the new location. This will be done only once by setting the pref `app.update.migrated.updateDir2.<install path hash>` to `true` once migration has completed.
Note: The pref name app.update.migrated.updateDir has already been used, thus the '2' suffix. It can be found in ESR24.
This also removes the old handling fallback for generating the update directory path. Since xulrunner is no longer supported, this should no longer be needed. If neither the vendor nor app name are defined, it falls back to the literal string "Mozilla".
The code to generate the update directory path and the installation hash have been moved to the updatecommon library. This will allow those functions to be used in Firefox, the Mozilla Maintenance Service, the Mozilla Maintenance Service Installer, and TestAUSHelper.
Additionally, the function that generates the update directory path now has extra functionality. It creates the update directory, sets the permissions on it and, optionally, recursively sets the permissions on everything within.
This patch adds functionality that allows Firefox to set permissions on the new update directory on write failure. It attempts to set the permissions itself and, if that fails and the maintenance service is enabled, it calls into the maintenance service to try from there. If a write fails and the permissions cannot be fixed, the user is prompted to reinstall.
Differential Revision: https://phabricator.services.mozilla.com/D4249
--HG--
rename : toolkit/mozapps/update/updater/win_dirent.cpp => toolkit/mozapps/update/common/win_dirent.cpp
rename : toolkit/mozapps/update/tests/unit_aus_update/cleanupSuccessLogMove.js => toolkit/mozapps/update/tests/unit_aus_update/updateDirectoryMigrate.js
extra : moz-landing-system : lando
2018-10-24 00:41:04 +03:00
|
|
|
/**
|
|
|
|
* A directory service key which provides the *old* update directory. This
|
|
|
|
* path should only be used when data needs to be migrated from the old update
|
|
|
|
* directory.
|
|
|
|
* Windows: If vendor name exists:
|
|
|
|
* Documents and Settings\<User>\Local Settings\Application Data\
|
|
|
|
* <vendor name>\updates\
|
|
|
|
* <hash of the path to XRE_EXECUTABLE_FILE's parent directory>
|
|
|
|
*
|
|
|
|
* If vendor name doesn't exist, but product name exists:
|
|
|
|
* Documents and Settings\<User>\Local Settings\Application Data\
|
|
|
|
* <product name>\updates\
|
|
|
|
* <hash of the path to XRE_EXECUTABLE_FILE's parent directory>
|
|
|
|
*
|
|
|
|
* If neither vendor nor product name exists:
|
|
|
|
* Documents and Settings\<User>\Local Settings\Application Data\
|
|
|
|
* Mozilla\updates
|
|
|
|
*
|
|
|
|
* This path does not exist on other operating systems
|
|
|
|
*/
|
|
|
|
#define XRE_OLD_UPDATE_ROOT_DIR "OldUpdRootD"
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
/**
|
|
|
|
* Begin an XUL application. Does not return until the user exits the
|
|
|
|
* application.
|
2005-05-12 17:23:30 +04:00
|
|
|
*
|
2007-12-31 18:15:43 +03:00
|
|
|
* @param argc/argv Command-line parameters to pass to the application. On
|
|
|
|
* Windows, these should be in UTF8. On unix-like platforms
|
|
|
|
* these are in the "native" character set.
|
2005-05-12 17:23:30 +04:00
|
|
|
*
|
2017-01-10 10:43:23 +03:00
|
|
|
* @param aConfig Information about the application to be run.
|
2005-05-12 17:23:30 +04:00
|
|
|
*
|
2004-06-18 01:23:51 +04:00
|
|
|
* @return A native result code suitable for returning from main().
|
|
|
|
*
|
2007-09-26 22:35:21 +04:00
|
|
|
* @note If the binary is linked against the standalone XPCOM glue,
|
2004-06-18 01:23:51 +04:00
|
|
|
* XPCOMGlueStartup() should be called before this method.
|
|
|
|
*/
|
2005-11-23 17:16:33 +03:00
|
|
|
XRE_API(int, XRE_main,
|
2017-01-10 10:43:23 +03:00
|
|
|
(int argc, char* argv[], const mozilla::BootstrapConfig& aConfig))
|
2005-03-19 00:24:05 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a path relative to the current working directory (or an absolute
|
2012-06-06 06:08:30 +04:00
|
|
|
* path), return an appropriate nsIFile object.
|
2007-12-31 18:15:43 +03:00
|
|
|
*
|
|
|
|
* @note Pass UTF8 strings on Windows... native charset on other platforms.
|
2005-03-19 00:24:05 +03:00
|
|
|
*/
|
2014-08-13 22:45:37 +04:00
|
|
|
XRE_API(nsresult, XRE_GetFileFromPath, (const char* aPath, nsIFile** aResult))
|
2002-08-21 14:25:54 +04:00
|
|
|
|
2005-06-13 20:45:22 +04:00
|
|
|
/**
|
|
|
|
* Get the path of the running application binary and store it in aResult.
|
|
|
|
*/
|
2017-09-28 04:37:27 +03:00
|
|
|
XRE_API(nsresult, XRE_GetBinaryPath, (nsIFile * *aResult))
|
2005-06-13 20:45:22 +04:00
|
|
|
|
2005-08-29 23:27:16 +04:00
|
|
|
/**
|
2010-06-10 22:11:11 +04:00
|
|
|
* Get the static module built in to libxul.
|
2005-08-29 23:27:16 +04:00
|
|
|
*/
|
2010-06-10 22:11:11 +04:00
|
|
|
XRE_API(const mozilla::Module*, XRE_GetStaticModule, ())
|
2005-08-29 23:27:16 +04:00
|
|
|
|
2006-01-12 18:29:10 +03:00
|
|
|
/**
|
|
|
|
* Lock a profile directory using platform-specific semantics.
|
|
|
|
*
|
|
|
|
* @param aDirectory The profile directory to lock.
|
|
|
|
* @param aLockObject An opaque lock object. The directory will remain locked
|
|
|
|
* as long as the XPCOM reference is held.
|
|
|
|
*/
|
2012-06-06 06:08:30 +04:00
|
|
|
XRE_API(nsresult, XRE_LockProfileDirectory,
|
2014-08-13 22:45:37 +04:00
|
|
|
(nsIFile * aDirectory, nsISupports** aLockObject))
|
2006-01-12 18:29:10 +03:00
|
|
|
|
2005-09-01 17:21:55 +04:00
|
|
|
/**
|
|
|
|
* Initialize libXUL for embedding purposes.
|
|
|
|
*
|
|
|
|
* @param aLibXULDirectory The directory in which the libXUL shared library
|
|
|
|
* was found.
|
|
|
|
* @param aAppDirectory The directory in which the application components
|
|
|
|
* and resources can be found. This will map to
|
2006-01-12 18:29:10 +03:00
|
|
|
* the NS_OS_CURRENT_PROCESS_DIR directory service
|
|
|
|
* key.
|
2005-09-01 17:21:55 +04:00
|
|
|
* @param aAppDirProvider A directory provider for the application. This
|
|
|
|
* provider will be aggregated by a libxul provider
|
|
|
|
* which will provide the base required GRE keys.
|
|
|
|
*
|
|
|
|
* @note This function must be called from the "main" thread.
|
|
|
|
*
|
|
|
|
* @note At the present time, this function may only be called once in
|
|
|
|
* a given process. Use XRE_TermEmbedding to clean up and free
|
|
|
|
* resources allocated by XRE_InitEmbedding.
|
|
|
|
*/
|
|
|
|
|
2005-11-23 17:16:33 +03:00
|
|
|
XRE_API(nsresult, XRE_InitEmbedding2,
|
2014-08-13 22:45:37 +04:00
|
|
|
(nsIFile * aLibXULDirectory, nsIFile* aAppDirectory,
|
|
|
|
nsIDirectoryServiceProvider* aAppDirProvider))
|
2010-06-10 22:11:11 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Register static XPCOM component information.
|
|
|
|
* This method may be called at any time before or after XRE_main or
|
|
|
|
* XRE_InitEmbedding.
|
|
|
|
*/
|
|
|
|
XRE_API(nsresult, XRE_AddStaticComponent, (const mozilla::Module* aComponent))
|
2010-06-12 00:13:26 +04:00
|
|
|
|
2010-06-10 22:11:11 +04:00
|
|
|
/**
|
|
|
|
* Register XPCOM components found in an array of files/directories.
|
|
|
|
* This method may be called at any time before or after XRE_main or
|
|
|
|
* XRE_InitEmbedding.
|
|
|
|
*
|
|
|
|
* @param aFiles An array of files or directories.
|
|
|
|
* @param aFileCount the number of items in the aFiles array.
|
|
|
|
* @note appdir/components is registered automatically.
|
2010-06-12 00:13:26 +04:00
|
|
|
*
|
2015-05-01 17:23:44 +03:00
|
|
|
* NS_APP_LOCATION specifies a location to search for binary XPCOM
|
2010-06-12 00:13:26 +04:00
|
|
|
* components as well as component/chrome manifest files.
|
|
|
|
*
|
2015-05-01 17:23:44 +03:00
|
|
|
* NS_EXTENSION_LOCATION excludes binary XPCOM components but allows other
|
|
|
|
* manifest instructions.
|
|
|
|
*
|
2010-06-12 00:13:26 +04:00
|
|
|
* NS_SKIN_LOCATION specifies a location to search for chrome manifest files
|
2018-06-07 01:15:25 +03:00
|
|
|
* which are only allowed to register skin packages.
|
2010-06-10 22:11:11 +04:00
|
|
|
*/
|
2010-06-12 00:13:26 +04:00
|
|
|
enum NSLocationType {
|
2015-05-01 17:23:44 +03:00
|
|
|
NS_APP_LOCATION,
|
|
|
|
NS_EXTENSION_LOCATION,
|
2011-07-29 13:20:47 +04:00
|
|
|
NS_SKIN_LOCATION,
|
|
|
|
NS_BOOTSTRAPPED_LOCATION
|
2010-06-12 00:13:26 +04:00
|
|
|
};
|
|
|
|
|
2010-06-10 22:11:11 +04:00
|
|
|
XRE_API(nsresult, XRE_AddManifestLocation,
|
2010-06-28 05:26:38 +04:00
|
|
|
(NSLocationType aType, nsIFile* aLocation))
|
2005-09-01 17:21:55 +04:00
|
|
|
|
2010-09-09 07:37:11 +04:00
|
|
|
/**
|
|
|
|
* Register XPCOM components found in a JAR.
|
|
|
|
* This is similar to XRE_AddManifestLocation except the file specified
|
|
|
|
* must be a zip archive with a manifest named chrome.manifest
|
|
|
|
* This method may be called at any time before or after XRE_main or
|
|
|
|
* XRE_InitEmbedding.
|
|
|
|
*
|
|
|
|
* @param aFiles An array of files or directories.
|
|
|
|
* @param aFileCount the number of items in the aFiles array.
|
|
|
|
* @note appdir/components is registered automatically.
|
|
|
|
*
|
|
|
|
* NS_COMPONENT_LOCATION specifies a location to search for binary XPCOM
|
|
|
|
* components as well as component/chrome manifest files.
|
|
|
|
*
|
|
|
|
* NS_SKIN_LOCATION specifies a location to search for chrome manifest files
|
2018-06-07 01:15:25 +03:00
|
|
|
* which are only allowed to register skin packages.
|
2010-09-09 07:37:11 +04:00
|
|
|
*/
|
|
|
|
XRE_API(nsresult, XRE_AddJarManifestLocation,
|
2012-06-06 06:08:30 +04:00
|
|
|
(NSLocationType aType, nsIFile* aLocation))
|
2010-09-09 07:37:11 +04:00
|
|
|
|
2006-01-12 18:29:10 +03:00
|
|
|
/**
|
|
|
|
* Fire notifications to inform the toolkit about a new profile. This
|
|
|
|
* method should be called after XRE_InitEmbedding if the embedder
|
|
|
|
* wishes to run with a profile. Normally the embedder should call
|
|
|
|
* XRE_LockProfileDirectory to lock the directory before calling this
|
|
|
|
* method.
|
|
|
|
*
|
|
|
|
* @note There are two possibilities for selecting a profile:
|
|
|
|
*
|
|
|
|
* 1) Select the profile before calling XRE_InitEmbedding. The aAppDirProvider
|
|
|
|
* object passed to XRE_InitEmbedding should provide the
|
|
|
|
* NS_APP_USER_PROFILE_50_DIR key, and may also provide the following keys:
|
|
|
|
* - NS_APP_USER_PROFILE_LOCAL_50_DIR
|
|
|
|
* - NS_APP_PROFILE_DIR_STARTUP
|
|
|
|
* - NS_APP_PROFILE_LOCAL_DIR_STARTUP
|
|
|
|
* In this scenario XRE_NotifyProfile should be called immediately after
|
|
|
|
* XRE_InitEmbedding. Component registration information will be stored in
|
|
|
|
* the profile and JS components may be stored in the fastload cache.
|
|
|
|
*
|
|
|
|
* 2) Select a profile some time after calling XRE_InitEmbedding. In this case
|
|
|
|
* the embedder must install a directory service provider which provides
|
|
|
|
* NS_APP_USER_PROFILE_50_DIR and optionally
|
|
|
|
* NS_APP_USER_PROFILE_LOCAL_50_DIR. Component registration information
|
|
|
|
* will be stored in the application directory and JS components will not
|
|
|
|
* fastload.
|
|
|
|
*/
|
|
|
|
XRE_API(void, XRE_NotifyProfile, ())
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Terminate embedding started with XRE_InitEmbedding or XRE_InitEmbedding2
|
|
|
|
*/
|
2005-11-23 17:16:33 +03:00
|
|
|
XRE_API(void, XRE_TermEmbedding, ())
|
2005-09-01 17:21:55 +04:00
|
|
|
|
2006-08-17 18:22:04 +04:00
|
|
|
/**
|
|
|
|
* Parse an INI file (application.ini or override.ini) into an existing
|
|
|
|
* nsXREAppData structure.
|
|
|
|
*
|
|
|
|
* @param aINIFile The INI file to parse
|
|
|
|
* @param aAppData The nsXREAppData structure to fill.
|
|
|
|
*/
|
2012-06-06 06:08:30 +04:00
|
|
|
XRE_API(nsresult, XRE_ParseAppData,
|
2016-12-02 17:07:24 +03:00
|
|
|
(nsIFile * aINIFile, mozilla::XREAppData& aAppData))
|
2006-08-17 18:22:04 +04:00
|
|
|
|
2014-08-13 22:45:37 +04:00
|
|
|
enum GeckoProcessType {
|
2019-04-09 00:45:24 +03:00
|
|
|
#define GECKO_PROCESS_TYPE(enum_name, string_name, xre_name, bin_type) \
|
2019-01-10 18:52:51 +03:00
|
|
|
GeckoProcessType_##enum_name,
|
|
|
|
#include "mozilla/GeckoProcessTypes.h"
|
|
|
|
#undef GECKO_PROCESS_TYPE
|
2009-08-19 21:09:51 +04:00
|
|
|
GeckoProcessType_End,
|
|
|
|
GeckoProcessType_Invalid = GeckoProcessType_End
|
2009-07-10 23:03:09 +04:00
|
|
|
};
|
|
|
|
|
2009-08-19 21:09:51 +04:00
|
|
|
static const char* const kGeckoProcessTypeString[] = {
|
2019-04-09 00:45:24 +03:00
|
|
|
#define GECKO_PROCESS_TYPE(enum_name, string_name, xre_name, bin_type) \
|
|
|
|
string_name,
|
2019-01-10 18:52:51 +03:00
|
|
|
#include "mozilla/GeckoProcessTypes.h"
|
|
|
|
#undef GECKO_PROCESS_TYPE
|
|
|
|
};
|
2009-07-10 23:03:09 +04:00
|
|
|
|
2014-01-30 22:26:54 +04:00
|
|
|
static_assert(MOZ_ARRAY_LENGTH(kGeckoProcessTypeString) == GeckoProcessType_End,
|
2013-07-18 21:59:53 +04:00
|
|
|
"Array length mismatch");
|
2009-07-20 23:12:54 +04:00
|
|
|
|
2019-11-26 01:45:31 +03:00
|
|
|
XRE_API(const char*, XRE_GeckoProcessTypeToString,
|
2009-08-19 21:09:51 +04:00
|
|
|
(GeckoProcessType aProcessType))
|
2019-08-09 17:23:19 +03:00
|
|
|
XRE_API(const char*, XRE_ChildProcessTypeToAnnotation,
|
|
|
|
(GeckoProcessType aProcessType))
|
2009-07-10 23:03:09 +04:00
|
|
|
|
2016-10-06 02:46:53 +03:00
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
2018-07-03 01:01:25 +03:00
|
|
|
struct XRE_AndroidChildFds {
|
|
|
|
int mPrefsFd;
|
2018-07-13 21:06:58 +03:00
|
|
|
int mPrefMapFd;
|
2018-07-03 01:01:25 +03:00
|
|
|
int mIpcFd;
|
|
|
|
int mCrashFd;
|
|
|
|
int mCrashAnnotationFd;
|
|
|
|
};
|
|
|
|
|
|
|
|
XRE_API(void, XRE_SetAndroidChildFds,
|
|
|
|
(JNIEnv * env, const XRE_AndroidChildFds& fds))
|
2016-10-06 02:46:53 +03:00
|
|
|
#endif // defined(MOZ_WIDGET_ANDROID)
|
|
|
|
|
2014-08-09 04:52:12 +04:00
|
|
|
XRE_API(void, XRE_SetProcessType, (const char* aProcessTypeString))
|
2009-07-10 23:03:09 +04:00
|
|
|
|
2009-06-30 23:21:25 +04:00
|
|
|
XRE_API(nsresult, XRE_InitChildProcess,
|
2016-05-15 18:35:22 +03:00
|
|
|
(int aArgc, char* aArgv[], const XREChildData* aChildData))
|
2009-08-19 21:09:51 +04:00
|
|
|
|
2019-12-03 01:01:47 +03:00
|
|
|
/**
|
|
|
|
* Return the GeckoProcessType of the current process.
|
|
|
|
*/
|
2009-08-19 21:09:51 +04:00
|
|
|
XRE_API(GeckoProcessType, XRE_GetProcessType, ())
|
2009-06-30 23:21:25 +04:00
|
|
|
|
2019-12-03 01:01:47 +03:00
|
|
|
/**
|
|
|
|
* Return the string representation of the GeckoProcessType of the current
|
|
|
|
* process.
|
|
|
|
*/
|
|
|
|
XRE_API(const char*, XRE_GetProcessTypeString, ())
|
|
|
|
|
2017-04-24 11:38:10 +03:00
|
|
|
/**
|
|
|
|
* Returns true when called in the e10s parent process. Does *NOT* return true
|
|
|
|
* when called in the main process if e10s is disabled.
|
|
|
|
*/
|
|
|
|
XRE_API(bool, XRE_IsE10sParentProcess, ())
|
|
|
|
|
|
|
|
/**
|
2019-01-10 18:52:51 +03:00
|
|
|
* Defines XRE_IsParentProcess, XRE_IsContentProcess, etc.
|
|
|
|
*
|
|
|
|
* XRE_IsParentProcess is unique in that it returns true when called in
|
|
|
|
* the e10s parent process or called in the main process when e10s is
|
|
|
|
* disabled.
|
2017-04-24 11:38:10 +03:00
|
|
|
*/
|
2019-04-09 00:45:24 +03:00
|
|
|
#define GECKO_PROCESS_TYPE(enum_name, string_name, xre_name, bin_type) \
|
2019-01-10 18:52:51 +03:00
|
|
|
XRE_API(bool, XRE_Is##xre_name##Process, ())
|
|
|
|
#include "mozilla/GeckoProcessTypes.h"
|
|
|
|
#undef GECKO_PROCESS_TYPE
|
2017-11-06 21:29:15 +03:00
|
|
|
|
2019-01-11 21:57:23 +03:00
|
|
|
XRE_API(bool, XRE_IsSocketProcess, ())
|
|
|
|
|
2017-07-22 02:16:59 +03:00
|
|
|
/**
|
|
|
|
* Returns true if the appshell should run its own native event loop. Returns
|
|
|
|
* false if we should rely solely on the Gecko event loop.
|
|
|
|
*/
|
|
|
|
XRE_API(bool, XRE_UseNativeEventProcessing, ())
|
|
|
|
|
2009-06-30 23:21:25 +04:00
|
|
|
typedef void (*MainFunction)(void* aData);
|
|
|
|
|
|
|
|
XRE_API(nsresult, XRE_InitParentProcess,
|
|
|
|
(int aArgc, char* aArgv[], MainFunction aMainFunction,
|
|
|
|
void* aMainFunctionExtraData))
|
|
|
|
|
2009-10-06 22:02:26 +04:00
|
|
|
XRE_API(int, XRE_RunIPDLTest, (int aArgc, char* aArgv[]))
|
|
|
|
|
2009-08-28 23:46:21 +04:00
|
|
|
XRE_API(nsresult, XRE_RunAppShell, ())
|
|
|
|
|
2009-11-04 08:12:18 +03:00
|
|
|
XRE_API(nsresult, XRE_InitCommandLine, (int aArgc, char* aArgv[]))
|
|
|
|
|
2009-12-05 03:15:44 +03:00
|
|
|
XRE_API(nsresult, XRE_DeinitCommandLine, ())
|
|
|
|
|
2009-12-03 11:16:28 +03:00
|
|
|
XRE_API(void, XRE_ShutdownChildProcess, ())
|
2009-08-29 03:16:19 +04:00
|
|
|
|
2009-09-03 04:18:27 +04:00
|
|
|
XRE_API(MessageLoop*, XRE_GetIOMessageLoop, ())
|
|
|
|
|
2009-08-29 03:16:19 +04:00
|
|
|
XRE_API(bool, XRE_SendTestShellCommand,
|
2018-07-16 15:02:16 +03:00
|
|
|
(JSContext * aCx, JSString* aCommand, JS::Value* aCallback))
|
2009-11-11 11:34:08 +03:00
|
|
|
XRE_API(bool, XRE_ShutdownTestShell, ())
|
2009-08-26 03:39:30 +04:00
|
|
|
|
2010-02-25 01:25:16 +03:00
|
|
|
XRE_API(void, XRE_InstallX11ErrorHandler, ())
|
2011-05-22 10:22:27 +04:00
|
|
|
|
2012-08-22 19:56:38 +04:00
|
|
|
XRE_API(void, XRE_TelemetryAccumulate, (int aID, uint32_t aSample))
|
2011-05-22 10:23:20 +04:00
|
|
|
|
2015-07-06 19:01:09 +03:00
|
|
|
XRE_API(void, XRE_StartupTimelineRecord, (int aEvent, mozilla::TimeStamp aWhen))
|
2012-06-15 10:23:08 +04:00
|
|
|
|
2014-08-13 22:45:37 +04:00
|
|
|
XRE_API(void, XRE_InitOmnijar, (nsIFile * aGreOmni, nsIFile* aAppOmni))
|
2013-11-05 16:45:20 +04:00
|
|
|
XRE_API(void, XRE_StopLateWriteChecks, (void))
|
2012-05-25 14:01:29 +04:00
|
|
|
|
2016-06-03 22:49:39 +03:00
|
|
|
XRE_API(void, XRE_EnableSameExecutableForContentProc, ())
|
|
|
|
|
2019-04-09 00:45:24 +03:00
|
|
|
namespace mozilla {
|
|
|
|
enum class BinPathType { Self, PluginContainer };
|
|
|
|
}
|
|
|
|
XRE_API(mozilla::BinPathType, XRE_GetChildProcBinPathType,
|
|
|
|
(GeckoProcessType aProcessType));
|
|
|
|
|
2013-10-01 00:09:28 +04:00
|
|
|
XRE_API(int, XRE_XPCShellMain,
|
2016-05-15 18:41:40 +03:00
|
|
|
(int argc, char** argv, char** envp, const XREShellData* aShellData))
|
2013-10-01 00:09:28 +04:00
|
|
|
|
2016-09-01 16:07:01 +03:00
|
|
|
#ifdef LIBFUZZER
|
2018-01-17 17:20:35 +03:00
|
|
|
# include "FuzzerRegistry.h"
|
2016-09-01 16:07:01 +03:00
|
|
|
|
2017-01-12 08:44:18 +03:00
|
|
|
XRE_API(void, XRE_LibFuzzerSetDriver, (LibFuzzerDriver))
|
2016-09-01 16:07:01 +03:00
|
|
|
|
|
|
|
#endif // LIBFUZZER
|
|
|
|
|
2019-12-05 03:02:40 +03:00
|
|
|
#ifdef MOZ_ENABLE_FORKSERVER
|
|
|
|
|
|
|
|
XRE_API(int, XRE_ForkServer, (int* aArgc, char*** aArgv))
|
|
|
|
|
|
|
|
#endif // MOZ_ENABLE_FORKSERVER
|
|
|
|
|
2002-08-21 14:25:54 +04:00
|
|
|
#endif // _nsXULAppAPI_h__
|