2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 15:12:37 +04: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-18 02:42:09 +03:00
|
|
|
|
|
|
|
#ifndef nsRDFResource_h__
|
|
|
|
#define nsRDFResource_h__
|
|
|
|
|
1999-11-24 23:51:39 +03:00
|
|
|
#include "nsCOMPtr.h"
|
1999-02-18 02:42:09 +03:00
|
|
|
#include "nsIRDFNode.h"
|
1999-05-05 07:14:31 +04:00
|
|
|
#include "nsIRDFResource.h"
|
1999-02-18 02:42:09 +03:00
|
|
|
#include "nscore.h"
|
2007-06-19 09:02:49 +04:00
|
|
|
#include "nsStringGlue.h"
|
1999-03-29 23:52:54 +04:00
|
|
|
#include "rdf.h"
|
2007-06-19 09:02:49 +04:00
|
|
|
|
1999-03-02 04:44:01 +03:00
|
|
|
class nsIRDFService;
|
1999-02-18 02:42:09 +03:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This simple base class implements nsIRDFResource, and can be used as a
|
|
|
|
* superclass for more sophisticated resource implementations.
|
|
|
|
*/
|
1999-05-19 01:28:43 +04:00
|
|
|
class nsRDFResource : public nsIRDFResource {
|
1999-02-18 02:42:09 +03:00
|
|
|
public:
|
|
|
|
|
2013-07-19 06:24:14 +04:00
|
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
1999-02-18 02:42:09 +03:00
|
|
|
|
|
|
|
// nsIRDFNode methods:
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD EqualsNode(nsIRDFNode* aNode, bool* aResult) override;
|
1999-02-18 02:42:09 +03:00
|
|
|
|
|
|
|
// nsIRDFResource methods:
|
2015-03-21 19:28:04 +03:00
|
|
|
NS_IMETHOD Init(const char* aURI) override;
|
|
|
|
NS_IMETHOD GetValue(char* *aURI) override;
|
|
|
|
NS_IMETHOD GetValueUTF8(nsACString& aResult) override;
|
|
|
|
NS_IMETHOD GetValueConst(const char** aURI) override;
|
|
|
|
NS_IMETHOD EqualsString(const char* aURI, bool* aResult) override;
|
|
|
|
NS_IMETHOD GetDelegate(const char* aKey, REFNSIID aIID, void** aResult) override;
|
|
|
|
NS_IMETHOD ReleaseDelegate(const char* aKey) override;
|
1999-02-18 02:42:09 +03:00
|
|
|
|
|
|
|
// nsRDFResource methods:
|
1999-02-26 13:17:14 +03:00
|
|
|
nsRDFResource(void);
|
1999-02-18 02:42:09 +03:00
|
|
|
|
1999-09-22 00:02:50 +04:00
|
|
|
protected:
|
2014-07-01 02:11:50 +04:00
|
|
|
virtual ~nsRDFResource(void);
|
1999-09-22 00:02:50 +04:00
|
|
|
static nsIRDFService* gRDFService;
|
|
|
|
static nsrefcnt gRDFServiceRefCnt;
|
|
|
|
|
1999-02-18 02:42:09 +03:00
|
|
|
protected:
|
2004-03-09 17:42:24 +03:00
|
|
|
nsCString mURI;
|
1999-11-24 23:51:39 +03:00
|
|
|
|
|
|
|
struct DelegateEntry {
|
|
|
|
nsCString mKey;
|
|
|
|
nsCOMPtr<nsISupports> mDelegate;
|
|
|
|
DelegateEntry* mNext;
|
|
|
|
};
|
|
|
|
|
|
|
|
DelegateEntry* mDelegates;
|
1999-02-18 02:42:09 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsRDFResource_h__
|