blob: 8c15de22ed34ee78963ed8ddd8cb2895da47f0ca (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
// This may look like C, but it's really -*- C++ -*-
//=============================================================================
/**
* @file default_client.h
*
* $Id$
*
* @author Chris Cleeland
*/
//=============================================================================
#ifndef TAO_DEFAULT_CLIENT_H
#define TAO_DEFAULT_CLIENT_H
#include "ace/pre.h"
#include "tao/Client_Strategy_Factory.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "ace/Service_Config.h"
/**
* @class TAO_Default_Client_Strategy_Factory
*
* @brief 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.
*/
class TAO_Export TAO_Default_Client_Strategy_Factory : public TAO_Client_Strategy_Factory
{
public:
// = Initialization and termination methods.
/// Constructor.
TAO_Default_Client_Strategy_Factory (void);
/// Destructor.
virtual ~TAO_Default_Client_Strategy_Factory (void);
// = Service Configurator hooks.
/// Dynamic linking hook
virtual int init (int argc, ACE_TCHAR* argv[]);
/// Parse svc.conf arguments
int parse_args (int argc, ACE_TCHAR* argv[]);
// = Check Client_Strategy_Factory.h for the documentation of the
// following methods.
virtual ACE_Lock* create_profile_lock (void);
virtual TAO_Transport_Mux_Strategy *create_transport_mux_strategy (TAO_Transport *transport);
virtual int allow_callback (void);
virtual TAO_Wait_Strategy *create_wait_strategy (TAO_Transport *transport);
virtual ACE_Lock *create_ft_service_retention_id_lock (void);
protected:
void report_option_value_error (const ACE_TCHAR* option_name,
const ACE_TCHAR* option_value);
private:
enum Lock_Type
{
TAO_NULL_LOCK,
TAO_THREAD_LOCK
};
/// the lock type for forwarding IIOP Profile
Lock_Type profile_lock_type_;
enum Transport_Mux_Strategy
{
TAO_MUXED_TMS,
TAO_EXCLUSIVE_TMS
};
/// The client Request Mux Strategy.
Transport_Mux_Strategy transport_mux_strategy_;
enum Wait_Strategy
{
TAO_WAIT_ON_LEADER_FOLLOWER,
TAO_WAIT_ON_REACTOR,
TAO_WAIT_ON_READ
};
/// The wait-for-reply strategy.
Wait_Strategy wait_strategy_;
};
#if defined (__ACE_INLINE__)
# include "tao/default_client.i"
#endif /* __ACE_INLINE__ */
ACE_STATIC_SVC_DECLARE_EXPORT (TAO, TAO_Default_Client_Strategy_Factory)
ACE_FACTORY_DECLARE (TAO, TAO_Default_Client_Strategy_Factory)
#include "ace/post.h"
#endif /* TAO_DEFAULT_CLIENT_H */
|