summaryrefslogtreecommitdiff
path: root/cpp/src/IceGrid/ReplicaCache.h
blob: 44bce1c24fc030b0f47ae258522f61f75a38e1bd (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
// **********************************************************************
//
// Copyright (c) 2003-2006 ZeroC, Inc. All rights reserved.
//
// This copy of Ice is licensed to you under the terms described in the
// ICE_LICENSE file included in this distribution.
//
// **********************************************************************

#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 Database;
typedef IceUtil::Handle<Database> DatabasePtr;

class ReplicaEntry : public IceUtil::Shared
{
public:
    
    ReplicaEntry(const std::string&, const ReplicaSessionIPtr&);

    bool canRemove() const { return true; }
    const ReplicaSessionIPtr& getSession() const;

private:
    
    const std::string _name;
    const ReplicaSessionIPtr _session;
};
typedef IceUtil::Handle<ReplicaEntry> ReplicaEntryPtr;

class ReplicaCache : public CacheByString<ReplicaEntry>
{
public:

    ReplicaCache(const Ice::CommunicatorPtr&, const IceStorm::TopicManagerPrx&, 
		 const std::string&, const Ice::ObjectPrx&, const Ice::ObjectPrx&);
    void destroy();

    void add(const std::string&, const ReplicaSessionIPtr&, const DatabasePtr&);
    void remove(const std::string&, const DatabasePtr&);

    void nodeAdded(const NodePrx&);
    void nodeRemoved(const NodePrx&);
    
private:

    Ice::ObjectPrx getClientProxy() const;
    Ice::ObjectPrx getServerProxy() const;
    
    const Ice::CommunicatorPtr _communicator;
    const std::string _instanceName;
    const Ice::ObjectPrx _clientProxy;
    const Ice::ObjectPrx _serverProxy;
    const IceStorm::TopicPrx _topic;
    const NodePrx _nodes;
};

};

#endif