summaryrefslogtreecommitdiff
path: root/TAO/tao/Pool_Per_Endpoint.cpp
blob: fda07a33f813cb99b638967a6cbf8248030704a3 (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
// $Id$

#include "tao/Pool_Per_Endpoint.h"
#include "tao/ORB.h"
#include "tao/ORB_Core.h"
#include "tao/Acceptor_Registry.h"
#include "tao/Pluggable.h"
#include "tao/Priority_Mapping.h"
#include "tao/debug.h"
#include "ace/Sched_Params.h"

#if !defined (__ACE_INLINE__)
# include "tao/Pool_Per_Endpoint.i"
#endif /* ! __ACE_INLINE__ */

ACE_RCSID(tao, Pool_Per_Endpoint, "$Id$")

TAO_Pool_Per_Endpoint::TAO_Pool_Per_Endpoint (CORBA::ORB_ptr orb,
                                              int policy,
                                              int poolsize,
                                              int flags)
  :  orb_ (CORBA::ORB::_duplicate (orb)),
     policy_ (policy),
     poolsize_ (poolsize),
     flags_ (flags)
{
  this->thr_mgr (&this->thread_manager_);
}

TAO_Pool_Per_Endpoint::~TAO_Pool_Per_Endpoint (void)
{
}

void
TAO_Pool_Per_Endpoint::run (CORBA::Environment &ACE_TRY_ENV)
{
  TAO_Acceptor_Registry *ac =
    this->orb_->orb_core ()->acceptor_registry ();

  for (TAO_AcceptorSetItor i = ac->begin (); i != ac->end (); ++i)
    {
      int priority =
        ACE_Sched_Params::priority_min (this->policy_);

#if defined (TAO_HAS_RT_CORBA)
      RTCORBA::PriorityMapping *pm =
        this->orb_->orb_core ()->priority_mapping ();
      const CORBA::Short corba_priority = (*i)->priority ();
      CORBA::Short native_priority;
      if (pm->to_native (corba_priority, native_priority) == 1)
        priority = native_priority;

      if (TAO_debug_level > 3)
        ACE_DEBUG ((LM_DEBUG,
                    "TAO (%P|%t) - creating thread at priority %d:%d\n",
                    priority, corba_priority));
#endif /* TAO_HAS_RT_CORBA */
      if (this->activate (this->flags_,
                          this->poolsize_, /* number of threads */
                          1, /* force active */
                          priority) == -1)
        {
          ACE_THROW (CORBA::INTERNAL ());
        }
    }
  this->thread_manager_.wait ();
}

int
TAO_Pool_Per_Endpoint::svc (void)
{
  if (TAO_debug_level > 3)
    ACE_DEBUG ((LM_DEBUG,
                "TAO (%P|%t) - TAO_Pool_Per_Endpoint::svc: "
                " using reactor <%x> in this thread\n",
                this->orb_->orb_core ()->reactor ()));

  this->orb_->run ();

  if (TAO_debug_level > 3)
    ACE_DEBUG ((LM_DEBUG,
                "TAO (%P|%t) - TAO_Pool_Per_Endpoint::svc: "
                " ORB::run() finished\n"));
 return 0;
}

#if defined (ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION)

#elif defined (ACE_HAS_TEMPLATE_INSTANTIATION_PRAGMA)

#endif /* ACE_HAS_EXPLICIT_TEMPLATE_INSTANTIATION */