44 from rospkg
import ResourceNotFound
45 from .exceptions
import AppException, InvalidAppException, NotFoundException, InternalAppException
48 def __init__(self, subscribed_topics, published_topics):
53 if not isinstance(other, Interface):
59 __slots__ = [
'client_type',
'manager_data',
'app_data']
60 def __init__(self, client_type, manager_data, app_data):
69 if not isinstance(other, Client):
76 return yaml.dump(self.
as_dict())
79 __slots__ = [
'name',
'display_name',
'description',
'platform',
80 'launch',
'run',
'interface',
'clients',
'icon',
'plugins',
'plugin_order',
81 'timeout',
'allow_parallel']
82 def __init__(self, name, display_name, description, platform,
83 interface, clients, launch=None, run=None, icon=None, plugins=None, plugin_order=None,
84 timeout=None, allow_parallel=True):
103 d[s] = [c.as_dict()
for c
in self.
clients]
105 d[s] = getattr(self, s)
110 if not isinstance(other, AppDefinition):
112 return self.
name == other.name
and \
115 self.
platform == other.platform
and \
117 self.
clients == other.clients
and \
118 self.
launch == other.launch
and \
119 self.
run == other.run
and \
120 self.
icon == other.icon
124 @return: filepath of resource. Does not validate if filepath actually exists. 126 @raise ValueError: if resource is not a valid resource name. 127 @raise rospkg.ResourceNotFound: if package referred 128 to in resource name cannot be found. 129 @raise NotFoundException: if resource does not exist. 131 p, a = roslib.names.package_resource_name(resource)
133 raise ValueError(
"Resource is missing package name: %s"%(resource))
136 rospack = rospkg.RosPack()
137 matches = roslib.packages.find_resource(p, a, rospack=rospack)
140 if len(matches) == 1:
145 raise ValueError(
"Multiple resources named [%s]"%(resource))
149 @raise IOError: I/O error reading file (e.g. does not exist) 150 @raise InvalidAppException: if app file is invalid 152 with open(filename,
'r') as f: 153 y = yaml.load(f.read()) 156 subscribed_topics = y.get(
'subscribed_topics', {})
157 published_topics = y.get(
'published_topics', {})
160 return Interface(published_topics=published_topics, subscribed_topics=subscribed_topics)
164 @raise InvalidAppExcetion: if app definition is invalid. 168 rospack = rospkg.RosPack()
171 icon_resource = app_data.get(
'icon',
'')
172 if icon_resource ==
'':
174 icon_filename =
find_resource(icon_resource, rospack=rospack)
175 if not icon_filename
or not os.path.exists(icon_filename):
178 except ValueError
as e:
180 except NotFoundException:
183 except ResourceNotFound
as e:
184 raise InvalidAppException(
"App file [%s] refers to package that is not installed: %s"%(appfile, str(e)))
188 @raise InvalidAppExcetion: if app definition is invalid. 192 rospack = rospkg.RosPack()
194 launch_resource = app_data.get(
'launch',
'')
195 if launch_resource ==
'':
198 if not os.path.exists(launch):
199 raise InvalidAppException(
"Malformed appfile [%s]: refers to launch that does not exist."%(appfile))
201 except ValueError
as e:
203 except NotFoundException:
204 raise InvalidAppException(
"App file [%s] refers to launch that is not installed"%(appfile))
205 except ResourceNotFound
as e:
206 raise InvalidAppException(
"App file [%s] refers to package that is not installed: %s"%(appfile, str(e)))
210 @raise InvalidAppException: if app definition is invalid. 214 run_args = app_data.get(
'run_args',
'')
218 except ValueError
as e:
223 @raise InvalidAppExcetion: if app definition is invalid. 227 rospack = rospkg.RosPack()
229 run_resource = app_data.get(
'run',
'')
230 if run_resource ==
'':
235 if not os.path.exists(run):
236 raise InvalidAppException(
"Malformed appfile [%s]: refers to run that does not exist."%(appfile))
238 p, a = roslib.names.package_resource_name(run_resource)
240 node = roslaunch.core.Node(p, a, args=args, output=
'screen')
242 except ValueError
as e:
244 except NotFoundException:
246 except ResourceNotFound
as e:
247 raise InvalidAppException(
"App file [%s] refers to package that is not installed: %s"%(appfile, str(e)))
251 @raise InvalidAppExcetion: if app definition is invalid. 255 rospack = rospkg.RosPack()
260 if e.errno == errno.ENOENT:
261 raise InvalidAppException(
"Malformed appfile [%s]: refers to interface file that does not exist"%(appfile))
266 except ResourceNotFound
as e:
267 raise InvalidAppException(
"App file [%s] refers to package that is not installed: %s"%(appfile, str(e)))
271 @raise InvalidAppExcetion: if app definition is invalid. 273 clients_data = app_data.get(
'clients', [])
275 for c
in clients_data:
276 for reqd
in [
'type',
'manager']:
278 raise InvalidAppException(
"Malformed appfile [%s], missing required key [%s]"%(appfile, reqd))
279 client_type = c[
'type']
280 manager_data = c[
'manager']
281 if not type(manager_data) == dict:
284 app_data = c.get(
'app', {})
285 if not type(app_data) == dict:
288 clients.append(
Client(client_type, manager_data, app_data))
294 @raise InvalidAppException: if app definition is invalid. 298 plugins = app_data.get(
'plugins',
'')
301 for plugin
in plugins:
302 for key
in [
'launch_args',
'plugin_args',
'start_plugin_args',
'stop_plugin_args']:
303 if key
in plugin
and not type(plugin[key]) == dict:
304 raise InvalidAppException(
"Malformed appfile [%s]: plugin data(%s) must be a map"%(appfile, key))
306 except ValueError
as e:
312 @raise InvalidAppException: if app definition is invalid. 316 plugin_order = app_data.get(
'plugin_order',
'')
317 if plugin_order ==
'':
320 except ValueError
as e:
321 raise InvalidAppException(
"Malformed appfile [%s]: bad plugin_order entry: %s"%(appfile, e))
326 @raise InvalidAppException: if app definition is invalid. 330 timeout = app_data.get(
'timeout',
'')
334 except ValueError
as e:
340 @raise InvalidAppException: if app definition is invalid. 344 allow_parallel = app_data.get(
'allow_parallel',
'')
345 if allow_parallel ==
'':
347 return allow_parallel
348 except ValueError
as e:
349 raise InvalidAppException(
"Malformed appfile [%s]: bad allow_parallel entry: %s"%(appfile, e))
354 @raise InvalidAppExcetion: if app definition is invalid. 355 @raise IOError: I/O error reading appfile (e.g. file does not exist). 357 with open(appfile,
'r') as f: 358 app_data = yaml.load(f.read()) 359 for reqd
in [
'interface',
'platform']:
360 if not reqd
in app_data:
361 raise InvalidAppException(
"Malformed appfile [%s], missing required key [%s]"%(appfile, reqd))
362 if not 'launch' in app_data
and not 'run' in app_data:
363 raise InvalidAppException(
"Malformed appfile [%s], must have a [launch] or a [run] key"%(appfile))
364 if 'launch' in app_data
and 'run' in app_data:
365 raise InvalidAppException(
"Malformed appfile [%s], cannot have both [launch] and [run] keys"%(appfile))
367 display_name = app_data.get(
'display', appname)
368 description = app_data.get(
'description',
'')
369 platform = app_data[
'platform']
372 rospack = rospkg.RosPack()
374 app_data, appfile, rospack=rospack)
376 app_data, appfile, rospack=rospack)
378 app_data, appfile, rospack=rospack)
381 app_data, appfile, rospack=rospack)
388 return AppDefinition(appname, display_name, description, platform,
389 interface, clients, launch, run, icon,
390 plugins, plugin_order, timeout, allow_parallel)
394 @raise InvalidAppExcetion: if app definition is invalid. 395 @raise NotFoundExcetion: if app definition is not installed. 396 @raise ValueError: if appname is invalid. 400 raise ValueError(
"app name is empty")
403 rospack = rospkg.RosPack()
406 except ResourceNotFound
as e:
407 raise NotFoundException(
"Cannot locate app file for %s: package is not installed."%(appname))
412 if e.errno == errno.ENOENT:
def find_resource(resource, rospack=None)
def _AppDefinition_load_icon_entry(app_data, appfile="UNKNOWN", rospack=None)
def __init__(self, name, display_name, description, platform, interface, clients, launch=None, run=None, icon=None, plugins=None, plugin_order=None, timeout=None, allow_parallel=True)
def _AppDefinition_load_launch_entry(app_data, appfile="UNKNOWN", rospack=None)
def _AppDefinition_load_run_entry(app_data, appfile="UNKNOWN", rospack=None)
def _AppDefinition_load_run_args_entry(app_data, appfile="UNKNOWN")
def load_AppDefinition_by_name(appname, rospack=None)
def __init__(self, subscribed_topics, published_topics)
def _AppDefinition_load_allow_parallel_entry(app_data, appfile="UNKNOWN")
def _AppDefinition_load_clients_entry(app_data, appfile="UNKNOWN")
def _AppDefinition_load_interface_entry(app_data, appfile="UNKNOWN", rospack=None)
def __init__(self, client_type, manager_data, app_data)
def load_AppDefinition_from_file(appfile, appname, rospack=None)
def load_Interface_from_file(filename)
def _AppDefinition_load_plugin_order_entry(app_data, appfile="UNKNOWN")
def _AppDefinition_load_timeout_entry(app_data, appfile="UNKNOWN")
def _AppDefinition_load_plugins_entry(app_data, appfile="UNKNOWN")