1999-07-28 08:01:55 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
|
|
|
|
*
|
1999-11-06 03:43:54 +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-07-28 08:01:55 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +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-07-28 08:01:55 +00:00
|
|
|
*
|
1999-11-06 03:43:54 +00:00
|
|
|
* The Original Code is mozilla.org code.
|
|
|
|
*
|
|
|
|
* The Initial Developer of the Original Code is Netscape
|
1999-07-28 08:01:55 +00:00
|
|
|
* Communications Corporation. Portions created by Netscape are
|
1999-11-06 03:43:54 +00:00
|
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All
|
|
|
|
* Rights Reserved.
|
|
|
|
*
|
|
|
|
* Contributor(s):
|
1999-12-01 00:21:53 +00:00
|
|
|
* Pierre Phaneuf <pp@ludusdesign.com>
|
1999-07-28 08:01:55 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "nsIServiceManager.h"
|
|
|
|
|
1999-07-28 08:28:10 +00:00
|
|
|
// Gee this seems simple! It's for testing for memory leaks with Purify.
|
1999-07-28 08:01:55 +00:00
|
|
|
|
1999-07-28 08:28:10 +00:00
|
|
|
void main(int argc, char* argv[])
|
1999-07-28 08:01:55 +00:00
|
|
|
{
|
|
|
|
nsresult rv;
|
|
|
|
nsIServiceManager* servMgr;
|
2000-01-06 01:05:13 +00:00
|
|
|
rv = NS_InitXPCOM(&servMgr, NULL);
|
1999-07-28 08:01:55 +00:00
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "NS_InitXPCOM failed");
|
1999-07-28 08:28:10 +00:00
|
|
|
|
|
|
|
// try loading a component and releasing it to see if it leaks
|
|
|
|
if (argc > 1 && argv[1] != nsnull) {
|
1999-09-28 18:01:47 +00:00
|
|
|
char* cidStr = argv[1];
|
1999-07-28 08:28:10 +00:00
|
|
|
nsISupports* obj = nsnull;
|
1999-09-28 18:01:47 +00:00
|
|
|
if (cidStr[0] == '{') {
|
|
|
|
nsCID cid;
|
|
|
|
cid.Parse(cidStr);
|
|
|
|
rv = nsComponentManager::CreateInstance(cid, nsnull,
|
1999-12-01 00:21:53 +00:00
|
|
|
NS_GET_IID(nsISupports),
|
1999-09-28 18:01:47 +00:00
|
|
|
(void**)&obj);
|
|
|
|
}
|
|
|
|
else {
|
2000-09-13 23:57:52 +00:00
|
|
|
// contractID case:
|
1999-09-28 18:01:47 +00:00
|
|
|
rv = nsComponentManager::CreateInstance(cidStr, nsnull,
|
1999-12-01 00:21:53 +00:00
|
|
|
NS_GET_IID(nsISupports),
|
1999-09-28 18:01:47 +00:00
|
|
|
(void**)&obj);
|
|
|
|
}
|
1999-07-28 08:28:10 +00:00
|
|
|
if (NS_SUCCEEDED(rv)) {
|
1999-09-28 18:01:47 +00:00
|
|
|
printf("Successfully created %s\n", cidStr);
|
1999-07-28 08:28:10 +00:00
|
|
|
NS_RELEASE(obj);
|
|
|
|
}
|
|
|
|
else {
|
1999-09-28 18:01:47 +00:00
|
|
|
printf("Failed to create %s (%x)\n", cidStr, rv);
|
1999-07-28 08:28:10 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-07-28 08:01:55 +00:00
|
|
|
rv = NS_ShutdownXPCOM(servMgr);
|
|
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "NS_ShutdownXPCOM failed");
|
|
|
|
}
|