summaryrefslogtreecommitdiff
path: root/CIAO/ciao/FTComponentServer/CIAO_FTComponentServer.h
blob: 24a8ca4f484002581aa222d01cf7d1c9c005fd00 (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
/**
 * @file CIAO_ComponentServer.h
 * @author William R. Otte
 * 
 * Defines interface for the bootstrap element of the CIAO Component
 * Server.
 */

#ifndef CIAO_COMPONENTSERVER_H_
#define CIAO_COMPONENTSERVER_H_

#include "ace/String_Base.h"
#include "ace/Task.h"
#include "tao/ORB.h"
#include "ciao/Logger/Logger_Service.h"
#include "orbsvcs/CosNamingC.h"

class StateSynchronizationAgent;

namespace CIAO
{
  namespace Deployment
  {  
    class ComponentServer_Configurator;
    

    class ComponentServer_Task : ACE_Task_Base
    {
    public:
      ComponentServer_Task (int argc, ACE_TCHAR **argv);
      
      int svc (void);
      
      struct Error
      {
        Error (const ACE_CString &err) : err_(err) {}
        
        ACE_CString err_;
      };
      
      void run (void);
      
    private:
      void parse_args (int argc, ACE_TCHAR **argv);
      
      void get_log_level (int argc, ACE_TCHAR **argv);
      
      void set_log_level (void);
      
      void configure_logging_backend (void);
      
      void usage (void);
      
      const char * sched_policy_name (int sched_policy);
      
      void check_supported_priorities (void);

      /// helper functions for naming service operations
      std::string get_hostname ();

      std::string get_process_id ();

      std::string get_obj_path ();
      
      CORBA::ORB_var orb_;
      
      auto_ptr<CIAO::Logger_Service> logger_;
      
      ACE_CString uuid_;
      ACE_CString callback_ior_str_;
      ACE_CString output_file_;
      auto_ptr<ComponentServer_Configurator> configurator_;
      
    };
  }
}

#endif