summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/orbsvcs/LWFT/ForwardingAgent.h
blob: 0f71384ead98d34cee1ad4ffd65681d19e220e36 (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
// $Id$

#ifndef FORWARDINGAGENT_H
#define FORWARDINGAGENT_H

#include "ForwardingAgentS.h"
#include "ReplicationManagerC.h"

#include <list>

#include "ace/Hash_Map_Manager_T.h"
#include "ace/Unbounded_Queue.h"

struct AGENT_RANKED_IOR_LIST
{
  bool now;
  std::list<CORBA::Object_var> ior_list;
};


class LWFT_Client_Export ForwardingAgent_i : public virtual POA_ForwardingAgent
{
public:
  ForwardingAgent_i (bool proactive = true);

  ~ForwardingAgent_i (void);

  virtual CORBA::Object_ptr next_member (const char * m);
  
  virtual void update_rank_list (const RankList & rank_list);
  
  void initialize (CORBA::Object_ptr);
  void proactive (bool v);

  typedef ACE_Hash_Map_Manager_Ex<ACE_CString,
                                  AGENT_RANKED_IOR_LIST,
                                  ACE_Hash<ACE_CString>,
                                  ACE_Equal_To<ACE_CString>,
                                  ACE_Null_Mutex>
    OBJECTID_RANKED_IOR_MAP;


private:
  ReplicationManager_var RM_var_;
  OBJECTID_RANKED_IOR_MAP objectid_rankedior_map_;
  ACE_Thread_Mutex ior_map_mutex_;
  bool proactive_;
  size_t update_count_;
};

#endif  /* FORWARDINGAGENT_H */