blob: cf51317e646e68cd97d8ad1ba2b7aacb8721ed47 (
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
|
//x -*- C++ -*-
//=============================================================================
/**
* @file Thread_Per_Connection_Handler.h
*
* $Id$
*
* Definition of a connection handler for the thread-per-connection
* strategy.
*
* @author Balachandran Natarajan <bala@dre.vanderbilt.edu>
*/
//=============================================================================
#ifndef TAO_THREAD_PER_CONNECTION_HANDLER_H
#define TAO_THREAD_PER_CONNECTION_HANDLER_H
#include /**/ "ace/pre.h"
#include "ace/Task_T.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/TAO_Export.h"
#include "tao/Versioned_Namespace.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
class TAO_Connection_Handler;
class TAO_ORB_Core;
typedef ACE_Task<ACE_NULL_SYNCH> TAO_TPC_BASE;
/**
* @class TAO_Thread_Per_Connection_Handler
*
* @brief Definition for the thread-per-connection strategy.
*
* This object acts as an active object, encapsulating the protocol
* specific handler which the active thread uses to process incoming
* messages.
*
*/
class TAO_Export TAO_Thread_Per_Connection_Handler : public TAO_TPC_BASE
{
public:
TAO_Thread_Per_Connection_Handler (TAO_Connection_Handler *ch,
TAO_ORB_Core *oc);
~TAO_Thread_Per_Connection_Handler (void);
/// = Active object activation method.
/**
* @todo This probably needs to go after x.4.1
*/
virtual int activate (long flags = THR_NEW_LWP,
int n_threads = 1,
int force_active = 0,
long priority = ACE_DEFAULT_THREAD_PRIORITY,
int grp_id = -1,
ACE_Task_Base *task = 0,
ACE_hthread_t thread_handles[] = 0,
void *stack[] = 0,
size_t stack_size[] = 0,
ACE_thread_t thread_names[] = 0);
/// Template hook method that the thread uses...
/**
* Please see the documentation in ace/Task.h for details.
*/
virtual int svc (void);
virtual int open (void *);
virtual int close (u_long);
private:
/// Pointer to protocsol specific code that does the bunch of the
/// job.
TAO_Connection_Handler *ch_;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#include /**/ "ace/post.h"
#endif /*TAO_THREAD_PER_CONNECTION_HANDLER_H*/
|