summaryrefslogtreecommitdiff
path: root/DAnCE/dance/TargetManager/Target_Manager_Module.h
blob: 177211208843646d09b589206498013e3b4447c9 (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
// -*- C++ -*-

//=============================================================================
/**
 * @file Target_Manager_Module.h
 *
 * $Id$
 *
 * @brief  To start TargetManager by starter
 *
 * @author William R. Otte <wotte@dre.vanderbilt.edu>
 */
//=============================================================================

#ifndef NODE_MANAGER_MODULE_H
#define NODE_MANAGER_MODULE_H

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

#include "ace/Service_Config.h"

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

#include "ace/Map_Manager.h"
#include "ace/Null_Mutex.h"
#include "tao/ORB.h"
#include "tao/PortableServer/POAC.h"
#include "orbsvcs/CosNamingC.h"
#include "TargetManager_Impl.h"

/**
 * @class Target_Manager_Module
 *
 * This class runs the node manager instance
 */
class DAnCE_TargetManager_Module
{
 public:
  /// Constructor.
  DAnCE_TargetManager_Module (void);

  /// Destructor.
  ~DAnCE_TargetManager_Module (void);

  CORBA::Object_ptr init (CORBA::ORB_ptr orb,
                          int argc,
                          ACE_TCHAR *argv []);

 private:
  const char * usage (void);

  bool parse_args (int argc, ACE_TCHAR *argv []);

  struct SOptions
  {
    const ACE_TCHAR * domain_nc_;
    const ACE_TCHAR * ior_file_;
    const ACE_TCHAR * domain_descr_;
    const ACE_TCHAR * name_;

    SOptions() :
      domain_nc_ (0),
      ior_file_ (0),
      domain_descr_ (0),
      name_ (0)
    {
    }
  };

  void create_poas (void);

  /// Here we store the servants.
  typedef ACE_Map_Manager < ACE_CString,
                            DAnCE::TargetManagerDaemon_i *,
                            ACE_Null_Mutex > Servant_Map;

  Servant_Map rm_map_;

  CORBA::ORB_var orb_;
  CosNaming::NamingContext_var domain_nc_;

  SOptions options_;

  PortableServer::POA_var root_poa_;
  PortableServer::POA_var rm_poa_;
};

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

#endif  /* NODE_MANAGER_MODULE_H */