blob: f10f148eabcf4917a2b5ce4592f21cd18f25239a (
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
|
// **********************************************************************
//
// Copyright (c) 2003-2007 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_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>
#include <Ice/FacetMap.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&);
Ice::ObjectPtr removeServant(const Ice::Identity&, const std::string&);
Ice::FacetMap removeAllFacets(const Ice::Identity&);
Ice::ObjectPtr findServant(const Ice::Identity&, const std::string&) const;
Ice::FacetMap findAllFacets(const Ice::Identity&) 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<Ice::Identity, Ice::FacetMap> ServantMapMap;
ServantMapMap _servantMapMap;
mutable ServantMapMap::iterator _servantMapMapHint;
std::map<std::string, Ice::ServantLocatorPtr> _locatorMap;
mutable std::map<std::string, Ice::ServantLocatorPtr>::iterator _locatorMapHint;
};
}
#endif
|