node_info.py
Go to the documentation of this file.
00001 # Copyright (c) 2013, Oregon State University
00002 # All rights reserved.
00003 
00004 # Redistribution and use in source and binary forms, with or without
00005 # modification, are permitted provided that the following conditions are met:
00006 #     * Redistributions of source code must retain the above copyright
00007 #       notice, this list of conditions and the following disclaimer.
00008 #     * Redistributions in binary form must reproduce the above copyright
00009 #       notice, this list of conditions and the following disclaimer in the
00010 #       documentation and/or other materials provided with the distribution.
00011 #     * Neither the name of the Oregon State University nor the
00012 #       names of its contributors may be used to endorse or promote products
00013 #       derived from this software without specific prior written permission.
00014 
00015 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
00016 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
00017 # WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
00018 # DISCLAIMED. IN NO EVENT SHALL OREGON STATE UNIVERSITY BE LIABLE FOR ANY
00019 # DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
00020 # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00021 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
00022 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
00023 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
00024 # SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00025 
00026 # Author Dan Lazewatsky/lazewatd@engr.orst.edu
00027 
00028 import rosnode
00029 import rospy
00030 import xmlrpclib
00031 import psutil
00032 
00033 ID = '/NODEINFO'
00034 
00035 class NodeInfo(object):
00036     nodes = dict()
00037     def get_node_info(self, node_name):
00038         node_api = rosnode.get_api_uri(rospy.get_master(), node_name)
00039         try:
00040             code, msg, pid = xmlrpclib.ServerProxy(node_api[2]).getPid(ID)
00041             if node_name in self.nodes:
00042                 return self.nodes[node_name]
00043             else:
00044                 try:
00045                     p = psutil.Process(pid)
00046                     self.nodes[node_name] = p
00047                     return p
00048                 except:
00049                     return False
00050         except xmlrpclib.socket.error:
00051             return False
00052 
00053 
00054     def get_all_node_info(self):
00055         infos = []
00056         for node_name in rosnode.get_node_names():
00057             info = self.get_node_info(node_name)
00058             if info is not False: infos.append((node_name, info))
00059         return infos
00060 
00061     def get_all_node_fields(self, fields):
00062         processes = self.get_all_node_info()
00063         infos = []
00064         for name, p in processes:
00065             infos.append(self.as_dict(p, fields + ['cmdline', 'get_memory_info']))
00066             infos[-1]['node_name'] = name
00067         return infos
00068 
00069     def kill_node(self, node_name):
00070         success, fail = rosnode.kill_nodes([node_name])
00071         return node_name in success
00072 
00073     def as_dict(self, p, attrs=[], ad_value=None):
00074         # copied code from psutil.__init__ from a newer version
00075         excluded_names = set(['send_signal', 'suspend', 'resume', 'terminate',
00076                               'kill', 'wait', 'is_running', 'as_dict', 'parent',
00077                               'get_children', 'nice'])
00078         retdict = dict()
00079         for name in set(attrs or dir(p)):
00080             if name.startswith('_'):
00081                 continue
00082             if name.startswith('set_'):
00083                 continue
00084             if name in excluded_names:
00085                 continue
00086             try:
00087                 attr = getattr(p, name)
00088                 if callable(attr):
00089                     if name == 'get_cpu_percent':
00090                         ret = attr(interval=0)
00091                     else:
00092                         ret = attr()
00093                 else:
00094                     ret = attr
00095             except AccessDenied:
00096                 ret = ad_value
00097             except NotImplementedError:
00098                 # in case of not implemented functionality (may happen
00099                 # on old or exotic systems) we want to crash only if
00100                 # the user explicitly asked for that particular attr
00101                 if attrs:
00102                     raise
00103                 continue
00104             if name.startswith('get'):
00105                 if name[3] == '_':
00106                     name = name[4:]
00107                 elif name == 'getcwd':
00108                     name = 'cwd'
00109             retdict[name] = ret
00110         return retdict


rqt_top
Author(s): Dan Lazewatsky
autogenerated on Mon Oct 6 2014 07:15:46