blob: 0e006fa838127fd4799e22506165b3fcdf5dd0ae (
plain)
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
|
// **********************************************************************
//
// Copyright (c) 2003-present ZeroC, Inc. All rights reserved.
//
// **********************************************************************
#ifndef ICE_GRID_REPLICACACHE_H
#define ICE_GRID_REPLICACACHE_H
#include <IceUtil/Mutex.h>
#include <IceUtil/Shared.h>
#include <IceGrid/Cache.h>
#include <IceGrid/Internal.h>
#include <IceStorm/IceStorm.h>
namespace IceGrid
{
class ReplicaCache;
class ReplicaSessionI;
typedef IceUtil::Handle<ReplicaSessionI> ReplicaSessionIPtr;
class ReplicaEntry : public IceUtil::Shared
{
public:
ReplicaEntry(const std::string&, const ReplicaSessionIPtr&);
virtual ~ReplicaEntry();
bool canRemove() const { return true; }
const ReplicaSessionIPtr& getSession() const;
InternalReplicaInfoPtr getInfo() const;
InternalRegistryPrx getProxy() const;
Ice::ObjectPrx getAdminProxy() const;
private:
const std::string _name;
const ReplicaSessionIPtr _session;
};
typedef IceUtil::Handle<ReplicaEntry> ReplicaEntryPtr;
class ReplicaCache : public CacheByString<ReplicaEntry>
{
public:
#ifdef __SUNPRO_CC
using CacheByString<ReplicaEntry>::remove;
#endif
ReplicaCache(const Ice::CommunicatorPtr&, const IceStorm::TopicManagerPrx&);
ReplicaEntryPtr add(const std::string&, const ReplicaSessionIPtr&);
ReplicaEntryPtr remove(const std::string&, bool);
ReplicaEntryPtr get(const std::string&) const;
void subscribe(const ReplicaObserverPrx&);
void unsubscribe(const ReplicaObserverPrx&);
Ice::ObjectPrx getEndpoints(const std::string&, const Ice::ObjectPrx&) const;
void setInternalRegistry(const InternalRegistryPrx&);
InternalRegistryPrx getInternalRegistry() const;
private:
const Ice::CommunicatorPtr _communicator;
const IceStorm::TopicPrx _topic;
const ReplicaObserverPrx _observers;
InternalRegistryPrx _self; // This replica internal registry proxy.
};
};
#endif
|