blob: fca7d321f1dd612344a129c07f4a9963fb959fde (
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
|
// This may look like C, but it's really -*- C++ -*-
//=============================================================================
/**
* @file CSD_TP_Servant_State.h
*
* $Id$
*
* @author Tim Bradley <bradley_t@ociweb.com>
*/
//=============================================================================
#ifndef TAO_CSD_TP_SERVANT_STATE_H
#define TAO_CSD_TP_SERVANT_STATE_H
#include /**/ "ace/pre.h"
#include "CSD_TP_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/Intrusive_Ref_Count_Base_T.h"
#include "tao/Intrusive_Ref_Count_Handle_T.h"
#include "ace/Synch.h"
namespace TAO
{
namespace CSD
{
/**
* @class TP_Servant_State
*
* @brief Maintains state information for a particular servant.
*
* This TP_Servant_State class is an intrusively reference-counted
* class. This allows it to be held in a "smart pointer" (aka, handle)
* object that will manage the reference-counting automagically.
*
* One TP_Servant_State object is created for each servant object for
* which a request is to be dispatched. The servant state objects are
* held (via smart pointers) in a TP_Servant_State_Map object. In turn,
* the TP_Servant_State_Map object is a data member of the TP_Stategy
* class. Each request placed on to the request queue will hold a
* reference (via a smart pointer) to the servant state object.
*
* Currently, the only "state" info held in this TP_Servant_State class
* is the servant's busy flag.
*
*/
class TAO_CSD_TP_Export TP_Servant_State
: public TAO_Intrusive_Ref_Count_Base<ACE_SYNCH_MUTEX>
{
public:
/// Handle Type (aka, Smart Pointer Type).
typedef TAO_Intrusive_Ref_Count_Handle<TP_Servant_State> HandleType;
/// Default Constructor.
TP_Servant_State();
/// Virtual Destructor.
virtual ~TP_Servant_State();
/// Accessor for the servant busy flag.
bool busy_flag() const;
/// Mutator for the servant busy flag.
void busy_flag(bool new_value);
private:
/// The servant's current "busy" state (true == busy, false == not busy)
bool busy_flag_;
};
}
}
#if defined (__ACE_INLINE__)
# include "CSD_TP_Servant_State.inl"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* TAO_CSD_TP_SERVANT_STATE_H */
|