2002-08-21 14:25:54 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
|
|
|
*
|
|
|
|
* The contents of this file are subject to the Mozilla 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/MPL/
|
|
|
|
*
|
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
|
|
|
*
|
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 2002
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
2003-09-29 10:04:02 +04:00
|
|
|
* Brian Ryner <bryner@brianryner.com>
|
2004-06-18 01:23:51 +04:00
|
|
|
* Benjamin Smedberg <bsmedberg@covad.net>
|
|
|
|
* Ben Goodger <ben@mozilla.org>
|
2002-08-21 14:25:54 +04:00
|
|
|
*
|
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* either the GNU General Public License Version 2 or later (the "GPL"), or
|
|
|
|
* the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
|
|
|
* in which case the provisions of the GPL or the LGPL are applicable instead
|
|
|
|
* of those above. If you wish to allow use of your version of this file only
|
|
|
|
* under the terms of either the GPL or the LGPL, and not to allow others to
|
|
|
|
* use your version of this file under the terms of the MPL, indicate your
|
|
|
|
* decision by deleting the provisions above and replace them with the notice
|
|
|
|
* and other provisions required by the GPL or the LGPL. If you do not delete
|
|
|
|
* the provisions above, a recipient may use your version of this file under
|
|
|
|
* the terms of any one of the MPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
#include "nsAppRunner.h"
|
|
|
|
#include "nsXREDirProvider.h"
|
|
|
|
|
|
|
|
#include "jsapi.h"
|
|
|
|
|
|
|
|
#include "nsIJSContextStack.h"
|
2002-08-21 14:25:54 +04:00
|
|
|
#include "nsILocalFile.h"
|
2004-06-18 01:23:51 +04:00
|
|
|
#include "nsIObserverService.h"
|
|
|
|
#include "nsIProfileChangeStatus.h"
|
2005-02-23 00:49:45 +03:00
|
|
|
#include "nsIToolkitChromeRegistry.h"
|
2004-06-18 01:23:51 +04:00
|
|
|
|
2002-08-21 14:25:54 +04:00
|
|
|
#include "nsAppDirectoryServiceDefs.h"
|
|
|
|
#include "nsDirectoryServiceDefs.h"
|
2004-06-18 01:23:51 +04:00
|
|
|
#include "nsXULAppAPI.h"
|
|
|
|
|
|
|
|
#include "nsINIParser.h"
|
|
|
|
#include "nsDependentString.h"
|
|
|
|
#include "nsCOMArray.h"
|
|
|
|
#include "nsArrayEnumerator.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#ifdef XP_WIN
|
|
|
|
#include <windows.h>
|
|
|
|
#include <shlobj.h>
|
2005-04-26 05:26:16 +04:00
|
|
|
// This is not defined by VC6.
|
|
|
|
#ifndef CSIDL_LOCAL_APPDATA
|
|
|
|
#define CSIDL_LOCAL_APPDATA 0x001C
|
|
|
|
#endif
|
2002-08-21 14:25:54 +04:00
|
|
|
#endif
|
2002-11-15 05:05:19 +03:00
|
|
|
#ifdef XP_MACOSX
|
|
|
|
#include "nsILocalFileMac.h"
|
|
|
|
#endif
|
2002-11-16 12:15:36 +03:00
|
|
|
#ifdef XP_BEOS
|
2004-06-18 01:23:51 +04:00
|
|
|
#include <be/kernel/image.h>
|
2002-11-16 12:15:36 +03:00
|
|
|
#include <FindDirectory.h>
|
|
|
|
#endif
|
2004-06-18 01:23:51 +04:00
|
|
|
#ifdef XP_UNIX
|
|
|
|
#include <ctype.h>
|
|
|
|
#endif
|
|
|
|
#ifdef XP_OS2
|
|
|
|
#define INCL_DOS
|
|
|
|
#include <os2.h>
|
|
|
|
#endif
|
2002-08-21 14:25:54 +04:00
|
|
|
|
2004-07-22 19:14:02 +04:00
|
|
|
#if defined(XP_MACOSX)
|
|
|
|
#define APP_REGISTRY_NAME "Application Registry"
|
|
|
|
#elif defined(XP_WIN) || defined(XP_OS2)
|
|
|
|
#define APP_REGISTRY_NAME "registry.dat"
|
|
|
|
#else
|
|
|
|
#define APP_REGISTRY_NAME "appreg"
|
|
|
|
#endif
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
nsXREDirProvider* gDirServiceProvider = nsnull;
|
2002-08-26 14:18:41 +04:00
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
nsXREDirProvider::nsXREDirProvider() :
|
2004-09-16 03:02:10 +04:00
|
|
|
mProfileNotified(PR_FALSE)
|
2004-06-18 01:23:51 +04:00
|
|
|
{
|
|
|
|
gDirServiceProvider = this;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsXREDirProvider::~nsXREDirProvider()
|
|
|
|
{
|
|
|
|
gDirServiceProvider = nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
2004-09-07 22:59:07 +04:00
|
|
|
nsXREDirProvider::Initialize(nsIFile *aXULAppDir)
|
2004-06-18 01:23:51 +04:00
|
|
|
{
|
2004-09-07 22:59:07 +04:00
|
|
|
mXULAppDir = aXULAppDir;
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
// We need to use platform-specific hackery to find the
|
|
|
|
// path of this executable. This is copied, with some modifications, from
|
|
|
|
// nsGREDirServiceProvider.cpp
|
|
|
|
#ifdef XP_WIN
|
|
|
|
char exePath[MAXPATHLEN];
|
|
|
|
if ( ! ::GetModuleFileName(0, exePath, MAXPATHLEN) )
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
// chop off the executable name by finding the rightmost backslash
|
|
|
|
char* lastSlash = strrchr(exePath, '\\');
|
|
|
|
if (!lastSlash) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
*(lastSlash) = '\0';
|
|
|
|
return NS_NewNativeLocalFile(nsDependentCString(exePath), PR_TRUE,
|
|
|
|
getter_AddRefs(mAppDir));
|
|
|
|
|
|
|
|
#elif defined(XP_MACOSX)
|
|
|
|
// Works even if we're not bundled.
|
|
|
|
CFBundleRef appBundle = CFBundleGetMainBundle();
|
|
|
|
if (!appBundle) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsresult rv = NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
CFURLRef bundleURL = CFBundleCopyExecutableURL(appBundle);
|
|
|
|
if (bundleURL) {
|
|
|
|
CFURLRef parentURL = CFURLCreateCopyDeletingLastPathComponent(kCFAllocatorDefault, bundleURL);
|
|
|
|
if (parentURL) {
|
|
|
|
rv = NS_NewNativeLocalFile(EmptyCString(), PR_TRUE,
|
|
|
|
getter_AddRefs(mAppDir));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
nsCOMPtr<nsILocalFileMac> appDirMac (do_QueryInterface(mAppDir, &rv));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
|
|
|
rv = appDirMac->InitWithCFURL(parentURL);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
CFRelease(parentURL);
|
|
|
|
}
|
|
|
|
CFRelease(bundleURL);
|
|
|
|
}
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
#elif defined(XP_UNIX)
|
|
|
|
// Because we do have access to argv[0], we can get the application
|
|
|
|
// path with certitude, instead of using MOZILLA_FIVE_HOME or
|
|
|
|
// guessing from the CWD like nsGREDirServiceProvider does.
|
|
|
|
char* lastSlash = strrchr(gBinaryPath, '/');
|
|
|
|
if (!lastSlash) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
nsDependentCSubstring appDir(gBinaryPath, lastSlash);
|
|
|
|
return NS_NewNativeLocalFile(appDir, PR_TRUE, getter_AddRefs(mAppDir));
|
|
|
|
|
|
|
|
#elif defined(XP_OS2)
|
|
|
|
PPIB ppib;
|
|
|
|
PTIB ptib;
|
|
|
|
char appDir[MAXPATHLEN];
|
|
|
|
char* p;
|
|
|
|
DosGetInfoBlocks( &ptib, &ppib);
|
|
|
|
DosQueryModuleName( ppib->pib_hmte, MAXPATHLEN, appDir);
|
|
|
|
p = strrchr( appDir, '\\'); // XXX DBCS misery
|
|
|
|
if (!p) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
*p = '\0';
|
|
|
|
return NS_NewNativeLocalFile(nsDependentCString(appDir), PR_TRUE, getter_AddRefs(mAppDir));
|
|
|
|
|
|
|
|
#elif defined(XP_BEOS)
|
|
|
|
int32 cookie = 0;
|
|
|
|
image_info info;
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
if(get_next_image_info(0, &cookie, &info) != B_OK)
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
p = strrchr(info.name, '/');
|
|
|
|
if (!p) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
*p = 0;
|
|
|
|
return NS_NewNativeLocalFile(nsDependentCString(info.name), PR_TRUE, getter_AddRefs(mAppDir));
|
|
|
|
#elif
|
|
|
|
#error Oops, you need platform-specific code here
|
2002-08-26 14:18:41 +04:00
|
|
|
#endif
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
2002-08-26 14:18:41 +04:00
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
nsresult
|
2005-04-26 04:37:23 +04:00
|
|
|
nsXREDirProvider::SetProfile(nsIFile* aDir, nsIFile* aLocalDir)
|
2002-08-21 14:25:54 +04:00
|
|
|
{
|
2005-04-26 04:37:23 +04:00
|
|
|
NS_ASSERTION(aDir && aLocalDir, "We don't support no-profile apps yet!");
|
2004-06-18 01:23:51 +04:00
|
|
|
|
|
|
|
#ifdef DEBUG_bsmedberg
|
2005-04-26 04:37:23 +04:00
|
|
|
nsCAutoString path, path2;
|
2004-06-18 01:23:51 +04:00
|
|
|
aDir->GetNativePath(path);
|
2005-04-26 04:37:23 +04:00
|
|
|
aLocalDir->GetNativePath(path2);
|
|
|
|
printf("nsXREDirProvider::SetProfile('%s', '%s')\n", path.get(), path2.get());
|
2002-08-21 14:25:54 +04:00
|
|
|
#endif
|
2004-06-18 01:23:51 +04:00
|
|
|
|
2005-04-26 04:37:23 +04:00
|
|
|
nsresult rv;
|
|
|
|
|
|
|
|
rv = EnsureDirectoryExists(aDir);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
|
|
|
rv = EnsureDirectoryExists(aLocalDir);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
return rv;
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
mProfileDir = aDir;
|
2005-04-26 04:37:23 +04:00
|
|
|
mProfileLocalDir = aLocalDir;
|
2004-06-18 01:23:51 +04:00
|
|
|
return NS_OK;
|
2002-08-21 14:25:54 +04:00
|
|
|
}
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
NS_IMPL_QUERY_INTERFACE3(nsXREDirProvider,
|
|
|
|
nsIDirectoryServiceProvider,
|
|
|
|
nsIDirectoryServiceProvider2,
|
|
|
|
nsIProfileStartup)
|
|
|
|
|
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
|
|
nsXREDirProvider::AddRef()
|
2002-08-21 14:25:54 +04:00
|
|
|
{
|
2004-06-18 01:23:51 +04:00
|
|
|
return 1;
|
2002-08-21 14:25:54 +04:00
|
|
|
}
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
NS_IMETHODIMP_(nsrefcnt)
|
|
|
|
nsXREDirProvider::Release()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
2002-08-21 14:25:54 +04:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXREDirProvider::GetFile(const char* aProperty, PRBool* aPersistent,
|
|
|
|
nsIFile** aFile)
|
|
|
|
{
|
2004-06-18 01:23:51 +04:00
|
|
|
nsresult rv = NS_ERROR_FAILURE;
|
2002-08-21 14:25:54 +04:00
|
|
|
*aPersistent = PR_TRUE;
|
2004-06-18 01:23:51 +04:00
|
|
|
nsCOMPtr<nsIFile> file;
|
2002-08-21 14:25:54 +04:00
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
if (!strcmp(aProperty, NS_OS_CURRENT_PROCESS_DIR) ||
|
|
|
|
!strcmp(aProperty, NS_APP_INSTALL_CLEANUP_DIR)) {
|
|
|
|
// NOTE: this is *different* than NS_XPCOM_CURRENT_PROCESS_DIR. This points
|
|
|
|
// to the application dir. NS_XPCOM_CURRENT_PROCESS_DIR points to the toolkit.
|
|
|
|
return mAppDir->Clone(aFile);
|
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_PROFILE_DEFAULTS_50_DIR) ||
|
|
|
|
!strcmp(aProperty, NS_APP_PROFILE_DEFAULTS_NLOC_50_DIR)) {
|
|
|
|
return GetProfileDefaultsDir(aFile);
|
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_PREF_DEFAULTS_50_DIR))
|
|
|
|
{
|
|
|
|
rv = mAppDir->Clone(getter_AddRefs(file));
|
|
|
|
if (NS_SUCCEEDED(rv)) {
|
2004-09-07 22:59:07 +04:00
|
|
|
rv = file->AppendNative(NS_LITERAL_CSTRING("defaults"));
|
2004-06-18 01:23:51 +04:00
|
|
|
if (NS_SUCCEEDED(rv))
|
2004-09-07 22:59:07 +04:00
|
|
|
rv = file->AppendNative(NS_LITERAL_CSTRING("pref"));
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
2002-08-26 14:18:41 +04:00
|
|
|
}
|
2004-07-22 19:14:02 +04:00
|
|
|
else if (!strcmp(aProperty, NS_APP_APPLICATION_REGISTRY_DIR)) {
|
|
|
|
rv = GetUserAppDataDirectory((nsILocalFile**)(nsIFile**) getter_AddRefs(file));
|
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_APPLICATION_REGISTRY_FILE)) {
|
|
|
|
rv = GetUserAppDataDirectory((nsILocalFile**)(nsIFile**) getter_AddRefs(file));
|
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING(APP_REGISTRY_NAME));
|
|
|
|
}
|
2002-08-21 14:25:54 +04:00
|
|
|
else if (!strcmp(aProperty, NS_APP_USER_PROFILES_ROOT_DIR)) {
|
2004-06-18 01:23:51 +04:00
|
|
|
rv = GetUserAppDataDirectory((nsILocalFile**)(nsIFile**) getter_AddRefs(file));
|
2002-08-21 14:25:54 +04:00
|
|
|
|
2005-04-26 04:37:23 +04:00
|
|
|
#if !defined(XP_UNIX) || defined(XP_MACOSX)
|
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("Profiles"));
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// We must create the profile directory here if it does not exist.
|
|
|
|
rv |= EnsureDirectoryExists(file);
|
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_USER_PROFILES_LOCAL_ROOT_DIR)) {
|
|
|
|
rv = GetUserLocalDataDirectory((nsILocalFile**)(nsIFile**) getter_AddRefs(file));
|
|
|
|
|
2002-11-16 14:16:58 +03:00
|
|
|
#if !defined(XP_UNIX) || defined(XP_MACOSX)
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("Profiles"));
|
2002-08-21 14:25:54 +04:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// We must create the profile directory here if it does not exist.
|
2004-06-18 01:23:51 +04:00
|
|
|
rv |= EnsureDirectoryExists(file);
|
|
|
|
}
|
2004-09-07 22:59:07 +04:00
|
|
|
else if (mXULAppDir && !strcmp(aProperty, "resource:app")) {
|
|
|
|
rv = mXULAppDir->Clone(getter_AddRefs(file));
|
|
|
|
}
|
2004-06-18 01:23:51 +04:00
|
|
|
else if (mProfileDir) {
|
2004-09-09 00:25:45 +04:00
|
|
|
// We need to allow component, xpt, and chrome registration to
|
|
|
|
// occur prior to the profile-after-change notification.
|
2004-06-18 01:23:51 +04:00
|
|
|
if (!strcmp(aProperty, NS_XPCOM_COMPONENT_REGISTRY_FILE)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("compreg.dat"));
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_XPCOM_XPTI_REGISTRY_FILE)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("xpti.dat"));
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
2004-09-09 00:25:45 +04:00
|
|
|
else if (!strcmp(aProperty, NS_APP_USER_CHROME_DIR)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("chrome"));
|
|
|
|
}
|
2005-02-23 00:49:45 +03:00
|
|
|
else if (!strcmp(aProperty, NS_APP_PROFILE_DIR_STARTUP) && mProfileDir) {
|
|
|
|
return mProfileDir->Clone(aFile);
|
|
|
|
}
|
2004-09-09 00:25:45 +04:00
|
|
|
else if (mProfileNotified) {
|
2004-06-18 01:23:51 +04:00
|
|
|
if (!strcmp(aProperty, NS_APP_USER_PROFILE_50_DIR) ||
|
|
|
|
!strcmp(aProperty, NS_APP_PREFS_50_DIR)) {
|
|
|
|
return mProfileDir->Clone(aFile);
|
|
|
|
}
|
2005-04-26 04:37:23 +04:00
|
|
|
else if (!strcmp(aProperty, NS_APP_USER_PROFILE_LOCAL_50_DIR)) {
|
|
|
|
return mProfileLocalDir->Clone(aFile);
|
|
|
|
}
|
2004-06-18 01:23:51 +04:00
|
|
|
else if (!strcmp(aProperty, NS_APP_PREFS_50_FILE)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("prefs.js"));
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
// XXXbsmedberg this needs rethinking... many of these are app-specific,
|
|
|
|
// and apps are going to add new stuff. I don't have a good solution,
|
|
|
|
// yet.
|
|
|
|
else if (!strcmp(aProperty, NS_APP_LOCALSTORE_50_FILE)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("localstore.rdf"));
|
2004-06-18 01:23:51 +04:00
|
|
|
EnsureProfileFileExists(file);
|
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_HISTORY_50_FILE)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("history.dat"));
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_USER_PANELS_50_FILE)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("panels.rdf"));
|
2004-06-18 01:23:51 +04:00
|
|
|
EnsureProfileFileExists(file);
|
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_USER_MIMETYPES_50_FILE)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("mimeTypes.rdf"));
|
2004-06-18 01:23:51 +04:00
|
|
|
EnsureProfileFileExists(file);
|
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_BOOKMARKS_50_FILE)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("bookmarks.html"));
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_DOWNLOADS_50_FILE)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("downloads.rdf"));
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_SEARCH_50_FILE)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("search.rdf"));
|
2004-06-18 01:23:51 +04:00
|
|
|
EnsureProfileFileExists(file);
|
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_MAIL_50_DIR)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("Mail"));
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_IMAP_MAIL_50_DIR)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("ImapMail"));
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_NEWS_50_DIR)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("News"));
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_MESSENGER_FOLDER_CACHE_50_DIR)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
2004-09-07 22:59:07 +04:00
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("panacea.dat"));
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
2005-01-29 03:48:03 +03:00
|
|
|
else if (!strcmp(aProperty, NS_APP_STORAGE_50_FILE)) {
|
|
|
|
rv = mProfileDir->Clone(getter_AddRefs(file));
|
|
|
|
rv |= file->AppendNative(NS_LITERAL_CSTRING("storage.sdb"));
|
|
|
|
}
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (NS_FAILED(rv)) return NS_ERROR_FAILURE;
|
|
|
|
if (!file) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
NS_ADDREF(*aFile = file);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2005-02-23 00:49:45 +03:00
|
|
|
LoadDirsIntoArray(nsIFile* aComponentsList, const char* aSection,
|
|
|
|
const char *const* aAppendList,
|
|
|
|
nsCOMArray<nsIFile>& aDirectories)
|
2004-06-18 01:23:51 +04:00
|
|
|
{
|
|
|
|
nsINIParser parser;
|
|
|
|
nsCOMPtr<nsILocalFile> lf(do_QueryInterface(aComponentsList));
|
|
|
|
parser.Init(lf);
|
|
|
|
|
2005-04-23 05:39:51 +04:00
|
|
|
nsresult rv;
|
2004-06-18 01:23:51 +04:00
|
|
|
char parserBuf[MAXPATHLEN];
|
2005-04-23 05:39:51 +04:00
|
|
|
char buf[18];
|
|
|
|
PRInt32 i = 0;
|
|
|
|
do {
|
|
|
|
sprintf(buf, "Extension%d", i++);
|
|
|
|
|
|
|
|
rv = parser.GetString(aSection, buf, parserBuf, MAXPATHLEN);
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
break;
|
|
|
|
|
|
|
|
nsCOMPtr<nsILocalFile> dir(do_CreateInstance("@mozilla.org/file/local;1"));
|
|
|
|
rv = dir->SetPersistentDescriptor(nsDependentCString(parserBuf));
|
|
|
|
if (NS_FAILED(rv)) {
|
|
|
|
// Must be a relative descriptor, relative to the profile directory,
|
|
|
|
// try that instead.
|
|
|
|
nsCOMPtr<nsIFile> profileDir;
|
|
|
|
aComponentsList->GetParent(getter_AddRefs(profileDir));
|
|
|
|
nsCOMPtr<nsILocalFile> lfProfileDir(do_QueryInterface(profileDir));
|
|
|
|
rv = dir->SetRelativeDescriptor(lfProfileDir, nsDependentCString(parserBuf));
|
|
|
|
if (NS_FAILED(rv))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
const char* const* a = aAppendList;
|
|
|
|
while (*a) {
|
|
|
|
dir->AppendNative(nsDependentCString(*a));
|
|
|
|
++a;
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
2005-04-23 05:39:51 +04:00
|
|
|
|
|
|
|
PRBool exists;
|
|
|
|
rv = dir->Exists(&exists);
|
|
|
|
if (NS_SUCCEEDED(rv) && exists)
|
|
|
|
aDirectories.AppendObject(dir);
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
2005-04-23 05:39:51 +04:00
|
|
|
while (PR_TRUE);
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
|
2005-02-23 00:49:45 +03:00
|
|
|
static const char *const kAppendChromeManifests[] =
|
|
|
|
{ "chrome.manifest", nsnull };
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXREDirProvider::GetFiles(const char* aProperty, nsISimpleEnumerator** aResult)
|
|
|
|
{
|
|
|
|
nsresult rv = NS_OK;
|
|
|
|
*aResult = nsnull;
|
|
|
|
|
|
|
|
if (!strcmp(aProperty, NS_XPCOM_COMPONENT_DIR_LIST)) {
|
2004-09-16 03:02:10 +04:00
|
|
|
nsCOMArray<nsIFile> directories;
|
|
|
|
|
|
|
|
if (mXULAppDir) {
|
|
|
|
nsCOMPtr<nsIFile> file;
|
|
|
|
mXULAppDir->Clone(getter_AddRefs(file));
|
|
|
|
file->AppendNative(NS_LITERAL_CSTRING("components"));
|
|
|
|
PRBool exists;
|
|
|
|
if (NS_SUCCEEDED(file->Exists(&exists)) && exists)
|
|
|
|
directories.AppendObject(file);
|
|
|
|
}
|
2004-06-18 01:23:51 +04:00
|
|
|
|
2005-02-23 00:49:45 +03:00
|
|
|
static const char *const kAppendCompDir[] = { "components", nsnull };
|
|
|
|
|
2004-09-16 03:02:10 +04:00
|
|
|
nsCOMPtr<nsIFile> appFile;
|
|
|
|
mAppDir->Clone(getter_AddRefs(appFile));
|
2005-02-23 00:49:45 +03:00
|
|
|
appFile->AppendNative(NS_LITERAL_CSTRING("extensions.ini"));
|
|
|
|
LoadDirsIntoArray(appFile, "ExtensionDirs",
|
|
|
|
kAppendCompDir, directories);
|
2004-09-16 03:02:10 +04:00
|
|
|
|
|
|
|
if (mProfileDir) {
|
2005-02-23 00:49:45 +03:00
|
|
|
nsCOMPtr<nsIFile> profileFile;
|
2004-09-16 03:02:10 +04:00
|
|
|
mProfileDir->Clone(getter_AddRefs(profileFile));
|
2005-02-23 00:49:45 +03:00
|
|
|
profileFile->AppendNative(NS_LITERAL_CSTRING("extensions.ini"));
|
|
|
|
|
|
|
|
LoadDirsIntoArray(profileFile, "ExtensionDirs",
|
|
|
|
kAppendCompDir, directories);
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
2004-09-16 03:02:10 +04:00
|
|
|
|
|
|
|
rv = NS_NewArrayEnumerator(aResult, directories);
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_APP_PREFS_DEFAULTS_DIR_LIST)) {
|
|
|
|
nsCOMArray<nsIFile> directories;
|
2004-09-07 22:59:07 +04:00
|
|
|
|
|
|
|
if (mXULAppDir) {
|
|
|
|
nsCOMPtr<nsIFile> file;
|
|
|
|
mXULAppDir->Clone(getter_AddRefs(file));
|
|
|
|
file->AppendNative(NS_LITERAL_CSTRING("defaults"));
|
2005-02-24 22:40:21 +03:00
|
|
|
file->AppendNative(NS_LITERAL_CSTRING("preferences"));
|
2004-09-07 22:59:07 +04:00
|
|
|
PRBool exists;
|
|
|
|
if (NS_SUCCEEDED(file->Exists(&exists)) && exists)
|
|
|
|
directories.AppendObject(file);
|
|
|
|
}
|
2004-06-18 01:23:51 +04:00
|
|
|
|
2005-02-24 22:40:21 +03:00
|
|
|
static const char *const kAppendPrefDir[] = { "defaults", "preferences", nsnull };
|
2004-06-18 01:23:51 +04:00
|
|
|
nsCOMPtr<nsIFile> profileFile;
|
|
|
|
if (mProfileDir) {
|
|
|
|
mProfileDir->Clone(getter_AddRefs(profileFile));
|
2005-02-23 00:49:45 +03:00
|
|
|
profileFile->AppendNative(NS_LITERAL_CSTRING("extensions.ini"));
|
|
|
|
LoadDirsIntoArray(profileFile, "ExtensionDirs",
|
|
|
|
kAppendPrefDir, directories);
|
2004-06-18 01:23:51 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
rv = NS_NewArrayEnumerator(aResult, directories);
|
|
|
|
}
|
2005-02-23 00:49:45 +03:00
|
|
|
else if (!strcmp(aProperty, NS_CHROME_MANIFESTS_FILE_LIST)) {
|
|
|
|
nsCOMArray<nsIFile> manifests;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFile> manifest;
|
|
|
|
mAppDir->Clone(getter_AddRefs(manifest));
|
|
|
|
manifest->AppendNative(NS_LITERAL_CSTRING("chrome"));
|
|
|
|
manifests.AppendObject(manifest);
|
|
|
|
|
|
|
|
if (mXULAppDir) {
|
|
|
|
nsCOMPtr<nsIFile> file;
|
|
|
|
mXULAppDir->Clone(getter_AddRefs(file));
|
|
|
|
file->AppendNative(NS_LITERAL_CSTRING("chrome"));
|
|
|
|
PRBool exists;
|
|
|
|
if (NS_SUCCEEDED(file->Exists(&exists)) && exists)
|
|
|
|
manifests.AppendObject(file);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mProfileDir) {
|
|
|
|
nsCOMPtr<nsIFile> profileFile;
|
|
|
|
mProfileDir->Clone(getter_AddRefs(profileFile));
|
|
|
|
profileFile->AppendNative(NS_LITERAL_CSTRING("extensions.ini"));
|
|
|
|
|
|
|
|
LoadDirsIntoArray(profileFile, "ExtensionDirs",
|
|
|
|
kAppendChromeManifests, manifests);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = NS_NewArrayEnumerator(aResult, manifests);
|
|
|
|
}
|
|
|
|
else if (!strcmp(aProperty, NS_SKIN_MANIFESTS_FILE_LIST)) {
|
|
|
|
nsCOMArray<nsIFile> manifests;
|
|
|
|
if (mProfileDir) {
|
|
|
|
nsCOMPtr<nsIFile> profileFile;
|
|
|
|
mProfileDir->Clone(getter_AddRefs(profileFile));
|
|
|
|
profileFile->AppendNative(NS_LITERAL_CSTRING("extensions.ini"));
|
|
|
|
|
|
|
|
LoadDirsIntoArray(profileFile, "ThemeDirs",
|
|
|
|
kAppendChromeManifests, manifests);
|
|
|
|
}
|
|
|
|
|
|
|
|
rv = NS_NewArrayEnumerator(aResult, manifests);
|
|
|
|
}
|
2004-09-07 22:59:07 +04:00
|
|
|
else if (!strcmp(aProperty, NS_APP_CHROME_DIR_LIST)) {
|
2005-04-11 16:43:42 +04:00
|
|
|
// NS_APP_CHROME_DIR_LIST is only used to get default (native) icons
|
|
|
|
// for OS window decoration.
|
|
|
|
|
2004-09-07 22:59:07 +04:00
|
|
|
nsCOMArray<nsIFile> directories;
|
|
|
|
|
|
|
|
if (mXULAppDir) {
|
|
|
|
nsCOMPtr<nsIFile> file;
|
|
|
|
mXULAppDir->Clone(getter_AddRefs(file));
|
|
|
|
file->AppendNative(NS_LITERAL_CSTRING("chrome"));
|
|
|
|
PRBool exists;
|
|
|
|
if (NS_SUCCEEDED(file->Exists(&exists)) && exists)
|
|
|
|
directories.AppendObject(file);
|
|
|
|
}
|
|
|
|
|
2005-04-11 16:43:42 +04:00
|
|
|
if (mProfileDir) {
|
|
|
|
static const char *const kAppendChromeDir[] = { "chrome", nsnull };
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFile> profileFile;
|
|
|
|
mProfileDir->Clone(getter_AddRefs(profileFile));
|
|
|
|
profileFile->AppendNative(NS_LITERAL_CSTRING("extensions.ini"));
|
|
|
|
|
|
|
|
LoadDirsIntoArray(profileFile, "ExtensionDirs",
|
|
|
|
kAppendChromeDir, directories);
|
|
|
|
}
|
|
|
|
|
2004-09-07 22:59:07 +04:00
|
|
|
rv = NS_NewArrayEnumerator(aResult, directories);
|
|
|
|
}
|
2004-06-18 01:23:51 +04:00
|
|
|
else
|
|
|
|
rv = NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXREDirProvider::GetDirectory(nsIFile* *aResult)
|
|
|
|
{
|
|
|
|
NS_ENSURE_TRUE(mProfileDir, NS_ERROR_NOT_INITIALIZED);
|
|
|
|
|
|
|
|
return mProfileDir->Clone(aResult);
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
|
|
|
nsXREDirProvider::DoStartup()
|
|
|
|
{
|
|
|
|
if (!mProfileNotified) {
|
|
|
|
nsCOMPtr<nsIObserverService> obsSvc
|
|
|
|
(do_GetService("@mozilla.org/observer-service;1"));
|
|
|
|
if (!obsSvc) return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
mProfileNotified = PR_TRUE;
|
|
|
|
|
|
|
|
static const PRUnichar kStartup[] = {'s','t','a','r','t','u','p','\0'};
|
|
|
|
obsSvc->NotifyObservers(nsnull, "profile-do-change", kStartup);
|
|
|
|
obsSvc->NotifyObservers(nsnull, "profile-after-change", kStartup);
|
2002-08-21 14:25:54 +04:00
|
|
|
}
|
2004-06-18 01:23:51 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
class ProfileChangeStatusImpl : public nsIProfileChangeStatus
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIPROFILECHANGESTATUS
|
|
|
|
ProfileChangeStatusImpl() { }
|
|
|
|
private:
|
|
|
|
~ProfileChangeStatusImpl() { }
|
|
|
|
};
|
|
|
|
|
|
|
|
NS_IMPL_ISUPPORTS1(ProfileChangeStatusImpl, nsIProfileChangeStatus)
|
2002-08-21 14:25:54 +04:00
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
ProfileChangeStatusImpl::VetoChange()
|
|
|
|
{
|
|
|
|
NS_ERROR("Can't veto change!");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2002-08-21 14:25:54 +04:00
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
NS_IMETHODIMP
|
|
|
|
ProfileChangeStatusImpl::ChangeFailed()
|
|
|
|
{
|
|
|
|
NS_ERROR("Profile change cancellation.");
|
2002-08-21 14:25:54 +04:00
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
void
|
|
|
|
nsXREDirProvider::DoShutdown()
|
|
|
|
{
|
|
|
|
if (mProfileNotified) {
|
|
|
|
nsCOMPtr<nsIObserverService> obssvc
|
|
|
|
(do_GetService("@mozilla.org/observer-service;1"));
|
|
|
|
NS_ASSERTION(obssvc, "No observer service?");
|
|
|
|
if (obssvc) {
|
|
|
|
nsCOMPtr<nsIProfileChangeStatus> cs = new ProfileChangeStatusImpl();
|
|
|
|
static const PRUnichar kShutdownPersist[] =
|
|
|
|
{'s','h','u','t','d','o','w','n','-','p','e','r','s','i','s','t','\0'};
|
|
|
|
obssvc->NotifyObservers(cs, "profile-change-net-teardown", kShutdownPersist);
|
|
|
|
obssvc->NotifyObservers(cs, "profile-change-teardown", kShutdownPersist);
|
|
|
|
|
|
|
|
// Phase 2c: Now that things are torn down, force JS GC so that things which depend on
|
|
|
|
// resources which are about to go away in "profile-before-change" are destroyed first.
|
|
|
|
nsCOMPtr<nsIThreadJSContextStack> stack
|
|
|
|
(do_GetService("@mozilla.org/js/xpc/ContextStack;1"));
|
|
|
|
if (stack)
|
|
|
|
{
|
|
|
|
JSContext *cx = nsnull;
|
|
|
|
stack->GetSafeJSContext(&cx);
|
|
|
|
if (cx)
|
|
|
|
::JS_GC(cx);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Phase 3: Notify observers of a profile change
|
|
|
|
obssvc->NotifyObservers(cs, "profile-before-change", kShutdownPersist);
|
|
|
|
}
|
|
|
|
mProfileNotified = PR_FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
GetProfileFolderName(char* aProfileFolderName, const char* aSource)
|
|
|
|
{
|
|
|
|
const char* reading = aSource;
|
|
|
|
|
|
|
|
while (*reading) {
|
|
|
|
*aProfileFolderName = tolower(*reading);
|
|
|
|
++aProfileFolderName; ++reading;
|
|
|
|
}
|
|
|
|
*aProfileFolderName = '\0';
|
|
|
|
}
|
|
|
|
|
2002-08-21 14:25:54 +04:00
|
|
|
nsresult
|
2005-04-26 04:37:23 +04:00
|
|
|
nsXREDirProvider::GetUserDataDirectory(nsILocalFile** aFile, PRBool aLocal)
|
2002-08-21 14:25:54 +04:00
|
|
|
{
|
2004-06-18 01:23:51 +04:00
|
|
|
NS_ASSERTION(gAppData, "gAppData not initialized!");
|
|
|
|
|
2002-08-21 14:25:54 +04:00
|
|
|
// Copied from nsAppFileLocationProvider (more or less)
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsILocalFile> localDir;
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
#if defined(XP_MACOSX)
|
2005-04-26 04:37:23 +04:00
|
|
|
FSRef fsRef;
|
|
|
|
OSType folderType;
|
|
|
|
if (aLocal) {
|
|
|
|
folderType = kCachedDataFolderType;
|
|
|
|
} else {
|
2004-06-18 11:38:59 +04:00
|
|
|
#ifdef MOZ_THUNDERBIRD
|
2005-04-26 04:37:23 +04:00
|
|
|
folderType = kDomainLibraryFolderType;
|
2004-06-18 11:38:59 +04:00
|
|
|
#else
|
2005-04-26 04:37:23 +04:00
|
|
|
folderType = kApplicationSupportFolderType;
|
2004-06-18 11:38:59 +04:00
|
|
|
#endif
|
2005-04-26 04:37:23 +04:00
|
|
|
}
|
|
|
|
OSErr err = ::FSFindFolder(kUserDomain, folderType, kCreateFolder, &fsRef);
|
2005-04-26 05:38:00 +04:00
|
|
|
NS_ENSURE_FALSE(err, NS_ERROR_FAILURE);
|
2004-06-18 01:23:51 +04:00
|
|
|
|
|
|
|
rv = NS_NewNativeLocalFile(EmptyCString(), PR_TRUE, getter_AddRefs(localDir));
|
2002-08-21 14:25:54 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2004-06-18 01:23:51 +04:00
|
|
|
nsCOMPtr<nsILocalFileMac> dirFileMac = do_QueryInterface(localDir);
|
|
|
|
NS_ENSURE_TRUE(dirFileMac, NS_ERROR_UNEXPECTED);
|
|
|
|
|
|
|
|
rv = dirFileMac->InitWithFSRef(&fsRef);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
// Note that MacOS ignores the vendor when creating the profile hierarchy - all
|
|
|
|
// application preferences directories live alongside one another in
|
|
|
|
// ~/Library/Application Support/
|
|
|
|
rv = dirFileMac->AppendNative(nsDependentCString(gAppData->appName));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2002-08-21 14:25:54 +04:00
|
|
|
#elif defined(XP_WIN)
|
2004-06-18 01:23:51 +04:00
|
|
|
LPMALLOC pMalloc;
|
|
|
|
LPITEMIDLIST pItemIDList = NULL;
|
|
|
|
|
|
|
|
if (!SUCCEEDED(SHGetMalloc(&pMalloc)))
|
|
|
|
return NS_ERROR_OUT_OF_MEMORY;
|
|
|
|
|
|
|
|
char appDataPath[MAXPATHLEN];
|
|
|
|
|
2005-04-26 04:37:23 +04:00
|
|
|
int folder = aLocal ? CSIDL_LOCAL_APPDATA : CSIDL_APPDATA;
|
|
|
|
|
|
|
|
if (SUCCEEDED(SHGetSpecialFolderLocation(NULL, folder, &pItemIDList)) &&
|
2004-06-18 01:23:51 +04:00
|
|
|
SUCCEEDED(SHGetPathFromIDList(pItemIDList, appDataPath))) {
|
|
|
|
} else {
|
|
|
|
if (!GetWindowsDirectory(appDataPath, MAXPATHLEN)) {
|
|
|
|
NS_WARNING("Aaah, no windows directory!");
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
}
|
2002-08-21 14:25:54 +04:00
|
|
|
}
|
2004-06-18 01:23:51 +04:00
|
|
|
|
|
|
|
if (pItemIDList) pMalloc->Free(pItemIDList);
|
|
|
|
pMalloc->Release();
|
|
|
|
|
|
|
|
rv = NS_NewNativeLocalFile(nsDependentCString(appDataPath),
|
|
|
|
PR_TRUE, getter_AddRefs(localDir));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (gAppData->appVendor) {
|
|
|
|
rv = localDir->AppendNative(nsDependentCString(gAppData->appVendor));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
rv = localDir->AppendNative(nsDependentCString(gAppData->appName));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
#elif defined(XP_OS2)
|
|
|
|
#if 0 /* For OS/2 we want to always use MOZILLA_HOME */
|
|
|
|
// we want an environment variable of the form
|
|
|
|
// FIREFOX_HOME, etc
|
|
|
|
nsDependentCString envVar(nsDependentCString(gAppData->appName));
|
|
|
|
envVar.Append("_HOME");
|
|
|
|
char *pHome = getenv(envVar.get());
|
|
|
|
#endif
|
|
|
|
char *pHome = getenv("MOZILLA_HOME");
|
|
|
|
if (pHome && *pHome) {
|
|
|
|
rv = NS_NewNativeLocalFile(nsDependentCString(pHome), PR_TRUE,
|
|
|
|
getter_AddRefs(localDir));
|
|
|
|
} else {
|
|
|
|
PPIB ppib;
|
|
|
|
PTIB ptib;
|
|
|
|
char appDir[CCHMAXPATH];
|
|
|
|
|
|
|
|
DosGetInfoBlocks(&ptib, &ppib);
|
|
|
|
DosQueryModuleName(ppib->pib_hmte, CCHMAXPATH, appDir);
|
|
|
|
*strrchr(appDir, '\\') = '\0';
|
|
|
|
rv = NS_NewNativeLocalFile(nsDependentCString(appDir), PR_TRUE, getter_AddRefs(localDir));
|
|
|
|
}
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (gAppData->appVendor) {
|
|
|
|
rv = localDir->AppendNative(nsDependentCString(gAppData->appVendor));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
rv = localDir->AppendNative(nsDependentCString(gAppData->appName));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2002-08-21 14:25:54 +04:00
|
|
|
#elif defined(XP_BEOS)
|
2004-06-18 01:23:51 +04:00
|
|
|
char appDir[MAXPATHLEN];
|
|
|
|
if (find_directory(B_USER_SETTINGS_DIRECTORY, NULL, true, appDir, MAXPATHLEN))
|
|
|
|
return NS_ERROR_FAILURE;
|
|
|
|
|
|
|
|
int len = strlen(appDir);
|
|
|
|
appDir[len] = '/';
|
|
|
|
appDir[len+1] = '\0';
|
|
|
|
|
|
|
|
rv = NS_NewNativeLocalFile(nsDependentCString(appDir), PR_TRUE,
|
|
|
|
getter_AddRefs(localDir));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
if (gAppData->appVendor) {
|
|
|
|
rv = localDir->AppendNative(nsDependentCString(gAppData->appVendor));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
}
|
|
|
|
rv = localDir->AppendNative(nsDependentCString(gAppData->appName));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
#elif defined(XP_UNIX)
|
|
|
|
const char* homeDir = getenv("HOME");
|
|
|
|
if (!homeDir || !*homeDir)
|
2002-08-21 14:25:54 +04:00
|
|
|
return NS_ERROR_FAILURE;
|
2004-06-18 01:23:51 +04:00
|
|
|
|
|
|
|
rv = NS_NewNativeLocalFile(nsDependentCString(homeDir), PR_TRUE,
|
|
|
|
getter_AddRefs(localDir));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
char* appNameFolder = nsnull;
|
|
|
|
char profileFolderName[MAXPATHLEN] = ".";
|
|
|
|
|
|
|
|
// Offset 1 for the outermost folder to make it hidden (i.e. using the ".")
|
|
|
|
char* writing = profileFolderName + 1;
|
|
|
|
if (gAppData->appVendor) {
|
|
|
|
GetProfileFolderName(writing, gAppData->appVendor);
|
|
|
|
|
|
|
|
rv = localDir->AppendNative(nsDependentCString(profileFolderName));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
char temp[MAXPATHLEN];
|
|
|
|
GetProfileFolderName(temp, gAppData->appName);
|
|
|
|
appNameFolder = temp;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
GetProfileFolderName(writing, gAppData->appName);
|
|
|
|
appNameFolder = profileFolderName;
|
|
|
|
}
|
|
|
|
rv = localDir->AppendNative(nsDependentCString(appNameFolder));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
2002-08-21 14:25:54 +04:00
|
|
|
#else
|
|
|
|
#error dont_know_how_to_get_product_dir_on_your_platform
|
|
|
|
#endif
|
|
|
|
|
2002-08-26 14:18:41 +04:00
|
|
|
rv = EnsureDirectoryExists(localDir);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
*aFile = localDir;
|
|
|
|
NS_ADDREF(*aFile);
|
2002-08-21 14:25:54 +04:00
|
|
|
return NS_OK;
|
|
|
|
}
|
2002-08-26 14:18:41 +04:00
|
|
|
|
|
|
|
nsresult
|
2004-06-18 01:23:51 +04:00
|
|
|
nsXREDirProvider::EnsureDirectoryExists(nsIFile* aDirectory)
|
2002-08-26 14:18:41 +04:00
|
|
|
{
|
|
|
|
PRBool exists;
|
|
|
|
nsresult rv = aDirectory->Exists(&exists);
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
if (!exists)
|
2005-04-26 04:37:23 +04:00
|
|
|
rv = aDirectory->Create(nsIFile::DIRECTORY_TYPE, 0700);
|
2002-08-26 14:18:41 +04:00
|
|
|
|
|
|
|
return rv;
|
|
|
|
}
|
2004-06-18 01:23:51 +04:00
|
|
|
|
|
|
|
void
|
|
|
|
nsXREDirProvider::EnsureProfileFileExists(nsIFile *aFile)
|
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
PRBool exists;
|
|
|
|
|
|
|
|
rv = aFile->Exists(&exists);
|
|
|
|
if (NS_FAILED(rv) || exists) return;
|
|
|
|
|
|
|
|
nsCAutoString leafName;
|
|
|
|
rv = aFile->GetNativeLeafName(leafName);
|
|
|
|
if (NS_FAILED(rv)) return;
|
|
|
|
|
|
|
|
nsCOMPtr<nsIFile> defaultsFile;
|
|
|
|
rv = GetProfileDefaultsDir(getter_AddRefs(defaultsFile));
|
|
|
|
if (NS_FAILED(rv)) return;
|
|
|
|
|
|
|
|
rv = defaultsFile->AppendNative(leafName);
|
|
|
|
if (NS_FAILED(rv)) return;
|
|
|
|
|
|
|
|
defaultsFile->CopyToNative(mProfileDir, EmptyCString());
|
|
|
|
}
|
|
|
|
|
|
|
|
nsresult
|
|
|
|
nsXREDirProvider::GetProfileDefaultsDir(nsIFile* *aResult)
|
|
|
|
{
|
|
|
|
NS_ASSERTION(mAppDir, "nsXREDirProvider not initialized.");
|
|
|
|
NS_PRECONDITION(aResult, "Null out-param");
|
|
|
|
|
|
|
|
nsresult rv;
|
|
|
|
nsCOMPtr<nsIFile> defaultsDir;
|
|
|
|
|
|
|
|
rv = mAppDir->Clone(getter_AddRefs(defaultsDir));
|
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
2004-09-07 22:59:07 +04:00
|
|
|
rv = defaultsDir->AppendNative(NS_LITERAL_CSTRING("defaults"));
|
|
|
|
rv |= defaultsDir->AppendNative(NS_LITERAL_CSTRING("profile"));
|
2004-06-18 01:23:51 +04:00
|
|
|
NS_ENSURE_SUCCESS(rv, rv);
|
|
|
|
|
|
|
|
NS_ADDREF(*aResult = defaultsDir);
|
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|