2001-09-28 20:14:13 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-02-17 23:42:09 +00:00
|
|
|
|
|
|
|
#ifndef nsRDFResource_h__
|
|
|
|
#define nsRDFResource_h__
|
|
|
|
|
1999-11-24 20:51:39 +00:00
|
|
|
#include "nsCOMPtr.h"
|
1999-02-17 23:42:09 +00:00
|
|
|
#include "nsIRDFNode.h"
|
1999-05-05 03:14:31 +00:00
|
|
|
#include "nsIRDFResource.h"
|
1999-02-17 23:42:09 +00:00
|
|
|
#include "nscore.h"
|
2007-06-19 05:02:49 +00:00
|
|
|
#include "nsStringGlue.h"
|
1999-03-29 19:52:54 +00:00
|
|
|
#include "rdf.h"
|
2007-06-19 05:02:49 +00:00
|
|
|
|
1999-03-02 01:44:01 +00:00
|
|
|
class nsIRDFService;
|
1999-02-17 23:42:09 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This simple base class implements nsIRDFResource, and can be used as a
|
|
|
|
* superclass for more sophisticated resource implementations.
|
|
|
|
*/
|
1999-05-18 21:28:43 +00:00
|
|
|
class nsRDFResource : public nsIRDFResource {
|
1999-02-17 23:42:09 +00:00
|
|
|
public:
|
|
|
|
|
2013-07-19 02:24:14 +00:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
1999-02-17 23:42:09 +00:00
|
|
|
|
|
|
|
// nsIRDFNode methods:
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD EqualsNode(nsIRDFNode* aNode, bool* aResult);
|
1999-02-17 23:42:09 +00:00
|
|
|
|
|
|
|
// nsIRDFResource methods:
|
1999-06-25 20:51:13 +00:00
|
|
|
NS_IMETHOD Init(const char* aURI);
|
|
|
|
NS_IMETHOD GetValue(char* *aURI);
|
2004-03-09 14:42:24 +00:00
|
|
|
NS_IMETHOD GetValueUTF8(nsACString& aResult);
|
1999-06-25 20:51:13 +00:00
|
|
|
NS_IMETHOD GetValueConst(const char** aURI);
|
2011-09-29 06:19:26 +00:00
|
|
|
NS_IMETHOD EqualsString(const char* aURI, bool* aResult);
|
1999-11-24 20:51:39 +00:00
|
|
|
NS_IMETHOD GetDelegate(const char* aKey, REFNSIID aIID, void** aResult);
|
|
|
|
NS_IMETHOD ReleaseDelegate(const char* aKey);
|
1999-02-17 23:42:09 +00:00
|
|
|
|
|
|
|
// nsRDFResource methods:
|
1999-02-26 10:17:14 +00:00
|
|
|
nsRDFResource(void);
|
1999-02-17 23:42:09 +00:00
|
|
|
virtual ~nsRDFResource(void);
|
|
|
|
|
1999-09-21 20:02:50 +00:00
|
|
|
protected:
|
|
|
|
static nsIRDFService* gRDFService;
|
|
|
|
static nsrefcnt gRDFServiceRefCnt;
|
|
|
|
|
1999-02-17 23:42:09 +00:00
|
|
|
protected:
|
2004-03-09 14:42:24 +00:00
|
|
|
nsCString mURI;
|
1999-11-24 20:51:39 +00:00
|
|
|
|
|
|
|
struct DelegateEntry {
|
|
|
|
nsCString mKey;
|
|
|
|
nsCOMPtr<nsISupports> mDelegate;
|
|
|
|
DelegateEntry* mNext;
|
|
|
|
};
|
|
|
|
|
|
|
|
DelegateEntry* mDelegates;
|
1999-02-17 23:42:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsRDFResource_h__
|