Bug 337636 Get bookmarks working on suiterunner. r=neil,sr=jag

This commit is contained in:
bugzilla%standard8.demon.co.uk 2006-05-17 08:20:23 +00:00
parent fd97559f43
commit 50a293e6a5
4 changed files with 364 additions and 1 deletions

View File

@ -931,6 +931,7 @@ suite/common/Makefile
suite/components/Makefile
suite/components/xulappinfo/Makefile
suite/locales/Makefile
suite/profile/Makefile
"
MAKEFILES_xulrunner="

View File

@ -52,7 +52,10 @@ DIRS = \
# XXX Once SeaMonkey becomes a fully fledged xul app, we can remove
# this ifdef.
ifdef MOZ_XUL_APP
DIRS += app
DIRS += \
app \
profile \
$(NULL)
else
# XXX This should completely go away in the future but still holds the
# xulappinfo component needed as long as suite is not a fully fledged

68
suite/profile/Makefile.in Normal file
View File

@ -0,0 +1,68 @@
# ***** 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
# Mark Banner <bugzilla@standard8.demon.co.uk>
#
# Portions created by the Initial Developer are Copyright (C) 2006
# the Initial Developer. All Rights Reserved.
#
# Contributor(s):
#
# 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 *****
DEPTH = ../..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
# XXX This needs to be included when bug 329744 is implemented.
# DIRS = migration
MODULE = suiteprofile
LIBRARY_NAME = suiteprofile
EXPORT_LIBRARY = 1
IS_COMPONENT = 1
MODULE_NAME = nsSuiteProfileModule
MOZILLA_INTERNAL_API = 1
REQUIRES = \
xpcom \
string \
xulapp \
$(NULL)
CPPSRCS = \
nsSuiteDirectoryProvider.cpp \
$(NULL)
EXTRA_DSO_LDOPTS = $(MOZ_COMPONENT_LIBS)
include $(topsrcdir)/config/rules.mk

View File

@ -0,0 +1,291 @@
/* ***** 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 the Mozilla Firefox browser.
*
* The Initial Developer of the Original Code is
* Benjamin Smedberg <benjamin@smedbergs.us>
*
* Portions created by the Initial Developer are Copyright (C) 2006
* the Initial Developer. All Rights Reserved.
*
* Contributor(s):
* Mark Banner <bugzilla@standard8.demon.co.uk>
*
* 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 ***** */
#include "nsIDirectoryService.h"
#include "nsIFile.h"
#include "nsISimpleEnumerator.h"
#include "nsAppDirectoryServiceDefs.h"
#include "nsCategoryManagerUtils.h"
#include "nsCOMArray.h"
#include "nsIGenericFactory.h"
#include "nsString.h"
#include "nsXULAppAPI.h"
class nsSuiteDirectoryProvider : public nsIDirectoryServiceProvider2
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSIDIRECTORYSERVICEPROVIDER
NS_DECL_NSIDIRECTORYSERVICEPROVIDER2
static NS_METHOD Register(nsIComponentManager* aCompMgr,
nsIFile* aPath, const char *aLoaderStr,
const char *aType,
const nsModuleComponentInfo *aInfo);
static NS_METHOD Unregister(nsIComponentManager* aCompMgr,
nsIFile* aPath, const char *aLoaderStr,
const nsModuleComponentInfo *aInfo);
private:
void EnsureProfileFile(const nsACString& aLeafName,
nsIFile* aParentDir, nsIFile* aTarget);
class AppendingEnumerator : public nsISimpleEnumerator
{
public:
NS_DECL_ISUPPORTS
NS_DECL_NSISIMPLEENUMERATOR
AppendingEnumerator(nsISimpleEnumerator* aBase,
const char* const aLeafName);
private:
void GetNext();
nsCOMPtr<nsISimpleEnumerator> mBase;
nsDependentCString mLeafName;
nsCOMPtr<nsIFile> mNext;
};
};
NS_IMPL_ISUPPORTS2(nsSuiteDirectoryProvider,
nsIDirectoryServiceProvider,
nsIDirectoryServiceProvider2)
NS_IMETHODIMP
nsSuiteDirectoryProvider::GetFile(const char *aKey,
PRBool *aPersist,
nsIFile* *aResult)
{
// NOTE: This function can be reentrant through the NS_GetSpecialDirectory
// call, so be careful not to cause infinite recursion.
// i.e. the check for supported files must come first.
const char* leafName = nsnull;
if (!strcmp(aKey, NS_APP_BOOKMARKS_50_FILE))
leafName = "bookmarks.html";
else if (!strcmp(aKey, NS_APP_USER_PANELS_50_FILE))
leafName = "panels.rdf";
else if (!strcmp(aKey, NS_APP_SEARCH_50_FILE))
leafName = "search.rdf";
else
return NS_ERROR_FAILURE;
nsCOMPtr<nsIFile> parentDir;
nsresult rv = NS_GetSpecialDirectory(NS_APP_USER_PROFILE_50_DIR,
getter_AddRefs(parentDir));
if (NS_FAILED(rv))
return rv;
nsCOMPtr<nsIFile> file;
rv = parentDir->Clone(getter_AddRefs(file));
if (NS_FAILED(rv))
return rv;
nsDependentCString leafStr(leafName);
file->AppendNative(leafStr);
PRBool exists;
if (NS_SUCCEEDED(file->Exists(&exists)) && !exists)
EnsureProfileFile(leafStr, parentDir, file);
*aPersist = PR_TRUE;
NS_IF_ADDREF(*aResult = file);
return NS_OK;
}
NS_IMETHODIMP
nsSuiteDirectoryProvider::GetFiles(const char *aKey,
nsISimpleEnumerator* *aResult)
{
if (strcmp(aKey, NS_APP_SEARCH_DIR_LIST))
return NS_ERROR_FAILURE;
nsresult rv;
nsCOMPtr<nsIProperties> dirSvc(do_GetService(NS_DIRECTORY_SERVICE_CONTRACTID, &rv));
if (NS_FAILED(rv))
return rv;
nsCOMPtr<nsISimpleEnumerator> list;
rv = dirSvc->Get(XRE_EXTENSIONS_DIR_LIST,
NS_GET_IID(nsISimpleEnumerator),
getter_AddRefs(list));
if (NS_FAILED(rv))
return rv;
*aResult = new AppendingEnumerator(list, "searchplugins");
if (!*aResult)
return NS_ERROR_OUT_OF_MEMORY;
NS_ADDREF(*aResult);
return NS_SUCCESS_AGGREGATE_RESULT;
}
void
nsSuiteDirectoryProvider::EnsureProfileFile(const nsACString& aLeafName,
nsIFile* aParentDir,
nsIFile* aTarget)
{
nsCOMPtr<nsIFile> defaults;
NS_GetSpecialDirectory(NS_APP_PROFILE_DEFAULTS_50_DIR,
getter_AddRefs(defaults));
if (!defaults)
return;
defaults->AppendNative(aLeafName);
defaults->CopyToNative(aParentDir, aLeafName);
}
NS_IMPL_ISUPPORTS1(nsSuiteDirectoryProvider::AppendingEnumerator,
nsISimpleEnumerator)
NS_IMETHODIMP
nsSuiteDirectoryProvider::AppendingEnumerator::HasMoreElements(PRBool *aResult)
{
*aResult = mNext != nsnull;
return NS_OK;
}
void
nsSuiteDirectoryProvider::AppendingEnumerator::GetNext()
{
// Ignore all errors
PRBool more;
while (NS_SUCCEEDED(mBase->HasMoreElements(&more)) && more) {
nsCOMPtr<nsISupports> nextSupports;
mBase->GetNext(getter_AddRefs(nextSupports));
mNext = do_QueryInterface(nextSupports);
if (!mNext)
continue;
mNext->AppendNative(mLeafName);
PRBool exists;
if (NS_SUCCEEDED(mNext->Exists(&exists)) && exists)
return;
}
mNext = nsnull;
}
NS_IMETHODIMP
nsSuiteDirectoryProvider::AppendingEnumerator::GetNext(nsISupports* *aResult)
{
NS_ENSURE_ARG_POINTER(aResult);
if (!mNext) {
*aResult = nsnull;
return NS_ERROR_FAILURE;
}
NS_ADDREF(*aResult = mNext);
GetNext();
return NS_OK;
}
nsSuiteDirectoryProvider::AppendingEnumerator::AppendingEnumerator
(nsISimpleEnumerator* aBase, const char* const aLeafName) :
mBase(aBase), mLeafName(aLeafName)
{
// Initialize mNext to begin.
GetNext();
}
static char const kContractID[] = "@mozilla.org/suite/directory-provider;1";
// {9aa21826-9d1d-433d-8c10-f313b26fa9dd}
#define NS_SUITEDIRECTORYPROVIDER_CID \
{ 0x9aa21826, 0x9d1d, 0x433d, { 0x8c, 0x10, 0xf3, 0x13, 0xb2, 0x6f, 0xa9, 0xdd } }
NS_METHOD
nsSuiteDirectoryProvider::Register(nsIComponentManager* aCompMgr,
nsIFile* aPath,
const char *aLoaderStr,
const char *aType,
const nsModuleComponentInfo *aInfo)
{
nsresult rv;
nsCOMPtr<nsICategoryManager> catMan
(do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv));
if (NS_FAILED(rv))
return rv;
return catMan->AddCategoryEntry(XPCOM_DIRECTORY_PROVIDER_CATEGORY,
"suite-directory-provider",
kContractID, PR_TRUE, PR_TRUE, nsnull);
}
NS_METHOD
nsSuiteDirectoryProvider::Unregister(nsIComponentManager* aCompMgr,
nsIFile* aPath, const char *aLoaderStr,
const nsModuleComponentInfo *aInfo)
{
nsresult rv;
nsCOMPtr<nsICategoryManager> catMan
(do_GetService(NS_CATEGORYMANAGER_CONTRACTID, &rv));
if (NS_FAILED(rv))
return rv;
return catMan->DeleteCategoryEntry(XPCOM_DIRECTORY_PROVIDER_CATEGORY,
"suite-directory-provider", PR_TRUE);
}
NS_GENERIC_FACTORY_CONSTRUCTOR(nsSuiteDirectoryProvider)
static const nsModuleComponentInfo components[] = {
{
"nsSuiteDirectoryProvider",
NS_SUITEDIRECTORYPROVIDER_CID,
kContractID,
nsSuiteDirectoryProviderConstructor,
nsSuiteDirectoryProvider::Register,
nsSuiteDirectoryProvider::Unregister
}
};
NS_IMPL_NSGETMODULE(SuiteDirProvider, components)