/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* ***** 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) 1998 * the Initial Developer. All Rights Reserved. * * Contributor(s): * Pierre Phaneuf * * Alternatively, the contents of this file may be used under the terms of * either of 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 "nsRDFResource.h" #include "nsIServiceManager.h" #include "nsIRDFDelegateFactory.h" #include "nsIRDFService.h" #include "nsRDFCID.h" #include "prlog.h" #include "nsComponentManagerUtils.h" #include "nsServiceManagerUtils.h" static NS_DEFINE_CID(kRDFServiceCID, NS_RDFSERVICE_CID); nsIRDFService* nsRDFResource::gRDFService = nsnull; nsrefcnt nsRDFResource::gRDFServiceRefCnt = 0; //////////////////////////////////////////////////////////////////////////////// nsRDFResource::nsRDFResource(void) : mDelegates(nsnull) { } nsRDFResource::~nsRDFResource(void) { // Release all of the delegate objects while (mDelegates) { DelegateEntry* doomed = mDelegates; mDelegates = mDelegates->mNext; delete doomed; } if (!gRDFService) return; gRDFService->UnregisterResource(this); if (--gRDFServiceRefCnt == 0) NS_RELEASE(gRDFService); } NS_IMPL_THREADSAFE_ISUPPORTS2(nsRDFResource, nsIRDFResource, nsIRDFNode) //////////////////////////////////////////////////////////////////////////////// // nsIRDFNode methods: NS_IMETHODIMP nsRDFResource::EqualsNode(nsIRDFNode* aNode, PRBool* aResult) { NS_PRECONDITION(aNode != nsnull, "null ptr"); if (! aNode) return NS_ERROR_NULL_POINTER; nsresult rv; nsIRDFResource* resource; rv = aNode->QueryInterface(NS_GET_IID(nsIRDFResource), (void**)&resource); if (NS_SUCCEEDED(rv)) { *aResult = (static_cast(this) == resource); NS_RELEASE(resource); return NS_OK; } else if (rv == NS_NOINTERFACE) { *aResult = PR_FALSE; return NS_OK; } else { return rv; } } //////////////////////////////////////////////////////////////////////////////// // nsIRDFResource methods: NS_IMETHODIMP nsRDFResource::Init(const char* aURI) { NS_PRECONDITION(aURI != nsnull, "null ptr"); if (! aURI) return NS_ERROR_NULL_POINTER; mURI = aURI; if (gRDFServiceRefCnt++ == 0) { nsresult rv = CallGetService(kRDFServiceCID, &gRDFService); if (NS_FAILED(rv)) return rv; } // don't replace an existing resource with the same URI automatically return gRDFService->RegisterResource(this, PR_TRUE); } NS_IMETHODIMP nsRDFResource::GetValue(char* *aURI) { NS_ASSERTION(aURI, "Null out param."); *aURI = ToNewCString(mURI); if (!*aURI) return NS_ERROR_OUT_OF_MEMORY; return NS_OK; } NS_IMETHODIMP nsRDFResource::GetValueUTF8(nsACString& aResult) { aResult = mURI; return NS_OK; } NS_IMETHODIMP nsRDFResource::GetValueConst(const char** aURI) { *aURI = mURI.get(); return NS_OK; } NS_IMETHODIMP nsRDFResource::EqualsString(const char* aURI, PRBool* aResult) { NS_PRECONDITION(aURI != nsnull, "null ptr"); if (! aURI) return NS_ERROR_NULL_POINTER; NS_PRECONDITION(aResult, "null ptr"); *aResult = mURI.Equals(aURI); return NS_OK; } NS_IMETHODIMP nsRDFResource::GetDelegate(const char* aKey, REFNSIID aIID, void** aResult) { NS_PRECONDITION(aKey != nsnull, "null ptr"); if (! aKey) return NS_ERROR_NULL_POINTER; nsresult rv; *aResult = nsnull; DelegateEntry* entry = mDelegates; while (entry) { if (entry->mKey.Equals(aKey)) { rv = entry->mDelegate->QueryInterface(aIID, aResult); return rv; } entry = entry->mNext; } // Construct a ContractID of the form "@mozilla.org/rdf/delegate/[key]/[scheme];1 nsCAutoString contractID(NS_RDF_DELEGATEFACTORY_CONTRACTID_PREFIX); contractID.Append(aKey); contractID.Append("&scheme="); PRInt32 i = mURI.FindChar(':'); contractID += StringHead(mURI, i); nsCOMPtr delegateFactory = do_CreateInstance(contractID.get(), &rv); if (NS_FAILED(rv)) return rv; rv = delegateFactory->CreateDelegate(this, aKey, aIID, aResult); if (NS_FAILED(rv)) return rv; // Okay, we've successfully created a delegate. Let's remember it. entry = new DelegateEntry; if (! entry) { NS_RELEASE(*reinterpret_cast(aResult)); return NS_ERROR_OUT_OF_MEMORY; } entry->mKey = aKey; entry->mDelegate = do_QueryInterface(*reinterpret_cast(aResult), &rv); if (NS_FAILED(rv)) { NS_ERROR("nsRDFResource::GetDelegate(): can't QI to nsISupports!"); delete entry; NS_RELEASE(*reinterpret_cast(aResult)); return NS_ERROR_FAILURE; } entry->mNext = mDelegates; mDelegates = entry; return NS_OK; } NS_IMETHODIMP nsRDFResource::ReleaseDelegate(const char* aKey) { NS_PRECONDITION(aKey != nsnull, "null ptr"); if (! aKey) return NS_ERROR_NULL_POINTER; DelegateEntry* entry = mDelegates; DelegateEntry** link = &mDelegates; while (entry) { if (entry->mKey.Equals(aKey)) { *link = entry->mNext; delete entry; return NS_OK; } link = &(entry->mNext); entry = entry->mNext; } NS_WARNING("nsRDFResource::ReleaseDelegate() no delegate found"); return NS_OK; } ////////////////////////////////////////////////////////////////////////////////