aboutsummaryrefslogtreecommitdiff
path: root/src/shared/DelayExecutor.cpp
blob: 07a691d6357f773a214edb603c5f6e43607edc26 (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
107
108
109
110
111
112
113
114
#include <ace/Singleton.h>
#include <ace/Thread_Mutex.h>
#include <ace/Log_Msg.h>

#include "DelayExecutor.h"

DelayExecutor*
DelayExecutor::instance()
{
    return ACE_Singleton<DelayExecutor, ACE_Thread_Mutex>::instance();
}

DelayExecutor::DelayExecutor():
activated_ (false),
pre_svc_hook_ (0),
post_svc_hook_ (0) {}

DelayExecutor::~DelayExecutor()
{
    if (pre_svc_hook_)
        delete pre_svc_hook_;

    if (post_svc_hook_)
        delete post_svc_hook_;

    this->deactivate ();
}

int DelayExecutor::deactivate()
{
    if (!this->activated())
        return -1;

    this->activated(false);

    this->queue_.queue()->deactivate();

    this->wait();

    return 0;
}

int DelayExecutor::svc (void)
{
    if (pre_svc_hook_)
        pre_svc_hook_->call();

    for (;;)
    {
      ACE_Method_Request* rq = this->queue_.dequeue();

      if (!rq)
          break;

      rq->call();

      delete rq;
    }

    if (post_svc_hook_)
        post_svc_hook_->call();

  return 0;
}

int DelayExecutor::activate(int num_threads, ACE_Method_Request* pre_svc_hook, ACE_Method_Request* post_svc_hook)
{
    if (this->activated())
        return -1;

    if (num_threads < 1)
        return -1;

    if (pre_svc_hook_)
        delete pre_svc_hook_;

    if (post_svc_hook_)
        delete post_svc_hook_;

    this->pre_svc_hook_ = pre_svc_hook;
    this->post_svc_hook_ = post_svc_hook;

    this->queue_.queue ()->activate ();

    if (ACE_Task_Base::activate(THR_NEW_LWP | THR_JOINABLE | THR_INHERIT_SCHED, num_threads) == -1)
    return -1;

    this->activated(true);

    return true;
}

int DelayExecutor::execute(ACE_Method_Request* new_req)
{
    if (new_req == NULL)
        return -1;

    if (this->queue_.enqueue(new_req,(ACE_Time_Value*)&ACE_Time_Value::zero) == -1)
    {
        delete new_req;
        ACE_ERROR_RETURN((LM_ERROR, ACE_TEXT("(%t) %p\n"), ACE_TEXT("DelayExecutor::execute enqueue")), -1);
    }
    return 0;
}

bool DelayExecutor::activated()
{
    return this->activated_;
}

void DelayExecutor::activated(bool s)
{
    this->activated_ = s;
}