summaryrefslogtreecommitdiff
path: root/TAO/tao/CSD_ThreadPool/CSD_TP_Collocated_Synch_With_Server_Request.h
blob: 0b54d87ed06e167d0850023e32b2da9c07480a25 (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
// -*- C++ -*-

//=============================================================================
/**
 *  @file    CSD_TP_Collocated_Synch_With_Server_Request.h
 *
 *  $Id$
 *
 *  @author  Tim Bradley <bradley_t@ociweb.com>
 */
//=============================================================================

#ifndef TAO_CSD_TP_COLLOCATED_SYNCH_WITH_SERVER_REQUEST_H
#define TAO_CSD_TP_COLLOCATED_SYNCH_WITH_SERVER_REQUEST_H

#include /**/ "ace/pre.h"

#include "tao/CSD_ThreadPool/CSD_TP_Export.h"

#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */

#include "tao/CSD_ThreadPool/CSD_TP_Corba_Request.h"
#include "tao/CSD_ThreadPool/CSD_TP_Synch_Helper.h"

TAO_BEGIN_VERSIONED_NAMESPACE_DECL

namespace TAO
{
  namespace CSD
  {

    class TP_Collocated_Synch_With_Server_Request;
    typedef TAO_Intrusive_Ref_Count_Handle
            <TP_Collocated_Synch_With_Server_Request>
                              TP_Collocated_Synch_With_Server_Request_Handle;

    /**
     * @class TP_Collocated_Synch_With_Server_Request
     *
     * @brief Represents a "queue-able", one-way, collocated, CORBA
     *        request with a "Synch Scope" policy of SYNC_WITH_SERVER.
     *
     * This kind of request is one-way request with the SYNC_WITH_SERVER 
     * policy applied. It is cloned before enqueuing and the "enqueuing" 
     * thread will block until it is signalled by the TP_Task thread that
     * will happen just before the request is dispatched or the request 
     * is cancelled.
     */
    class TAO_CSD_TP_Export TP_Collocated_Synch_With_Server_Request 
                                                  : public TP_Corba_Request
    {
    public:

      /// Constructor.
      TP_Collocated_Synch_With_Server_Request
                           (TAO_ServerRequest&              server_request,
                            const PortableServer::ObjectId& object_id,
                            PortableServer::POA_ptr         poa,
                            const char*                     operation,
                            PortableServer::Servant         servant,
                            TP_Servant_State*               servant_state);

      /// Virtual Destructor.
      virtual ~TP_Collocated_Synch_With_Server_Request();

      /// Wait until the request has been dispatched (but not completed), or
      /// until it has been cancelled.  Note that this will wait until just
      /// *before* the request is dispatched by a worker thread.  This is
      /// different than the TP_Collocated_Synch_Request which waits until
      /// just *after* the request is dispatched by a worker thread.
      /// Returns true if the request has been dispatched, and returns 
      /// false if the request has been cancelled.
      bool wait(ACE_ENV_SINGLE_ARG_DECL);


    protected:

      /// Prepare this TP_Collocated_Synch_With_Server_Request object to be 
      /// placed into the request queue.  This will cause the underlying 
      /// TAO_ServerRequest object to be cloned.
      virtual void prepare_for_queue_i();

      /// Dispatch the request to the servant.
      virtual void dispatch_i();

      /// Cancel the request.
      virtual void cancel_i();


    private:

      /// Helper used to block and unblock the thread that invokes our
      /// wait() method.
      TP_Synch_Helper synch_helper_;
    };

  }
}

TAO_END_VERSIONED_NAMESPACE_DECL

#if defined (__ACE_INLINE__)
# include "tao/CSD_ThreadPool/CSD_TP_Collocated_Synch_With_Server_Request.inl"
#endif /* __ACE_INLINE__ */

#include /**/ "ace/post.h"

#endif /* TAO_CSD_TP_COLLOCATED_SYNCH_WITH_SERVER_REQUEST_H */