summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/LoadBalancing/ReplicaLocator.h
blob: fd44a62ef33155c03ba93fbcd347f25d766a43a7 (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
// -*- C++ -*-

// $Id$

// ============================================================================
//
// = LIBRARY
//    TAO_LoadBalancing
//
// = FILENAME
//    ReplicaLocator.h
//
// = AUTHOR
//    Ossama Othman <ossama@uci.edu>
//
// ============================================================================

#ifndef TAO_REPLICA_LOCATOR_H
#define TAO_REPLICA_LOCATOR_H

#include "ace/pre.h"

#include "orbsvcs/LoadBalancingS.h"
#include "LoadBalancing_export.h"

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

// Forward declaration.
class TAO_LB_LoadBalancer;

class TAO_LoadBalancing_Export TAO_LB_ReplicaLocator
  : public virtual POA_PortableServer::ServantLocator
{
  // = TITLE
  //    Class that provides request forwarding.

  // = DESCRIPTION
  //    This is a Servant Locator implementation that forwards
  //    requests to a replica returned by the Load Balancer.

public:
  TAO_LB_ReplicaLocator (TAO_LB_LoadBalancer *load_balancer);
  // Constructor

  // = The ServantLocator methods
  virtual PortableServer::Servant preinvoke (
      const PortableServer::ObjectId &oid,
      PortableServer::POA_ptr adapter,
      const char *operation,
      PortableServer::ServantLocator::Cookie & the_cookie
      TAO_ENV_ARG_DECL)
    ACE_THROW_SPEC ((CORBA::SystemException,
                     PortableServer::ForwardRequest));

  virtual void postinvoke (
      const PortableServer::ObjectId &oid,
      PortableServer::POA_ptr adapter,
      const char *operation,
      PortableServer::ServantLocator::Cookie the_cookie,
      PortableServer::Servant the_servant
      TAO_ENV_ARG_DECL);

private:
  TAO_LB_LoadBalancer *load_balancer_;
  // The load balancer implementation.
};

#include "ace/post.h"

#endif  /* TAO_REPLICA_LOCATOR_H */