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
|
// **********************************************************************
//
// Copyright (c) 2003
// ZeroC, Inc.
// Billerica, MA, USA
//
// All Rights Reserved.
//
// Ice is free software; you can redistribute it and/or modify it under
// the terms of the GNU General Public License version 2 as published by
// the Free Software Foundation.
//
// **********************************************************************
#ifndef ICE_SERVANT_MANAGER_H
#define ICE_SERVANT_MANAGER_H
#include <IceUtil/Shared.h>
#include <IceUtil/Mutex.h>
#include <Ice/ServantManagerF.h>
#include <Ice/InstanceF.h>
#include <Ice/ServantLocatorF.h>
#include <Ice/Identity.h>
namespace Ice
{
class ObjectAdapterI;
}
namespace IceInternal
{
class ServantManager : public IceUtil::Shared, public IceUtil::Mutex
{
public:
void addServant(const Ice::ObjectPtr&, const Ice::Identity&, const std::string&);
void removeServant(const Ice::Identity&, const std::string&);
Ice::ObjectPtr findServant(const Ice::Identity&, const std::string&) const;
bool hasServant(const Ice::Identity&) const;
void addServantLocator(const Ice::ServantLocatorPtr& locator, const std::string&);
Ice::ServantLocatorPtr findServantLocator(const std::string&) const;
private:
ServantManager(const InstancePtr&, const std::string&);
~ServantManager();
void destroy();
friend class Ice::ObjectAdapterI;
InstancePtr _instance;
const std::string _adapterName;
typedef std::map<std::string, Ice::ObjectPtr> ServantMap;
typedef std::map<Ice::Identity, ServantMap> ServantMapMap;
ServantMapMap _servantMapMap;
mutable ServantMapMap::iterator _servantMapMapHint;
std::map<std::string, Ice::ServantLocatorPtr> _locatorMap;
mutable std::map<std::string, Ice::ServantLocatorPtr>::iterator _locatorMapHint;
};
}
#endif
|