$search
00001 #! /usr/bin/python 00002 #*********************************************************** 00003 #* Software License Agreement (BSD License) 00004 #* 00005 #* Copyright (c) 2009, Willow Garage, Inc. 00006 #* All rights reserved. 00007 #* 00008 #* Redistribution and use in source and binary forms, with or without 00009 #* modification, are permitted provided that the following conditions 00010 #* are met: 00011 #* 00012 #* * Redistributions of source code must retain the above copyright 00013 #* notice, this list of conditions and the following disclaimer. 00014 #* * Redistributions in binary form must reproduce the above 00015 #* copyright notice, this list of conditions and the following 00016 #* disclaimer in the documentation and/or other materials provided 00017 #* with the distribution. 00018 #* * Neither the name of Willow Garage, Inc. nor the names of its 00019 #* contributors may be used to endorse or promote products derived 00020 #* from this software without specific prior written permission. 00021 #* 00022 #* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00023 #* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00024 #* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00025 #* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00026 #* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00027 #* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00028 #* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00029 #* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00030 #* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00031 #* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00032 #* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00033 #* POSSIBILITY OF SUCH DAMAGE. 00034 #* 00035 #* Author: Eitan Marder-Eppstein 00036 #*********************************************************** 00037 import roslib; roslib.load_manifest('application_client') 00038 import rospy 00039 import actionlib 00040 import sys 00041 00042 from application_msgs.msg import RunApplicationAction, RunApplicationGoal 00043 00044 class ApplicationClient: 00045 def __init__(self): 00046 self.client = actionlib.SimpleActionClient('application_manager/run_application', RunApplicationAction) 00047 self.client.wait_for_server() 00048 00049 #we want to make sure to register a callback on shutdown of the node 00050 rospy.on_shutdown(self.shutdown) 00051 00052 self.application_name = rospy.get_param('~application_name') 00053 self.daemonize = rospy.get_param('~daemonize', False) 00054 00055 self.intentional_shutdown = False 00056 00057 def run_application(self): 00058 if self.application_name is None: 00059 rospy.logerr("You are attempting to run an application client without giving it the name \ 00060 of an application to launch. This won't work, this client won't do anything.") 00061 return 00062 00063 goal = RunApplicationGoal() 00064 goal.daemonize = self.daemonize 00065 goal.application_name = self.application_name 00066 self.client.send_goal(goal, self.goal_done) 00067 00068 def goal_done(self, terminal_state, result): 00069 if not self.intentional_shutdown: 00070 rospy.logwarn("The application associated with this client shut down without the client requesting it") 00071 sys.exit(0) 00072 00073 def shutdown(self): 00074 rospy.loginfo("Shutting down application before the node is killed") 00075 self.intentional_shutdown = True 00076 self.client.cancel_goal() 00077 self.client.wait_for_result() 00078 rospy.loginfo("Sent shut down signal to application") 00079 sys.exit(0) 00080 00081 def main(): 00082 rospy.init_node('application_client') 00083 app_client = ApplicationClient() 00084 app_client.run_application() 00085 rospy.spin() 00086 00087 if __name__ == '__main__': 00088 main()