OpenRTM-aist IDL  1.2
Manager.idl
Go to the documentation of this file.
1 // -*- IDL -*-
16 /*
17  * $Log: not supported by cvs2svn $
18  *
19  */
20 
21 #ifndef __MANAGER_IDL__
22 #define __MANAGER_IDL__
23 
24 #include "SDOPackage.idl"
25 #include "RTC.idl"
26 
27 module RTM
28 {
30 
32  {
33  NVList properties;
34  };
35 
36  typedef sequence<ModuleProfile> ModuleProfileList;
37 
39  {
40  NVList properties;
41  };
42 
43  interface Manager;
44  typedef sequence<Manager> ManagerList;
45 
109  interface Manager
110  {
111  // module 関連
143  RTC::ReturnCode_t load_module(in string pathname, in string initfunc);
144 
176  RTC::ReturnCode_t unload_module(in string pathname);
177 
290  ModuleProfileList get_loadable_modules();
291 
312  ModuleProfileList get_loaded_modules();
313 
314  // component 関連
337  ModuleProfileList get_factory_profiles();
338 
424  RTC::RTObject create_component(in string module_name);
425 
448  RTC::ReturnCode_t delete_component(in string instance_name);
449 
471  RTC::RTCList get_components();
472 
496  RTC::ComponentProfileList get_component_profiles();
497 
517  RTC::RTCList get_components_by_name(in string name);
518 
519  // manager 基本
537  ManagerProfile get_profile();
538 
556  NVList get_configuration();
557 
579  RTC::ReturnCode_t set_configuration(in string name, in string value);
580 
600  boolean is_master();
601 
626  ManagerList get_master_managers();
627 
687  RTC::ReturnCode_t add_master_manager(in Manager mgr);
688 
726  RTC::ReturnCode_t remove_master_manager(in Manager mgr);
727 
749  ManagerList get_slave_managers();
750 
789  RTC::ReturnCode_t add_slave_manager(in Manager mgr);
790 
829  RTC::ReturnCode_t remove_slave_manager(in Manager mgr);
830 
831  // プロセス操作関係
845  RTC::ReturnCode_t fork();
846 
860  RTC::ReturnCode_t shutdown();
861 
875  RTC::ReturnCode_t restart();
876 
892  Object get_service(in string name);
893  // ServiceProfileList get_service_profiles();
894  };
895 }; // end of namespace RTM
896 
897 #endif // __MANAGER_IDL__
sequence< NameValue > NVList
Definition: SDOPackage.idl:66
Definition: Manager.idl:109
sequence< ComponentProfile > ComponentProfileList
Definition: RTC.idl:2384
Definition: Manager.idl:31
NVList properties
Definition: Manager.idl:40
Definition: Manager.idl:38
RTObject.
Definition: RTC.idl:2621
sequence< RTObject > RTCList
Definition: RTC.idl:1739
NVList properties
Definition: Manager.idl:33
SDOPackage::NVList NVList
Definition: Manager.idl:29
sequence< Manager > ManagerList
Definition: Manager.idl:43
sequence< ModuleProfile > ModuleProfileList
Definition: Manager.idl:36
ReturnCode_t
ReturnCode_t.
Definition: RTC.idl:82
Definition: Manager.idl:27