summaryrefslogtreecommitdiff
path: root/DAnCE/dance/LocalityManager/Daemon/Locality_Manager_Task.h
blob: 5be09905c78911aa4b4dbb84ba71e6aac1806a20 (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
// $Id$
/**
 * @file Locality_Manager_Task.h
 * @author William R. Otte
 *
 * Defines interface for the bootstrap element of the Locality Manager.
 */

#ifndef DAnCE_LOCALITY_TASK_H_
#define DAnCE_LOCALITY_TASK_H_

#include "ace/String_Base.h"
#include "ace/Task.h"
#include "tao/ORB.h"
#include "dance/Deployment/Deployment_BaseC.h"

#include <list>
#include <string>

namespace DAnCE
{
  class LocalityManager_Task : ACE_Task_Base
  {
  public:
    LocalityManager_Task (int argc, ACE_TCHAR **argv);

    int svc (void);

    struct Error
    {
      Error (const ACE_CString &err);
      ACE_CString err_;
    };

    void run (void);

  private:
    void parse_args (int argc, ACE_TCHAR **argv);

    void usage (void);

    CORBA::ORB_var orb_;
    ::Deployment::Properties_var config_;

    ACE_TString uuid_;
    ACE_TString callback_ior_str_;
    ACE_TString output_file_;

    std::list < std::string > plugin_config_;
  };
}

#endif