$search
00001 #! /usr/bin/python 00002 # Software License Agreement (BSD License) 00003 # 00004 # Copyright (c) 2008, Willow Garage, Inc. 00005 # All rights reserved. 00006 # 00007 # Redistribution and use in source and binary forms, with or without 00008 # modification, are permitted provided that the following conditions 00009 # are met: 00010 # 00011 # * Redistributions of source code must retain the above copyright 00012 # notice, this list of conditions and the following disclaimer. 00013 # * Redistributions in binary form must reproduce the above 00014 # copyright notice, this list of conditions and the following 00015 # disclaimer in the documentation and/or other materials provided 00016 # with the distribution. 00017 # * Neither the name of the Willow Garage nor the names of its 00018 # contributors may be used to endorse or promote products derived 00019 # from this software without specific prior written permission. 00020 # 00021 # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00022 # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00023 # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00024 # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00025 # COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00026 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00027 # BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00028 # LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00029 # CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00030 # LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00031 # ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00032 # POSSIBILITY OF SUCH DAMAGE. 00033 # 00034 00035 # Author: Wim Meeussen 00036 00037 00038 00039 00040 from __future__ import with_statement 00041 00042 import roslib; roslib.load_manifest('application_manager') 00043 import rospy 00044 import threading 00045 import actionlib 00046 from actionlib_msgs.msg import GoalStatus 00047 from application_msgs.msg import * 00048 00049 00050 00051 class ApplicationMonitor(threading.Thread): 00052 def __init__(self, app_cb): 00053 threading.Thread.__init__(self) 00054 self.lock = threading.RLock() 00055 self.app_cb = app_cb 00056 self.state = {} 00057 rospy.loginfo("Connecting to the application manager.") 00058 self.list_client = actionlib.SimpleActionClient(rospy.remap_name('application_manager') + '/list_applications', 00059 ListApplicationsAction) 00060 self.list_client.wait_for_server() 00061 rospy.loginfo("Connected to the application manager.") 00062 self.get_state() # initialize state 00063 self.start() # start running monitor 00064 00065 00066 def monitor_app(self, app_name): 00067 with self.lock: 00068 self.state[app_name] = None 00069 self.get_state() 00070 00071 00072 def get_state(self): 00073 # get current state 00074 self.list_client.send_goal_and_wait(ListApplicationsGoal(), rospy.Duration(20.0), rospy.Duration(2.0)) 00075 res = self.list_client.get_result() 00076 last_state = {} 00077 for app, state in zip(res.application_name, res.application_status): 00078 last_state[app] = state 00079 00080 # check if state changed 00081 with self.lock: 00082 for a in self.state: # loop through all apps we're monitoring 00083 if a in last_state: 00084 if not self.state[a]: 00085 self.state[a] = last_state[a] # set state for first tiem 00086 elif last_state[a] != self.state[a]: # state changed 00087 self.state[a] = last_state[a] 00088 self.app_cb(a, self.state[a]) # callback 00089 00090 00091 def run(self): 00092 rospy.loginfo('Running battery callbacks') 00093 while not rospy.is_shutdown(): 00094 rospy.sleep(5.0) 00095 self.get_state()