1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef _nsXULAppAPI_h__
8 #define _nsXULAppAPI_h__
10 #include "js/TypeDecls.h"
11 #include "mozilla/ArrayUtils.h"
12 #include "mozilla/ProcessType.h"
13 #include "mozilla/TimeStamp.h"
16 #if defined(MOZ_WIDGET_ANDROID)
22 class nsIDirectoryServiceProvider
;
31 struct BootstrapConfig
;
32 } // namespace mozilla
35 * A directory service key which provides the platform-correct "application
36 * data" directory as follows, where $name and $vendor are as defined above and
37 * $vendor is optional:
40 * HOME = Documents and Settings\$USER\Application Data
41 * UAppData = $HOME[\$vendor]\$name
45 * UAppData = $HOME/.[$vendor/]$name
49 * UAppData = $HOME/Library/Application Support/$name
51 * Note that the "profile" member above will change the value of UAppData as
55 * UAppData = $HOME\$profile
58 * UAppData = $HOME/.$profile
61 * UAppData = $HOME/Library/Application Support/$profile
63 #define XRE_USER_APP_DATA_DIR "UAppData"
66 * A directory service key which provides the executable file used to
67 * launch the current process. This is the same value returned by the
68 * XRE_GetBinaryPath function defined below.
70 #define XRE_EXECUTABLE_FILE "XREExeF"
73 * A directory service key which specifies the profile
74 * directory. Unlike the NS_APP_USER_PROFILE_50_DIR key, this key may
75 * be available when the profile hasn't been "started", or after is
76 * has been shut down. If the application is running without a
77 * profile, such as when showing the profile manager UI, this key will
78 * not be available. This key is provided by the XUL apprunner or by
79 * the aAppDirProvider object passed to XRE_InitEmbedding.
81 #define NS_APP_PROFILE_DIR_STARTUP "ProfDS"
84 * A directory service key which specifies the profile
85 * directory. Unlike the NS_APP_USER_PROFILE_LOCAL_50_DIR key, this key may
86 * be available when the profile hasn't been "started", or after is
87 * has been shut down. If the application is running without a
88 * profile, such as when showing the profile manager UI, this key will
89 * not be available. This key is provided by the XUL apprunner or by
90 * the aAppDirProvider object passed to XRE_InitEmbedding.
92 #define NS_APP_PROFILE_LOCAL_DIR_STARTUP "ProfLDS"
95 * A directory service key which specifies the system extension
96 * parent directory containing platform-specific extensions.
97 * This key may not be available on all platforms.
99 #define XRE_SYS_LOCAL_EXTENSION_PARENT_DIR "XRESysLExtPD"
102 * A directory service key which specifies the system extension
103 * parent directory containing platform-independent extensions.
104 * This key may not be available on all platforms.
105 * Additionally, the directory may be equal to that returned by
106 * XRE_SYS_LOCAL_EXTENSION_PARENT_DIR on some platforms.
108 #define XRE_SYS_SHARE_EXTENSION_PARENT_DIR "XRESysSExtPD"
110 #if defined(XP_UNIX) || defined(XP_MACOSX)
112 * Directory service keys for the system-wide and user-specific
113 * directories where native manifests used by the WebExtensions
114 * native messaging and managed storage features are found.
116 # define XRE_SYS_NATIVE_MANIFESTS "XRESysNativeManifests"
117 # define XRE_USER_NATIVE_MANIFESTS "XREUserNativeManifests"
121 * A directory service key which specifies the user system extension
124 #define XRE_USER_SYS_EXTENSION_DIR "XREUSysExt"
127 * A directory service key which specifies the distribution specific files for
130 #define XRE_APP_DISTRIBUTION_DIR "XREAppDist"
133 * A directory service key which specifies the location for system add-ons.
135 #define XRE_APP_FEATURES_DIR "XREAppFeat"
138 * A directory service key which specifies the location for app dir add-ons.
139 * Should be a synonym for XCurProcD everywhere except in tests.
141 #define XRE_ADDON_APP_DIR "XREAddonAppDir"
144 * A directory service key which specifies the distribution specific files for
145 * the application unique for each user.
146 * It's located at /run/user/$UID/<product name>/
148 #define XRE_USER_RUNTIME_DIR "XREUserRunTimeDir"
151 * A directory service key which provides the update directory. Callers should
152 * fall back to appDir.
153 * Windows: If vendor name exists:
154 * ProgramData\<vendor name>\updates\
155 * <hash of the path to XRE_EXECUTABLE_FILE's parent directory>
157 * If vendor name doesn't exist, but product name exists:
158 * ProgramData\<product name>\updates\
159 * <hash of the path to XRE_EXECUTABLE_FILE's parent directory>
161 * If neither vendor nor product name exists:
162 * ProgramData\Mozilla\updates
164 * Mac: ~/Library/Caches/Mozilla/updates/<absolute path to app dir>
166 * All others: Parent directory of XRE_EXECUTABLE_FILE.
168 #define XRE_UPDATE_ROOT_DIR "UpdRootD"
171 * A directory service key which provides the *old* update directory. This
172 * path should only be used when data needs to be migrated from the old update
174 * Windows: If vendor name exists:
175 * Documents and Settings\<User>\Local Settings\Application Data\
176 * <vendor name>\updates\
177 * <hash of the path to XRE_EXECUTABLE_FILE's parent directory>
179 * If vendor name doesn't exist, but product name exists:
180 * Documents and Settings\<User>\Local Settings\Application Data\
181 * <product name>\updates\
182 * <hash of the path to XRE_EXECUTABLE_FILE's parent directory>
184 * If neither vendor nor product name exists:
185 * Documents and Settings\<User>\Local Settings\Application Data\
188 * This path does not exist on other operating systems
190 #define XRE_OLD_UPDATE_ROOT_DIR "OldUpdRootD"
193 * Begin an XUL application. Does not return until the user exits the
196 * @param argc/argv Command-line parameters to pass to the application. On
197 * Windows, these should be in UTF8. On unix-like platforms
198 * these are in the "native" character set.
200 * @param aConfig Information about the application to be run.
202 * @return A native result code suitable for returning from main().
204 * @note If the binary is linked against the standalone XPCOM glue,
205 * XPCOMGlueStartup() should be called before this method.
207 int XRE_main(int argc
, char* argv
[], const mozilla::BootstrapConfig
& aConfig
);
210 * Given a path relative to the current working directory (or an absolute
211 * path), return an appropriate nsIFile object.
213 * @note Pass UTF8 strings on Windows... native charset on other platforms.
215 nsresult
XRE_GetFileFromPath(const char* aPath
, nsIFile
** aResult
);
218 * Get the path of the running application binary and store it in aResult.
220 nsresult
XRE_GetBinaryPath(nsIFile
** aResult
);
223 * Register XPCOM components found in an array of files/directories.
224 * This method may be called at any time before or after XRE_main or
227 * @param aFiles An array of files or directories.
228 * @param aFileCount the number of items in the aFiles array.
229 * @note appdir/components is registered automatically.
231 * NS_APP_LOCATION specifies a location to search for binary XPCOM
232 * components as well as component/chrome manifest files.
234 * NS_EXTENSION_LOCATION excludes binary XPCOM components but allows other
235 * manifest instructions.
237 * NS_SKIN_LOCATION specifies a location to search for chrome manifest files
238 * which are only allowed to register skin packages.
240 enum NSLocationType
{
242 NS_EXTENSION_LOCATION
,
244 NS_BOOTSTRAPPED_LOCATION
247 nsresult
XRE_AddManifestLocation(NSLocationType aType
, nsIFile
* aLocation
);
250 * Register XPCOM components found in a JAR.
251 * This is similar to XRE_AddManifestLocation except the file specified
252 * must be a zip archive with a manifest named chrome.manifest
253 * This method may be called at any time before or after XRE_main or
256 * @param aFiles An array of files or directories.
257 * @param aFileCount the number of items in the aFiles array.
258 * @note appdir/components is registered automatically.
260 * NS_COMPONENT_LOCATION specifies a location to search for binary XPCOM
261 * components as well as component/chrome manifest files.
263 * NS_SKIN_LOCATION specifies a location to search for chrome manifest files
264 * which are only allowed to register skin packages.
266 nsresult
XRE_AddJarManifestLocation(NSLocationType aType
, nsIFile
* aLocation
);
269 * Parse an INI file (application.ini or override.ini) into an existing
270 * nsXREAppData structure.
272 * @param aINIFile The INI file to parse
273 * @param aAppData The nsXREAppData structure to fill.
275 nsresult
XRE_ParseAppData(nsIFile
* aINIFile
, mozilla::XREAppData
& aAppData
);
277 const char* XRE_GeckoProcessTypeToString(GeckoProcessType aProcessType
);
278 const char* XRE_ChildProcessTypeToAnnotation(GeckoProcessType aProcessType
);
280 #if defined(MOZ_WIDGET_ANDROID)
281 struct XRE_AndroidChildFds
{
286 int mCrashAnnotationFd
;
289 void XRE_SetAndroidChildFds(JNIEnv
* env
, const XRE_AndroidChildFds
& fds
);
290 #endif // defined(MOZ_WIDGET_ANDROID)
292 void XRE_SetProcessType(const char* aProcessTypeString
);
294 nsresult
XRE_InitChildProcess(int aArgc
, char* aArgv
[],
295 const XREChildData
* aChildData
);
298 * Return the GeckoProcessType of the current process.
300 GeckoProcessType
XRE_GetProcessType();
303 * Return the string representation of the GeckoProcessType of the current
306 const char* XRE_GetProcessTypeString();
309 * Returns true when called in the e10s parent process. Does *NOT* return true
310 * when called in the main process if e10s is disabled.
312 bool XRE_IsE10sParentProcess();
315 * Defines XRE_IsParentProcess, XRE_IsContentProcess, etc.
317 * XRE_IsParentProcess is unique in that it returns true when called in
318 * the e10s parent process or called in the main process when e10s is
321 #define GECKO_PROCESS_TYPE(enum_value, enum_name, string_name, proc_typename, \
322 process_bin_type, procinfo_typename, \
323 webidl_typename, allcaps_name) \
324 bool XRE_Is##proc_typename##Process();
325 #include "mozilla/GeckoProcessTypes.h"
326 #undef GECKO_PROCESS_TYPE
328 bool XRE_IsSocketProcess();
331 * Returns true if the appshell should run its own native event loop. Returns
332 * false if we should rely solely on the Gecko event loop.
334 bool XRE_UseNativeEventProcessing();
336 typedef void (*MainFunction
)(void* aData
);
338 int XRE_RunIPDLTest(int aArgc
, char* aArgv
[]);
340 nsresult
XRE_RunAppShell();
342 nsresult
XRE_InitCommandLine(int aArgc
, char* aArgv
[]);
344 nsresult
XRE_DeinitCommandLine();
346 void XRE_ShutdownChildProcess();
348 MessageLoop
* XRE_GetIOMessageLoop();
350 bool XRE_SendTestShellCommand(JSContext
* aCx
, JSString
* aCommand
,
351 JS::Value
* aCallback
);
352 bool XRE_ShutdownTestShell();
354 void XRE_InstallX11ErrorHandler();
355 void XRE_CleanupX11ErrorHandler();
357 void XRE_TelemetryAccumulate(int aID
, uint32_t aSample
);
359 void XRE_StartupTimelineRecord(int aEvent
, mozilla::TimeStamp aWhen
);
361 void XRE_InitOmnijar(nsIFile
* aGreOmni
, nsIFile
* aAppOmni
);
362 void XRE_StopLateWriteChecks(void);
364 void XRE_EnableSameExecutableForContentProc();
367 enum class BinPathType
{ Self
, PluginContainer
};
369 mozilla::BinPathType
XRE_GetChildProcBinPathType(GeckoProcessType aProcessType
);
371 int XRE_XPCShellMain(int argc
, char** argv
, char** envp
,
372 const XREShellData
* aShellData
);
375 # include "FuzzerRegistry.h"
377 void XRE_LibFuzzerSetDriver(LibFuzzerDriver
);
381 #ifdef MOZ_ENABLE_FORKSERVER
383 int XRE_ForkServer(int* aArgc
, char*** aArgv
);
385 #endif // MOZ_ENABLE_FORKSERVER
387 #endif // _nsXULAppAPI_h__