2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* ***** BEGIN LICENSE BLOCK *****
|
|
|
|
* Version: NPL 1.1/GPL 2.0/LGPL 2.1
|
1999-01-26 23:51:18 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* The contents of this file are subject to the Netscape Public License
|
|
|
|
* Version 1.1 (the "License"); you may not use this file except in
|
|
|
|
* compliance with the License. You may obtain a copy of the License at
|
|
|
|
* http://www.mozilla.org/NPL/
|
1999-01-26 23:51:18 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Software distributed under the License is distributed on an "AS IS" basis,
|
|
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
|
|
|
* for the specific language governing rights and limitations under the
|
|
|
|
* License.
|
1999-01-26 23:51:18 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* The Initial Developer of the Original Code is
|
|
|
|
* Netscape Communications Corporation.
|
|
|
|
* Portions created by the Initial Developer are Copyright (C) 1998
|
|
|
|
* the Initial Developer. All Rights Reserved.
|
1999-11-06 03:43:54 +00:00
|
|
|
*
|
2001-09-28 20:14:13 +00:00
|
|
|
* Contributor(s):
|
1999-12-01 00:21:53 +00:00
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
2001-09-28 20:14:13 +00: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 NPL, 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 NPL, the GPL or the LGPL.
|
|
|
|
*
|
|
|
|
* ***** END LICENSE BLOCK ***** */
|
1999-01-26 23:51:18 +00:00
|
|
|
|
2000-07-19 03:36:27 +00:00
|
|
|
#ifndef XPCOM_STANDALONE
|
1999-01-26 23:51:18 +00:00
|
|
|
#define NS_IMPL_IDS
|
|
|
|
|
|
|
|
#include "nsIEventQueueService.h"
|
2000-05-02 05:52:50 +00:00
|
|
|
#include "nsIPersistentProperties2.h"
|
1999-01-26 23:51:18 +00:00
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
#include "nsIURL.h"
|
1999-06-18 17:34:08 +00:00
|
|
|
#include "nsIIOService.h"
|
2001-04-10 06:01:08 +00:00
|
|
|
#include "nsNetCID.h"
|
1999-06-18 17:34:08 +00:00
|
|
|
#include "nsIChannel.h"
|
1999-03-09 09:44:27 +00:00
|
|
|
#include "nsIComponentManager.h"
|
1999-06-11 02:21:34 +00:00
|
|
|
#include "nsIEnumerator.h"
|
1999-07-17 08:17:54 +00:00
|
|
|
#include <iostream.h> //BAD DOG -- no biscuit!
|
2001-09-29 08:28:41 +00:00
|
|
|
#include "nsReadableUtils.h"
|
1999-06-11 02:21:34 +00:00
|
|
|
|
|
|
|
#include "nsSpecialSystemDirectory.h"
|
|
|
|
|
1999-01-26 23:51:18 +00:00
|
|
|
#ifdef XP_PC
|
|
|
|
#include "plevent.h"
|
|
|
|
#endif
|
|
|
|
|
1999-05-16 22:59:02 +00:00
|
|
|
#define TEST_URL "resource:/res/test.properties"
|
1999-01-26 23:51:18 +00:00
|
|
|
|
1999-02-03 01:50:15 +00:00
|
|
|
#ifdef XP_PC
|
1999-01-26 23:51:18 +00:00
|
|
|
#define NETLIB_DLL "netlib.dll"
|
1999-06-11 02:21:34 +00:00
|
|
|
#define RAPTORBASE_DLL "raptorbase.dll"
|
|
|
|
#define XPCOM_DLL "xpcom32.dll"
|
1999-02-03 01:50:15 +00:00
|
|
|
#else
|
|
|
|
#ifdef XP_MAC
|
|
|
|
#define NETLIB_DLL "NETLIB_DLL"
|
1999-06-11 02:21:34 +00:00
|
|
|
#define RAPTORBASE_DLL "base.shlb"
|
|
|
|
#define XPCOM_DLL "XPCOM_DLL"
|
1999-02-03 01:50:15 +00:00
|
|
|
#else
|
1999-06-04 22:17:30 +00:00
|
|
|
#define NETLIB_DLL "libnetlib"MOZ_DLL_SUFFIX
|
1999-06-11 02:21:34 +00:00
|
|
|
#define RAPTORBASE_DLL "libraptorbase"MOZ_DLL_SUFFIX
|
|
|
|
#define XPCOM_DLL "libxpcom"MOZ_DLL_SUFFIX
|
1999-02-03 01:50:15 +00:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2001-04-10 06:01:08 +00:00
|
|
|
static NS_DEFINE_CID(kIOServiceCID, NS_IOSERVICE_CID);
|
1999-12-01 00:21:53 +00:00
|
|
|
static NS_DEFINE_CID(kEventQueueCID, NS_EVENTQUEUE_CID);
|
|
|
|
static NS_DEFINE_CID(kEventQueueServiceCID, NS_EVENTQUEUESERVICE_CID);
|
1999-06-11 02:21:34 +00:00
|
|
|
|
|
|
|
/***************************************************************************/
|
|
|
|
extern "C" void
|
|
|
|
NS_SetupRegistry()
|
|
|
|
{
|
1999-06-16 00:29:34 +00:00
|
|
|
nsComponentManager::AutoRegister(nsIComponentManager::NS_Startup,
|
|
|
|
NULL /* default */);
|
1999-06-11 02:21:34 +00:00
|
|
|
|
|
|
|
// startup netlib:
|
1999-06-18 17:34:08 +00:00
|
|
|
nsComponentManager::RegisterComponent(kEventQueueServiceCID, NULL, NULL, XPCOM_DLL, PR_FALSE, PR_FALSE);
|
|
|
|
nsComponentManager::RegisterComponent(kIOServiceCID, NULL, NULL, NETLIB_DLL, PR_FALSE, PR_FALSE);
|
1999-06-11 02:21:34 +00:00
|
|
|
|
|
|
|
// Create the Event Queue for this thread...
|
|
|
|
nsIEventQueueService* pEventQService;
|
|
|
|
|
|
|
|
pEventQService = nsnull;
|
|
|
|
nsresult result = nsServiceManager::GetService(kEventQueueServiceCID,
|
1999-12-01 00:21:53 +00:00
|
|
|
NS_GET_IID(nsIEventQueueService),
|
1999-07-22 04:41:11 +00:00
|
|
|
(nsISupports **)&pEventQService);
|
1999-06-11 02:21:34 +00:00
|
|
|
if (NS_SUCCEEDED(result)) {
|
|
|
|
// XXX: What if this fails?
|
|
|
|
result = pEventQService->CreateThreadEventQueue();
|
|
|
|
}
|
|
|
|
|
|
|
|
nsComponentManager::RegisterComponent(kPersistentPropertiesCID,
|
|
|
|
NULL,
|
|
|
|
NULL,
|
|
|
|
RAPTORBASE_DLL,
|
|
|
|
PR_FALSE,
|
|
|
|
PR_FALSE);
|
|
|
|
}
|
|
|
|
|
1999-02-03 01:50:15 +00:00
|
|
|
|
2000-07-19 03:36:27 +00:00
|
|
|
#endif
|
1999-01-26 23:51:18 +00:00
|
|
|
int
|
1999-05-16 20:47:59 +00:00
|
|
|
main(int argc, char* argv[])
|
1999-01-26 23:51:18 +00:00
|
|
|
{
|
2000-07-19 03:36:27 +00:00
|
|
|
#ifndef XPCOM_STANDALONE
|
1999-05-16 20:47:59 +00:00
|
|
|
nsresult ret;
|
|
|
|
|
1999-02-03 01:50:15 +00:00
|
|
|
NS_SetupRegistry();
|
1999-05-16 20:47:59 +00:00
|
|
|
|
1999-06-18 17:34:08 +00:00
|
|
|
nsIInputStream* in = nsnull;
|
|
|
|
|
2001-07-25 07:54:28 +00:00
|
|
|
nsCOMPtr<nsIIOService> service(do_GetService(kIOServiceCID, &ret));
|
1999-06-18 17:34:08 +00:00
|
|
|
if (NS_FAILED(ret)) return ret;
|
|
|
|
|
2001-07-25 07:54:28 +00:00
|
|
|
nsCOMPtr<nsIEventQueueService> eventQService =
|
|
|
|
do_GetService(kEventQueueServiceCID, &ret);
|
1999-06-18 17:34:08 +00:00
|
|
|
if (NS_FAILED(ret)) return ret;
|
|
|
|
|
|
|
|
nsIChannel *channel = nsnull;
|
2000-03-29 03:58:50 +00:00
|
|
|
ret = service->NewChannel(TEST_URL, nsnull, &channel);
|
1999-06-18 17:34:08 +00:00
|
|
|
if (NS_FAILED(ret)) return ret;
|
|
|
|
|
|
|
|
nsIEventQueue *eventQ = nsnull;
|
1999-11-30 00:32:43 +00:00
|
|
|
ret = eventQService->GetThreadEventQueue(NS_CURRENT_THREAD, &eventQ);
|
1999-06-18 17:34:08 +00:00
|
|
|
if (NS_FAILED(ret)) return ret;
|
|
|
|
|
2001-02-21 20:38:08 +00:00
|
|
|
ret = channel->Open(&in);
|
1999-06-18 17:34:08 +00:00
|
|
|
if (NS_FAILED(ret)) return ret;
|
|
|
|
|
1999-05-16 20:47:59 +00:00
|
|
|
nsIPersistentProperties* props = nsnull;
|
1999-04-22 07:32:51 +00:00
|
|
|
ret = nsComponentManager::CreateInstance(kPersistentPropertiesCID, NULL,
|
1999-12-01 00:21:53 +00:00
|
|
|
NS_GET_IID(nsIPersistentProperties), (void**) &props);
|
1999-05-16 20:47:59 +00:00
|
|
|
if (NS_FAILED(ret) || (!props)) {
|
1999-04-22 07:32:51 +00:00
|
|
|
printf("create nsIPersistentProperties failed\n");
|
1999-01-26 23:51:18 +00:00
|
|
|
return 1;
|
|
|
|
}
|
1999-05-16 20:47:59 +00:00
|
|
|
ret = props->Load(in);
|
|
|
|
if (NS_FAILED(ret)) {
|
|
|
|
printf("cannot load properties\n");
|
|
|
|
return 1;
|
|
|
|
}
|
1999-01-26 23:51:18 +00:00
|
|
|
int i = 1;
|
|
|
|
while (1) {
|
|
|
|
char name[16];
|
1999-05-16 20:47:59 +00:00
|
|
|
name[0] = 0;
|
1999-01-26 23:51:18 +00:00
|
|
|
sprintf(name, "%d", i);
|
2000-04-26 00:55:37 +00:00
|
|
|
nsAutoString v;
|
|
|
|
ret = props->GetStringProperty(NS_ConvertASCIItoUCS2(name), v);
|
1999-05-16 20:47:59 +00:00
|
|
|
if (NS_FAILED(ret) || (!v.Length())) {
|
1999-01-26 23:51:18 +00:00
|
|
|
break;
|
|
|
|
}
|
2001-09-29 08:28:41 +00:00
|
|
|
char* value = ToNewCString(v);
|
1999-05-16 20:47:59 +00:00
|
|
|
if (value) {
|
|
|
|
cout << "\"" << i << "\"=\"" << value << "\"" << endl;
|
|
|
|
delete[] value;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
printf("%d: ToNewCString failed\n", i);
|
|
|
|
}
|
1999-01-26 23:51:18 +00:00
|
|
|
i++;
|
|
|
|
}
|
|
|
|
|
1999-06-11 02:21:34 +00:00
|
|
|
nsIBidirectionalEnumerator* propEnum = nsnull;
|
|
|
|
ret = props->EnumerateProperties(&propEnum);
|
|
|
|
if (NS_FAILED(ret)) {
|
|
|
|
printf("cannot enumerate properties\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
ret = propEnum->First();
|
|
|
|
if (NS_FAILED(ret))
|
|
|
|
{
|
|
|
|
printf("enumerator is empty\n");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
cout << endl << "Key" << "\t" << "Value" << endl;
|
|
|
|
cout << "---" << "\t" << "-----" << endl;
|
|
|
|
while (NS_SUCCEEDED(ret))
|
|
|
|
{
|
|
|
|
nsIPropertyElement* propElem = nsnull;
|
|
|
|
ret = propEnum->CurrentItem((nsISupports**)&propElem);
|
|
|
|
if (NS_FAILED(ret)) {
|
|
|
|
printf("failed to get current item\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2000-05-02 05:08:39 +00:00
|
|
|
|
|
|
|
PRUnichar *pKey = nsnull;
|
|
|
|
PRUnichar *pVal = nsnull;
|
|
|
|
|
|
|
|
ret = propElem->GetKey(&pKey);
|
1999-06-11 02:21:34 +00:00
|
|
|
if (NS_FAILED(ret)) {
|
|
|
|
printf("failed to get current element's key\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2000-05-02 05:08:39 +00:00
|
|
|
ret = propElem->GetValue(&pVal);
|
1999-06-11 02:21:34 +00:00
|
|
|
if (NS_FAILED(ret)) {
|
|
|
|
printf("failed to get current element's value\n");
|
|
|
|
return 1;
|
|
|
|
}
|
2000-05-02 05:08:39 +00:00
|
|
|
|
|
|
|
nsAutoString keyAdjustedLengthBuff(pKey);
|
|
|
|
nsAutoString valAdjustedLengthBuff(pVal);
|
|
|
|
|
2001-09-29 08:28:41 +00:00
|
|
|
char* keyCStr = ToNewCString(keyAdjustedLengthBuff);
|
|
|
|
char* valCStr = ToNewCString(valAdjustedLengthBuff);
|
1999-06-11 02:21:34 +00:00
|
|
|
if (keyCStr && valCStr)
|
|
|
|
cout << keyCStr << "\t" << valCStr << endl;
|
|
|
|
delete[] keyCStr;
|
|
|
|
delete[] valCStr;
|
2000-05-02 05:08:39 +00:00
|
|
|
delete[] pKey;
|
|
|
|
delete[] pVal;
|
1999-06-11 02:21:34 +00:00
|
|
|
ret = propEnum->Next();
|
|
|
|
}
|
2000-07-19 03:36:27 +00:00
|
|
|
#endif
|
1999-01-26 23:51:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|