blob: e1396f9c7d4c6785e3b67b7c4c21b68c44811a0f (
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
|
// -*- C++ -*-
//=============================================================================
/**
* @file Adapter_Activator.h
*
* $Id$
*
* @brief This class implements ImR's Adapter Activator.
*
* @author Darrell Brunsch <brunsch@cs.wustl.edu>
*/
//=============================================================================
#ifndef IMR_ADAPTER_ACTIVATOR_H
#define IMR_ADAPTER_ACTIVATOR_H
#include "tao/PortableServer/PortableServer.h"
#include "tao/PortableServer/AdapterActivatorC.h"
#include "tao/PortableServer/ServantLocatorC.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/LocalObject.h"
/**
* @class ImR_Adapter_Activator
*
* @brief Implementation Repository Adapter Activator
*
* Part of the ServantLocator/AdapterActivator combination that is used to
* receive forwardable requests from clients. The Adapter Activator creates
* the POA structure that the request expects. For each POA created, the
* same ServantLocator will be registered in each one.
*/
class ImR_Adapter
: public PortableServer::AdapterActivator,
public CORBA::LocalObject
{
public:
ImR_Adapter();
/// Called when a POA needs to be created.
virtual CORBA::Boolean unknown_adapter (
PortableServer::POA_ptr parent,
const char *name
);
void init(PortableServer::ServantLocator_ptr servant);
private:
/// The ServantLocator registered in each new POA.
PortableServer::ServantLocator_ptr servant_locator_;
};
#endif /* IMR_ADAPTER_ACTIVATOR_H */
|