blob: 0bb91313f47b54746d2ffe540b0a4a48a8fbbdc6 (
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
102
103
104
105
106
|
/* -*- C++ -*- */
/**
* @file Dispatcher_Task.h
*
* $Id$
*
* @author Venkita Subramonian (venkita@cs.wustl.edu)
*
* Based on previous work by Tim Harrison (harrison@cs.wustl.edu),
* Chris Gill, Carlos O'Ryan and other members of the DOC group.
*/
#ifndef DISPATCHER_TASK_H
#define DISPATCHER_TASK_H
#include /**/ "ace/pre.h"
#include "ace/Task.h"
#include "ace/Lock_Adapter_T.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "Kokyu_defs.h"
namespace Kokyu
{
class Dispatch_Queue_Item : public ACE_Message_Block
{
public:
Dispatch_Queue_Item (
const Dispatch_Command* cmd,
const QoSDescriptor& qos_info,
ACE_Allocator* mb_allocator =0);
Dispatch_Queue_Item (
const Dispatch_Command* cmd,
const QoSDescriptor& qos_info,
ACE_Data_Block* data_block,
int flags,
ACE_Allocator* mb_allocator =0);
Dispatch_Command* command ();
private:
void init_i(const QoSDescriptor&);
private:
const Dispatch_Command* command_;
QoSDescriptor qos_info_;
};
/**
* @class Dispatcher_Task
*
* @brief Implement the dispatching queues for FIFO and Priority
* dispatching.
*
*/
class Dispatcher_Task : public ACE_Task<ACE_SYNCH>
{
public:
/// Constructor
Dispatcher_Task (const ConfigInfo& config_info,
ACE_Thread_Manager* thr_manager = 0);
~Dispatcher_Task ();
int initialize();
int enqueue (const Dispatch_Command* cmd,
const QoSDescriptor& qos_info);
/// Process the events in the queue.
int svc (void);
const ConfigInfo& get_curr_config_info() const;
Priority_t preemption_priority() const;
private:
static int get_native_prio();
private:
ConfigInfo curr_config_info_;
ACE_Allocator *allocator_;
int own_allocator_;
/// Helper data structure to minimize memory allocations...
ACE_Locked_Data_Block<ACE_Lock_Adapter<ACE_SYNCH_MUTEX> > data_block_;
/// The queue
ACE_Message_Queue<ACE_SYNCH>* the_queue_;
ACE_Deadline_Message_Strategy deadline_msg_strategy_;
ACE_Laxity_Message_Strategy laxity_msg_strategy_;
};
} //end of namespace
#if defined (__ACE_INLINE__)
#include "Dispatcher_Task.i"
#endif /* __ACE_INLINE__ */
#include /**/ "ace/post.h"
#endif /* DISPATCHER_TASK_H */
|