1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/* 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/. */
#ifndef __nsMsgRDFDataSource_h
#define __nsMsgRDFDataSource_h
#include "nsCOMPtr.h"
#include "nsIRDFDataSource.h"
#include "nsIRDFService.h"
#include "nsIServiceManager.h"
#include "nsCOMArray.h"
#include "nsIObserver.h"
#include "nsITransactionManager.h"
#include "nsIMsgWindow.h"
#include "nsIMsgRDFDataSource.h"
#include "nsWeakReference.h"
#include "nsCycleCollectionParticipant.h"
class nsMsgRDFDataSource : public nsIRDFDataSource,
public nsIObserver,
public nsSupportsWeakReference,
public nsIMsgRDFDataSource
{
public:
nsMsgRDFDataSource();
virtual nsresult Init();
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
NS_DECL_CYCLE_COLLECTION_CLASS_AMBIGUOUS(nsMsgRDFDataSource,
nsIRDFDataSource)
NS_DECL_NSIMSGRDFDATASOURCE
NS_DECL_NSIRDFDATASOURCE
NS_DECL_NSIOBSERVER
// called to reset the datasource to an empty state
// if you need to release yourself as an observer/listener, do it here
virtual void Cleanup();
protected:
virtual ~nsMsgRDFDataSource();
nsIRDFService *getRDFService();
static bool assertEnumFunc(nsIRDFObserver *aObserver, void *aData);
static bool unassertEnumFunc(nsIRDFObserver *aObserver, void *aData);
static bool changeEnumFunc(nsIRDFObserver *aObserver, void *aData);
nsresult NotifyObservers(nsIRDFResource *subject, nsIRDFResource *property,
nsIRDFNode *newObject, nsIRDFNode *oldObject,
bool assert, bool change);
virtual nsresult NotifyPropertyChanged(nsIRDFResource *resource,
nsIRDFResource *propertyResource, nsIRDFNode *newNode,
nsIRDFNode *oldNode = nullptr);
nsCOMPtr<nsIMsgWindow> mWindow;
bool m_shuttingDown;
bool mInitialized;
private:
nsCOMPtr<nsIRDFService> mRDFService;
nsCOMArray<nsIRDFObserver> mObservers;
};
#endif
|