blob: 45767a6796d811edab2f34e0307cb85f4fdf4802 (
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
78
79
80
81
82
|
// This may look like C, but it's really -*- C++ -*-
// $Id$
// ============================================================================
//
// = LIBRARY
// TAO
//
// = FILENAME
// default_client.h
//
// = AUTHOR
// Chris Cleeland
//
// ============================================================================
#ifndef TAO_DEFAULT_CLIENT_H
# define TAO_DEFAULT_CLIENT_H
#include "tao/corba.h"
class TAO_Default_Client_Strategy_Factory : public TAO_Client_Strategy_Factory
{
// = TITLE
// This is the "default" client strategy factor for TAO. It
// includes strategies that are configured through command-line
// options so that everything operates as if there were no
// dynamically-linkable strategies.
public:
// = Initialization and termination methods.
TAO_Default_Client_Strategy_Factory (void);
// Constructor.
virtual ~TAO_Default_Client_Strategy_Factory (void);
// Destructor.
// = Service Configurator hooks.
virtual int init (int argc, char* argv[]);
// Dynamic linking hook
int parse_args (int argc, char* argv[]);
// Parse svc.conf arguments
ACE_Lock* create_iiop_profile_lock (void);
// create the lock for the forwarding IIOP Profile used by
// the TAO_GIOP_Invocation::location_forward and the
// TAO_GIOP_Invocation::start
ACE_Creation_Strategy<TAO_Client_Connection_Handler> *create_client_creation_strategy (void);
// Create the correct client connection creation strategy
private:
enum Lock_Type
{
TAO_NULL_LOCK,
TAO_THREAD_LOCK
};
Lock_Type iiop_profile_lock_type_;
// the lock type for forwarding IIOP Profile
enum Client_Connection_Handler_Type
{
MT_CLIENT_CONNECTION_HANDLER,
ST_CLIENT_CONNECTION_HANDLER
};
Client_Connection_Handler_Type client_connection_handler_;
// Type of client connection handler to create
};
#if defined (__ACE_INLINE__)
# include "tao/default_client.i"
#endif /* __ACE_INLINE__ */
#if defined (TAO_USES_STATIC_SERVICE)
ACE_STATIC_SVC_DECLARE (TAO_Default_Client_Strategy_Factory)
#endif /* TAO_USE_STATIC_SERVICE */
ACE_FACTORY_DECLARE (TAO, TAO_Default_Client_Strategy_Factory)
#endif /* TAO_DEFAULT_CLIENT_H */
|