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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
|
// **********************************************************************
//
// Copyright (c) 2001
// Mutable Realms, Inc.
// Huntsville, AL, USA
//
// All Rights Reserved
//
// **********************************************************************
#ifndef TOPIC_I_H
#define TOPIC_I_H
#include <IceUtil/RecMutex.h>
#include <IceStorm/IceStormInternal.h>
#include <IceStorm/IdentityLinkDict.h>
#include <IceStorm/SubscriberFactory.h>
namespace IceStorm
{
//
// Forward declarations.
//
class TopicSubscribers;
typedef IceUtil::Handle<TopicSubscribers> TopicSubscribersPtr;
class TraceLevels;
typedef IceUtil::Handle<TraceLevels> TraceLevelsPtr;
class SubscriberFactory;
typedef IceUtil::Handle<SubscriberFactory> SubscriberFactoryPtr;
//
// TopicInternal implementation.
//
class TopicI : public TopicInternal, public IceUtil::RecMutex
{
public:
TopicI(const Ice::ObjectAdapterPtr&, const TraceLevelsPtr&, const std::string&, const SubscriberFactoryPtr&,
const Freeze::DBPtr&);
~TopicI();
virtual std::string getName(const Ice::Current&);
virtual Ice::ObjectPrx getPublisher(const Ice::Current&);
virtual void destroy(const Ice::Current&);
virtual void link(const TopicPrx&, Ice::Int, const Ice::Current&);
virtual void unlink(const TopicPrx&, const Ice::Current&);
virtual LinkInfoSeq getLinkInfoSeq(const Ice::Current&);
virtual TopicLinkPrx getLinkProxy(const Ice::Current&);
// Internal methods
bool destroyed() const;
void subscribe(const Ice::ObjectPrx&, const QoS&);
void unsubscribe(const Ice::ObjectPrx&);
void reap();
private:
//
// Immutable members.
//
Ice::ObjectAdapterPtr _adapter;
TraceLevelsPtr _traceLevels;
std::string _name; // The topic name
SubscriberFactoryPtr _factory;
Ice::ObjectPtr _publisher; // Publisher & associated proxy
Ice::ObjectPrx _publisherPrx;
Ice::ObjectPtr _link; // TopicLink & associated proxy
TopicLinkPrx _linkPrx;
//
// Mutable members. Protected by *this
//
bool _destroyed; // Has this Topic been destroyed?
TopicSubscribersPtr _subscribers; // Set of Subscribers
IdentityLinkDict _links; // The database of Topic links
Freeze::DBPtr _linksDb;
};
typedef IceUtil::Handle<TopicI> TopicIPtr;
} // End namespace IceStorm
#endif
|