diff options
author | nilabjar <nilabjar@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-04-04 17:09:57 +0000 |
---|---|---|
committer | nilabjar <nilabjar@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 2007-04-04 17:09:57 +0000 |
commit | 5f2fbf0d73ba825e006a63a040af905dbb4c88a8 (patch) | |
tree | ce47ef8a8f2ec9f53dda16d2eea082a2ec0dadde /DAnCE/TargetManager_Ext/TargetManagerExt.idl | |
parent | c5b00bf91264cd9f1fc9b017112af3d871cccc03 (diff) | |
download | ATCD-5f2fbf0d73ba825e006a63a040af905dbb4c88a8.tar.gz |
ChangeLogTag : Wed Apr 4 17:07:45 UTC 2007 Nilabja R <nilabjar@dre.vanderbilt.eduTargetManager_Cmp
Diffstat (limited to 'DAnCE/TargetManager_Ext/TargetManagerExt.idl')
-rw-r--r-- | DAnCE/TargetManager_Ext/TargetManagerExt.idl | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/DAnCE/TargetManager_Ext/TargetManagerExt.idl b/DAnCE/TargetManager_Ext/TargetManagerExt.idl new file mode 100644 index 00000000000..26d0c336b62 --- /dev/null +++ b/DAnCE/TargetManager_Ext/TargetManagerExt.idl @@ -0,0 +1,84 @@ +// $Id$ + +/** + * @file TargetManagerExt.idl + * + * @brief The Extensions to the TM interface for ARMS demo + * + * @author Nilabja R <nilabjar@dre.vanderbilt.edu> + * @author Nishanth Shankaran <nshankar@dre.vanderbilt.edu> + * + * This file declares a interface which will be implemented as + * a facet by the TargetManager component + */ + +#include "DAnCE/Interfaces/NodeManagerDaemon.idl" + +module CIAO +{ + /** + * @struct Cpu_Info + * @brief Consists of individual host-cpu info + */ + struct Host_Info + { + string hostname; + double cpu_util; + }; + + /// The sequence of CPU infos + typedef sequence<Host_Info> Host_Infos; + + /** + * @struct Component_Cpu_Util + * @brief Contains a component CPU Util + */ + struct Component_Info + { + string component_name; + double cpu_util; + }; + + /// The sequence of component cpu utilization + typedef sequence <Component_Info> Component_Infos; + + + /** + * @struct Host_NodeManager + * @brief Contains the node manager to host reference + */ + struct Host_NodeManager + { + /// host name + string host_; + + /// the node manager IOR + ::CIAO::NodeManagerDaemon node_mgr_; + }; + + /// Sequence of NodeManager. + typedef sequence <Host_NodeManager> Host_NodeManager_seq; + + /** + * @interface TargetManagerExt + * @brief The Target Manager Extension + * + * Contains the interface used by the RACE + * controller. + */ + interface TargetManagerExt + { + ///Returns the pid in which a component runs + long get_pid (in string component_uuid); + + /// returns the cpu usage for each host in the + /// last cycle + Host_Infos get_host_cpu (); + + /// Return the detail of the components + Component_Infos get_component_cpu (); + + /// Returns the OR of the Node managers + Host_NodeManager_seq get_all_node_managers (); + }; +}; |